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 the astro group with 2 updates

Bumps the astro group with 2 updates: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) and [astro-og-canvas](https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas).

Updates `astro` from 5.16.15 to 5.17.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.17.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/15334">#15334</a> <a href="https://github.com/withastro/astro/commit/d715f1f88777a4ce0fb61c8043cccfbac2486ab4"><code>d715f1f</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>Removes the <code>getFontBuffer()</code> helper function exported from <code>astro:assets</code> when using the experimental Fonts API</p>
<p>This experimental feature introduced in v15.6.13 ended up causing significant memory usage during build. This feature has been removed and will be reintroduced after further exploration and testing.</p>
<p>If you were relying on this function, you can replicate the previous behavior manually:</p>
<ul>
<li>On prerendered routes, read the file using <code>node:fs</code></li>
<li>On server rendered routes, fetch files using URLs from <code>fontData</code> and <code>context.url</code></li>
</ul>
</li>
</ul>
<h2>astro@5.17.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14932">#14932</a> <a href="https://github.com/withastro/astro/commit/b19d816c914022c4e618d6012e09aed82be34213"><code>b19d816</code></a> Thanks <a href="https://github.com/patrickarlt"><code>@​patrickarlt</code></a>! - Adds support for returning a Promise from the <code>parser()</code> option of the <code>file()</code> loader</p>
<p>This enables you to run asynchronous code such as fetching remote data or using async parsers when loading files with the Content Layer API.</p>
<p>For example:</p>
<pre lang="js"><code>import { defineCollection } from 'astro:content';
import { file } from 'astro/loaders';
<p>const blog = defineCollection({
loader: file('src/data/blog.json', {
parser: async (text) =&gt; {
const data = JSON.parse(text);</p>
<pre><code> // Perform async operations like fetching additional data
const enrichedData = await fetch(`https://api.example.com/enrich`, {
method: 'POST',
body: JSON.stringify(data),
}).then((res) =&amp;gt; res.json());

return enrichedData;
},
</code></pre>
<p>}),
});</p>
<p>export const collections = { blog };
</code></pre></p>
<p>See <a href="https://docs.astro.build/en/reference/content-loader-reference/#parser">the <code>parser()</code> reference documentation</a> for more information.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/15171">#15171</a> <a href="https://github.com/withastro/astro/commit/f22072607c79f5ba3459ba7522cfdf2581f1869b"><code>f220726</code></a> Thanks <a href="https://github.com/mark-ignacio"><code>@​mark-ignacio</code></a>! - Adds a new, optional <code>kernel</code> configuration option to select a resize algorithm in the Sharp image service</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.17.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/15334">#15334</a> <a href="https://github.com/withastro/astro/commit/d715f1f88777a4ce0fb61c8043cccfbac2486ab4"><code>d715f1f</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>Removes the <code>getFontBuffer()</code> helper function exported from <code>astro:assets</code> when using the experimental Fonts API</p>
<p>This experimental feature introduced in v15.6.13 ended up causing significant memory usage during build. This feature has been removed and will be reintroduced after further exploration and testing.</p>
<p>If you were relying on this function, you can replicate the previous behavior manually:</p>
<ul>
<li>On prerendered routes, read the file using <code>node:fs</code></li>
<li>On server rendered routes, fetch files using URLs from <code>fontData</code> and <code>context.url</code></li>
</ul>
</li>
</ul>
<h2>5.17.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14932">#14932</a> <a href="https://github.com/withastro/astro/commit/b19d816c914022c4e618d6012e09aed82be34213"><code>b19d816</code></a> Thanks <a href="https://github.com/patrickarlt"><code>@​patrickarlt</code></a>! - Adds support for returning a Promise from the <code>parser()</code> option of the <code>file()</code> loader</p>
<p>This enables you to run asynchronous code such as fetching remote data or using async parsers when loading files with the Content Layer API.</p>
<p>For example:</p>
<pre lang="js"><code>import { defineCollection } from 'astro:content';
import { file } from 'astro/loaders';
<p>const blog = defineCollection({
loader: file('src/data/blog.json', {
parser: async (text) =&gt; {
const data = JSON.parse(text);</p>
<pre><code> // Perform async operations like fetching additional data
const enrichedData = await fetch(`https://api.example.com/enrich`, {
method: 'POST',
body: JSON.stringify(data),
}).then((res) =&amp;gt; res.json());

return enrichedData;
},
</code></pre>
<p>}),
});</p>
<p>export const collections = { blog };
</code></pre></p>
<p>See <a href="https://docs.astro.build/en/reference/content-loader-reference/#parser">the <code>parser()</code> reference documentation</a> for more information.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/15171">#15171</a> <a href="https://github.com/withastro/astro/commit/f22072607c79f5ba3459ba7522cfdf2581f1869b"><code>f220726</code></a> Thanks <a href="https://github.com/mark-ignacio"><code>@​mark-ignacio</code></a>! - Adds a new, optional <code>kernel</code> configuration option to select a resize algorithm in the Sharp image service</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/1c6c9fc5b53cbf3d16a1bd0dadece153455e2512"><code>1c6c9fc</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15339">#15339</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/d715f1f88777a4ce0fb61c8043cccfbac2486ab4"><code>d715f1f</code></a> fix(fonts): remove getFontBuffer() (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15334">#15334</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/08d38c6ca489142e923383a8b19ad1038313d30d"><code>08d38c6</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15325">#15325</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/388818a0079cfd31d9e383ae2548ce79605299d2"><code>388818a</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/f1fce0e7cc3c1122bf5c4f1c5985ca716c8417db"><code>f1fce0e</code></a> feat: add <code>retainBody</code> option to the <code>glob()</code> loader (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15022">#15022</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/928529f824d37e9bfb297ff931ebfcb3f0b56428"><code>928529f</code></a> adds ImageTransform.background (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15153">#15153</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/f22072607c79f5ba3459ba7522cfdf2581f1869b"><code>f220726</code></a> feat(sharp): add kernel option to image service config (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15171">#15171</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/b19d816c914022c4e618d6012e09aed82be34213"><code>b19d816</code></a> feat: allow for async parsing in file loader (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14932">#14932</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/08e0fd723742dda4126665f5e32f4065899af83e"><code>08e0fd7</code></a> Support partitioned cookies (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15063">#15063</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/54f6006c3ddae8935a5550e2c3b38d25bf662ea6"><code>54f6006</code></a> Add <code>devToolbar.placement</code> configuration option (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/15015">#15015</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@5.17.1/packages/astro">compare view</a></li>
</ul>
</details>
<br />

Updates `astro-og-canvas` from 0.10.0 to 0.10.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/delucis/astro-og-canvas/releases">astro-og-canvas's releases</a>.</em></p>
<blockquote>
<h2>astro-og-canvas@0.10.1</h2>
<h3>Patch Changes</h3>
<ul>
<li><a href="https://redirect.github.com/delucis/astro-og-canvas/pull/128">#128</a> <a href="https://github.com/delucis/astro-og-canvas/commit/dd829f9afaa439e5949f6d0e207a0af07e0777fc"><code>dd829f9</code></a> Thanks <a href="https://github.com/apps/renovate"><code>@​renovate</code></a>! - Updates dependency entities to ^7.0.1</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/delucis/astro-og-canvas/blob/latest/packages/astro-og-canvas/CHANGELOG.md">astro-og-canvas's changelog</a>.</em></p>
<blockquote>
<h2>0.10.1</h2>
<h3>Patch Changes</h3>
<ul>
<li><a href="https://redirect.github.com/delucis/astro-og-canvas/pull/128">#128</a> <a href="https://github.com/delucis/astro-og-canvas/commit/dd829f9afaa439e5949f6d0e207a0af07e0777fc"><code>dd829f9</code></a> Thanks <a href="https://github.com/apps/renovate"><code>@​renovate</code></a>! - Updates dependency entities to ^7.0.1</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/delucis/astro-og-canvas/commit/9ec89cfe20e6587ceda9191300e9af274e9570db"><code>9ec89cf</code></a> Version Packages (<a href="https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas/issues/131">#131</a>)</li>
<li><a href="https://github.com/delucis/astro-og-canvas/commit/dd829f9afaa439e5949f6d0e207a0af07e0777fc"><code>dd829f9</code></a> Update dependency entities to ^7.0.1 (<a href="https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas/issues/128">#128</a>)</li>
<li><a href="https://github.com/delucis/astro-og-canvas/commit/9f8a1fdb17da889d170837d45d2f46f279104a9d"><code>9f8a1fd</code></a> Update dependency astro to ^5.16.15 (<a href="https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas/issues/127">#127</a>)</li>
<li><a href="https://github.com/delucis/astro-og-canvas/commit/4bf4c8dcbdf11a21d87d9b880c6d5b06c2aac69f"><code>4bf4c8d</code></a> Update dependency astro to ^5.16.9 (<a href="https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas/issues/124">#124</a>)</li>
<li><a href="https://github.com/delucis/astro-og-canvas/commit/83dba33a655838c8e6fe8bd93dbc6bb7a777a3bb"><code>83dba33</code></a> Update dependency astro to ^5.16.8 (<a href="https://github.com/delucis/astro-og-canvas/tree/HEAD/packages/astro-og-canvas/issues/122">#122</a>)</li>
<li>See full diff in <a href="https://github.com/delucis/astro-og-canvas/commits/astro-og-canvas@0.10.1/packages/astro-og-canvas">compare view</a></li>
</ul>
</details>
<br />


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
cc631127 9390f88e

+201 -207
+2 -2
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.15", 26 - "astro-og-canvas": "^0.10.0", 25 + "astro": "^5.17.1", 26 + "astro-og-canvas": "^0.10.1", 27 27 "canvaskit-wasm": "^0.40.0", 28 28 "feed": "^5.2.0", 29 29 "katex": "^0.16.28",
+199 -205
pnpm-lock.yaml
··· 10 10 dependencies: 11 11 '@astrojs/mdx': 12 12 specifier: ^4.3.13 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)) 13 + version: 4.3.13(astro@5.17.1(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(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.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) 16 + version: 6.6.4(@netlify/api@14.0.12)(@types/node@25.0.9)(astro@5.17.1(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(rollup@4.57.1)(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.56.0)(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.57.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 26 26 astro: 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) 27 + specifier: ^5.17.1 28 + version: 5.17.1(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 29 29 astro-og-canvas: 30 - specifier: ^0.10.0 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)) 30 + specifier: ^0.10.1 31 + version: 0.10.1(astro@5.17.1(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(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 ··· 163 163 resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} 164 164 engines: {node: '>=6.9.0'} 165 165 166 - '@babel/parser@7.28.6': 167 - resolution: {integrity: sha512-TeR9zWR18BvbfPmGbLampPMW+uW1NZnJlRuuHso8i87QZNq2JRF9i6RgxRqtEq+wQGsS19NNTWr2duhnE49mfQ==} 166 + '@babel/parser@7.29.0': 167 + resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==} 168 168 engines: {node: '>=6.0.0'} 169 169 hasBin: true 170 170 171 - '@babel/types@7.28.6': 172 - resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==} 171 + '@babel/types@7.29.0': 172 + resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==} 173 173 engines: {node: '>=6.9.0'} 174 174 175 175 '@capsizecss/unpack@4.0.0': ··· 1034 1034 rollup: 1035 1035 optional: true 1036 1036 1037 - '@rollup/rollup-android-arm-eabi@4.56.0': 1038 - resolution: {integrity: sha512-LNKIPA5k8PF1+jAFomGe3qN3bbIgJe/IlpDBwuVjrDKrJhVWywgnJvflMt/zkbVNLFtF1+94SljYQS6e99klnw==} 1037 + '@rollup/rollup-android-arm-eabi@4.57.1': 1038 + resolution: {integrity: sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==} 1039 1039 cpu: [arm] 1040 1040 os: [android] 1041 1041 1042 - '@rollup/rollup-android-arm64@4.56.0': 1043 - resolution: {integrity: sha512-lfbVUbelYqXlYiU/HApNMJzT1E87UPGvzveGg2h0ktUNlOCxKlWuJ9jtfvs1sKHdwU4fzY7Pl8sAl49/XaEk6Q==} 1042 + '@rollup/rollup-android-arm64@4.57.1': 1043 + resolution: {integrity: sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==} 1044 1044 cpu: [arm64] 1045 1045 os: [android] 1046 1046 1047 - '@rollup/rollup-darwin-arm64@4.56.0': 1048 - resolution: {integrity: sha512-EgxD1ocWfhoD6xSOeEEwyE7tDvwTgZc8Bss7wCWe+uc7wO8G34HHCUH+Q6cHqJubxIAnQzAsyUsClt0yFLu06w==} 1047 + '@rollup/rollup-darwin-arm64@4.57.1': 1048 + resolution: {integrity: sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==} 1049 1049 cpu: [arm64] 1050 1050 os: [darwin] 1051 1051 1052 - '@rollup/rollup-darwin-x64@4.56.0': 1053 - resolution: {integrity: sha512-1vXe1vcMOssb/hOF8iv52A7feWW2xnu+c8BV4t1F//m9QVLTfNVpEdja5ia762j/UEJe2Z1jAmEqZAK42tVW3g==} 1052 + '@rollup/rollup-darwin-x64@4.57.1': 1053 + resolution: {integrity: sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==} 1054 1054 cpu: [x64] 1055 1055 os: [darwin] 1056 1056 1057 - '@rollup/rollup-freebsd-arm64@4.56.0': 1058 - resolution: {integrity: sha512-bof7fbIlvqsyv/DtaXSck4VYQ9lPtoWNFCB/JY4snlFuJREXfZnm+Ej6yaCHfQvofJDXLDMTVxWscVSuQvVWUQ==} 1057 + '@rollup/rollup-freebsd-arm64@4.57.1': 1058 + resolution: {integrity: sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==} 1059 1059 cpu: [arm64] 1060 1060 os: [freebsd] 1061 1061 1062 - '@rollup/rollup-freebsd-x64@4.56.0': 1063 - resolution: {integrity: sha512-KNa6lYHloW+7lTEkYGa37fpvPq+NKG/EHKM8+G/g9WDU7ls4sMqbVRV78J6LdNuVaeeK5WB9/9VAFbKxcbXKYg==} 1062 + '@rollup/rollup-freebsd-x64@4.57.1': 1063 + resolution: {integrity: sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==} 1064 1064 cpu: [x64] 1065 1065 os: [freebsd] 1066 1066 1067 - '@rollup/rollup-linux-arm-gnueabihf@4.56.0': 1068 - resolution: {integrity: sha512-E8jKK87uOvLrrLN28jnAAAChNq5LeCd2mGgZF+fGF5D507WlG/Noct3lP/QzQ6MrqJ5BCKNwI9ipADB6jyiq2A==} 1067 + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': 1068 + resolution: {integrity: sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==} 1069 1069 cpu: [arm] 1070 1070 os: [linux] 1071 1071 1072 - '@rollup/rollup-linux-arm-musleabihf@4.56.0': 1073 - resolution: {integrity: sha512-jQosa5FMYF5Z6prEpTCCmzCXz6eKr/tCBssSmQGEeozA9tkRUty/5Vx06ibaOP9RCrW1Pvb8yp3gvZhHwTDsJw==} 1072 + '@rollup/rollup-linux-arm-musleabihf@4.57.1': 1073 + resolution: {integrity: sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==} 1074 1074 cpu: [arm] 1075 1075 os: [linux] 1076 1076 1077 - '@rollup/rollup-linux-arm64-gnu@4.56.0': 1078 - resolution: {integrity: sha512-uQVoKkrC1KGEV6udrdVahASIsaF8h7iLG0U0W+Xn14ucFwi6uS539PsAr24IEF9/FoDtzMeeJXJIBo5RkbNWvQ==} 1077 + '@rollup/rollup-linux-arm64-gnu@4.57.1': 1078 + resolution: {integrity: sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==} 1079 1079 cpu: [arm64] 1080 1080 os: [linux] 1081 1081 1082 - '@rollup/rollup-linux-arm64-musl@4.56.0': 1083 - resolution: {integrity: sha512-vLZ1yJKLxhQLFKTs42RwTwa6zkGln+bnXc8ueFGMYmBTLfNu58sl5/eXyxRa2RarTkJbXl8TKPgfS6V5ijNqEA==} 1082 + '@rollup/rollup-linux-arm64-musl@4.57.1': 1083 + resolution: {integrity: sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==} 1084 1084 cpu: [arm64] 1085 1085 os: [linux] 1086 1086 1087 - '@rollup/rollup-linux-loong64-gnu@4.56.0': 1088 - resolution: {integrity: sha512-FWfHOCub564kSE3xJQLLIC/hbKqHSVxy8vY75/YHHzWvbJL7aYJkdgwD/xGfUlL5UV2SB7otapLrcCj2xnF1dg==} 1087 + '@rollup/rollup-linux-loong64-gnu@4.57.1': 1088 + resolution: {integrity: sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==} 1089 1089 cpu: [loong64] 1090 1090 os: [linux] 1091 1091 1092 - '@rollup/rollup-linux-loong64-musl@4.56.0': 1093 - resolution: {integrity: sha512-z1EkujxIh7nbrKL1lmIpqFTc/sr0u8Uk0zK/qIEFldbt6EDKWFk/pxFq3gYj4Bjn3aa9eEhYRlL3H8ZbPT1xvA==} 1092 + '@rollup/rollup-linux-loong64-musl@4.57.1': 1093 + resolution: {integrity: sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==} 1094 1094 cpu: [loong64] 1095 1095 os: [linux] 1096 1096 1097 - '@rollup/rollup-linux-ppc64-gnu@4.56.0': 1098 - resolution: {integrity: sha512-iNFTluqgdoQC7AIE8Q34R3AuPrJGJirj5wMUErxj22deOcY7XwZRaqYmB6ZKFHoVGqRcRd0mqO+845jAibKCkw==} 1097 + '@rollup/rollup-linux-ppc64-gnu@4.57.1': 1098 + resolution: {integrity: sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==} 1099 1099 cpu: [ppc64] 1100 1100 os: [linux] 1101 1101 1102 - '@rollup/rollup-linux-ppc64-musl@4.56.0': 1103 - resolution: {integrity: sha512-MtMeFVlD2LIKjp2sE2xM2slq3Zxf9zwVuw0jemsxvh1QOpHSsSzfNOTH9uYW9i1MXFxUSMmLpeVeUzoNOKBaWg==} 1102 + '@rollup/rollup-linux-ppc64-musl@4.57.1': 1103 + resolution: {integrity: sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==} 1104 1104 cpu: [ppc64] 1105 1105 os: [linux] 1106 1106 1107 - '@rollup/rollup-linux-riscv64-gnu@4.56.0': 1108 - resolution: {integrity: sha512-in+v6wiHdzzVhYKXIk5U74dEZHdKN9KH0Q4ANHOTvyXPG41bajYRsy7a8TPKbYPl34hU7PP7hMVHRvv/5aCSew==} 1107 + '@rollup/rollup-linux-riscv64-gnu@4.57.1': 1108 + resolution: {integrity: sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==} 1109 1109 cpu: [riscv64] 1110 1110 os: [linux] 1111 1111 1112 - '@rollup/rollup-linux-riscv64-musl@4.56.0': 1113 - resolution: {integrity: sha512-yni2raKHB8m9NQpI9fPVwN754mn6dHQSbDTwxdr9SE0ks38DTjLMMBjrwvB5+mXrX+C0npX0CVeCUcvvvD8CNQ==} 1112 + '@rollup/rollup-linux-riscv64-musl@4.57.1': 1113 + resolution: {integrity: sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==} 1114 1114 cpu: [riscv64] 1115 1115 os: [linux] 1116 1116 1117 - '@rollup/rollup-linux-s390x-gnu@4.56.0': 1118 - resolution: {integrity: sha512-zhLLJx9nQPu7wezbxt2ut+CI4YlXi68ndEve16tPc/iwoylWS9B3FxpLS2PkmfYgDQtosah07Mj9E0khc3Y+vQ==} 1117 + '@rollup/rollup-linux-s390x-gnu@4.57.1': 1118 + resolution: {integrity: sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==} 1119 1119 cpu: [s390x] 1120 1120 os: [linux] 1121 1121 1122 - '@rollup/rollup-linux-x64-gnu@4.56.0': 1123 - resolution: {integrity: sha512-MVC6UDp16ZSH7x4rtuJPAEoE1RwS8N4oK9DLHy3FTEdFoUTCFVzMfJl/BVJ330C+hx8FfprA5Wqx4FhZXkj2Kw==} 1122 + '@rollup/rollup-linux-x64-gnu@4.57.1': 1123 + resolution: {integrity: sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==} 1124 1124 cpu: [x64] 1125 1125 os: [linux] 1126 1126 1127 - '@rollup/rollup-linux-x64-musl@4.56.0': 1128 - resolution: {integrity: sha512-ZhGH1eA4Qv0lxaV00azCIS1ChedK0V32952Md3FtnxSqZTBTd6tgil4nZT5cU8B+SIw3PFYkvyR4FKo2oyZIHA==} 1127 + '@rollup/rollup-linux-x64-musl@4.57.1': 1128 + resolution: {integrity: sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==} 1129 1129 cpu: [x64] 1130 1130 os: [linux] 1131 1131 1132 - '@rollup/rollup-openbsd-x64@4.56.0': 1133 - resolution: {integrity: sha512-O16XcmyDeFI9879pEcmtWvD/2nyxR9mF7Gs44lf1vGGx8Vg2DRNx11aVXBEqOQhWb92WN4z7fW/q4+2NYzCbBA==} 1132 + '@rollup/rollup-openbsd-x64@4.57.1': 1133 + resolution: {integrity: sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==} 1134 1134 cpu: [x64] 1135 1135 os: [openbsd] 1136 1136 1137 - '@rollup/rollup-openharmony-arm64@4.56.0': 1138 - resolution: {integrity: sha512-LhN/Reh+7F3RCgQIRbgw8ZMwUwyqJM+8pXNT6IIJAqm2IdKkzpCh/V9EdgOMBKuebIrzswqy4ATlrDgiOwbRcQ==} 1137 + '@rollup/rollup-openharmony-arm64@4.57.1': 1138 + resolution: {integrity: sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==} 1139 1139 cpu: [arm64] 1140 1140 os: [openharmony] 1141 1141 1142 - '@rollup/rollup-win32-arm64-msvc@4.56.0': 1143 - resolution: {integrity: sha512-kbFsOObXp3LBULg1d3JIUQMa9Kv4UitDmpS+k0tinPBz3watcUiV2/LUDMMucA6pZO3WGE27P7DsfaN54l9ing==} 1142 + '@rollup/rollup-win32-arm64-msvc@4.57.1': 1143 + resolution: {integrity: sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==} 1144 1144 cpu: [arm64] 1145 1145 os: [win32] 1146 1146 1147 - '@rollup/rollup-win32-ia32-msvc@4.56.0': 1148 - resolution: {integrity: sha512-vSSgny54D6P4vf2izbtFm/TcWYedw7f8eBrOiGGecyHyQB9q4Kqentjaj8hToe+995nob/Wv48pDqL5a62EWtg==} 1147 + '@rollup/rollup-win32-ia32-msvc@4.57.1': 1148 + resolution: {integrity: sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==} 1149 1149 cpu: [ia32] 1150 1150 os: [win32] 1151 1151 1152 - '@rollup/rollup-win32-x64-gnu@4.56.0': 1153 - resolution: {integrity: sha512-FeCnkPCTHQJFbiGG49KjV5YGW/8b9rrXAM2Mz2kiIoktq2qsJxRD5giEMEOD2lPdgs72upzefaUvS+nc8E3UzQ==} 1152 + '@rollup/rollup-win32-x64-gnu@4.57.1': 1153 + resolution: {integrity: sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==} 1154 1154 cpu: [x64] 1155 1155 os: [win32] 1156 1156 1157 - '@rollup/rollup-win32-x64-msvc@4.56.0': 1158 - resolution: {integrity: sha512-H8AE9Ur/t0+1VXujj90w0HrSOuv0Nq9r1vSZF2t5km20NTfosQsGGUXDaKdQZzwuLts7IyL1fYT4hM95TI9c4g==} 1157 + '@rollup/rollup-win32-x64-msvc@4.57.1': 1158 + resolution: {integrity: sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==} 1159 1159 cpu: [x64] 1160 1160 os: [win32] 1161 1161 1162 - '@shikijs/core@3.21.0': 1163 - resolution: {integrity: sha512-AXSQu/2n1UIQekY8euBJlvFYZIw0PHY63jUzGbrOma4wPxzznJXTXkri+QcHeBNaFxiiOljKxxJkVSoB3PjbyA==} 1162 + '@shikijs/core@3.22.0': 1163 + resolution: {integrity: sha512-iAlTtSDDbJiRpvgL5ugKEATDtHdUVkqgHDm/gbD2ZS9c88mx7G1zSYjjOxp5Qa0eaW0MAQosFRmJSk354PRoQA==} 1164 1164 1165 - '@shikijs/engine-javascript@3.21.0': 1166 - resolution: {integrity: sha512-ATwv86xlbmfD9n9gKRiwuPpWgPENAWCLwYCGz9ugTJlsO2kOzhOkvoyV/UD+tJ0uT7YRyD530x6ugNSffmvIiQ==} 1165 + '@shikijs/engine-javascript@3.22.0': 1166 + resolution: {integrity: sha512-jdKhfgW9CRtj3Tor0L7+yPwdG3CgP7W+ZEqSsojrMzCjD1e0IxIbwUMDDpYlVBlC08TACg4puwFGkZfLS+56Tw==} 1167 1167 1168 - '@shikijs/engine-oniguruma@3.21.0': 1169 - resolution: {integrity: sha512-OYknTCct6qiwpQDqDdf3iedRdzj6hFlOPv5hMvI+hkWfCKs5mlJ4TXziBG9nyabLwGulrUjHiCq3xCspSzErYQ==} 1168 + '@shikijs/engine-oniguruma@3.22.0': 1169 + resolution: {integrity: sha512-DyXsOG0vGtNtl7ygvabHd7Mt5EY8gCNqR9Y7Lpbbd/PbJvgWrqaKzH1JW6H6qFkuUa8aCxoiYVv8/YfFljiQxA==} 1170 1170 1171 - '@shikijs/langs@3.21.0': 1172 - resolution: {integrity: sha512-g6mn5m+Y6GBJ4wxmBYqalK9Sp0CFkUqfNzUy2pJglUginz6ZpWbaWjDB4fbQ/8SHzFjYbtU6Ddlp1pc+PPNDVA==} 1171 + '@shikijs/langs@3.22.0': 1172 + resolution: {integrity: sha512-x/42TfhWmp6H00T6uwVrdTJGKgNdFbrEdhaDwSR5fd5zhQ1Q46bHq9EO61SCEWJR0HY7z2HNDMaBZp8JRmKiIA==} 1173 1173 1174 - '@shikijs/themes@3.21.0': 1175 - resolution: {integrity: sha512-BAE4cr9EDiZyYzwIHEk7JTBJ9CzlPuM4PchfcA5ao1dWXb25nv6hYsoDiBq2aZK9E3dlt3WB78uI96UESD+8Mw==} 1174 + '@shikijs/themes@3.22.0': 1175 + resolution: {integrity: sha512-o+tlOKqsr6FE4+mYJG08tfCFDS+3CG20HbldXeVoyP+cYSUxDhrFf3GPjE60U55iOkkjbpY2uC3It/eeja35/g==} 1176 1176 1177 - '@shikijs/types@3.21.0': 1178 - resolution: {integrity: sha512-zGrWOxZ0/+0ovPY7PvBU2gIS9tmhSUUt30jAcNV0Bq0gb2S98gwfjIs1vxlmH5zM7/4YxLamT6ChlqqAJmPPjA==} 1177 + '@shikijs/types@3.22.0': 1178 + resolution: {integrity: sha512-491iAekgKDBFE67z70Ok5a8KBMsQ2IJwOWw3us/7ffQkIBCyOQfm/aNwVMBUriP02QshIfgHCBSIYAl3u2eWjg==} 1179 1179 1180 1180 '@shikijs/vscode-textmate@10.0.2': 1181 1181 resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} ··· 1467 1467 resolution: {integrity: sha512-JepyLROIad6f44uyqMF6HKE2QbunNzp3mYKRcPoDGt0QkxXmH222FAFC64WTyQu2Kg8NNEXHTN/sWuUId9sSxw==} 1468 1468 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1469 1469 1470 - astro-og-canvas@0.10.0: 1471 - resolution: {integrity: sha512-JkSIYEo2sTJiuht7iVQ2CNT38+rrlvkRpJkqjA58WDFHdymgWktoT9zLkjEkn2u9K2zeZx2GTev16IBJzIoZNQ==} 1470 + astro-og-canvas@0.10.1: 1471 + resolution: {integrity: sha512-cUjsWIOkDBi9Bfkgta1Cr45m2UnTX/jW+tK406SVcD1idhqIHrGD+M5qtwGcJ6OanHeWSgyHGmzQuzELGAwPKg==} 1472 1472 peerDependencies: 1473 1473 astro: ^5.0.0 || ^6.0.0-alpha 1474 1474 1475 - astro@5.16.15: 1476 - resolution: {integrity: sha512-+X1Z0NTi2pa5a0Te6h77Dgc44fYj63j1yx6+39Nvg05lExajxSq7b1Uj/gtY45zoum8fD0+h0nak+DnHighs3A==} 1475 + astro@5.17.1: 1476 + resolution: {integrity: sha512-oD3tlxTaVWGq/Wfbqk6gxzVRz98xa/rYlpe+gU2jXJMSD01k6sEDL01ZlT8mVSYB/rMgnvIOfiQQ3BbLdN237A==} 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 ··· 1616 1616 resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} 1617 1617 engines: {node: '>=18'} 1618 1618 1619 - ci-info@4.3.1: 1620 - resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==} 1619 + ci-info@4.4.0: 1620 + resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} 1621 1621 engines: {node: '>=8'} 1622 1622 1623 1623 citty@0.1.6: ··· 1944 1944 resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} 1945 1945 engines: {node: '>=0.12'} 1946 1946 1947 - entities@7.0.0: 1948 - resolution: {integrity: sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ==} 1949 - engines: {node: '>=0.12'} 1950 - 1951 1947 entities@7.0.1: 1952 1948 resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==} 1953 1949 engines: {node: '>=0.12'} ··· 2208 2204 fn.name@1.1.0: 2209 2205 resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} 2210 2206 2211 - fontace@0.4.0: 2212 - resolution: {integrity: sha512-moThBCItUe2bjZip5PF/iZClpKHGLwMvR79Kp8XpGRBrvoRSnySN4VcILdv3/MJzbhvUA5WeiUXF5o538m5fvg==} 2207 + fontace@0.4.1: 2208 + resolution: {integrity: sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw==} 2213 2209 2214 2210 fontkitten@1.0.2: 2215 2211 resolution: {integrity: sha512-piJxbLnkD9Xcyi7dWJRnqszEURixe7CrF/efBfbffe2DPyabmuIuqraruY8cXTs19QoM8VJzx47BDRVNXETM7Q==} ··· 3428 3424 resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 3429 3425 engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 3430 3426 3431 - rollup@4.56.0: 3432 - resolution: {integrity: sha512-9FwVqlgUHzbXtDg9RCMgodF3Ua4Na6Gau+Sdt9vyCN4RhHfVKX2DCHy3BjMLTDd47ITDhYAnTwGulWTblJSDLg==} 3427 + rollup@4.57.1: 3428 + resolution: {integrity: sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==} 3433 3429 engines: {node: '>=18.0.0', npm: '>=8.0.0'} 3434 3430 hasBin: true 3435 3431 ··· 3476 3472 resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 3477 3473 engines: {node: '>=8'} 3478 3474 3479 - shiki@3.21.0: 3480 - resolution: {integrity: sha512-N65B/3bqL/TI2crrXr+4UivctrAGEjmsib5rPMMPpFp1xAx/w03v8WZ9RDDFYteXoEgY7qZ4HGgl5KBIu1153w==} 3475 + shiki@3.22.0: 3476 + resolution: {integrity: sha512-LBnhsoYEe0Eou4e1VgJACes+O6S6QC0w71fCSp5Oya79inkwkm15gQ1UF6VtQ8j/taMDh79hAB49WUk8ALQW3g==} 3481 3477 3482 3478 signal-exit@4.1.0: 3483 3479 resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} ··· 4083 4079 remark-parse: 11.0.0 4084 4080 remark-rehype: 11.1.2 4085 4081 remark-smartypants: 3.0.2 4086 - shiki: 3.21.0 4082 + shiki: 3.22.0 4087 4083 smol-toml: 1.6.0 4088 4084 unified: 11.0.5 4089 4085 unist-util-remove-position: 5.0.0 ··· 4093 4089 transitivePeerDependencies: 4094 4090 - supports-color 4095 4091 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 + '@astrojs/mdx@4.3.13(astro@5.17.1(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))': 4097 4093 dependencies: 4098 4094 '@astrojs/markdown-remark': 6.3.10 4099 4095 '@mdx-js/mdx': 3.1.1 4100 4096 acorn: 8.15.0 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 + astro: 5.17.1(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 4102 4098 es-module-lexer: 1.7.0 4103 4099 estree-util-visit: 2.0.0 4104 4100 hast-util-to-html: 9.0.5 ··· 4112 4108 transitivePeerDependencies: 4113 4109 - supports-color 4114 4110 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 + '@astrojs/netlify@6.6.4(@netlify/api@14.0.12)(@types/node@25.0.9)(astro@5.17.1(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(rollup@4.57.1)(tsx@4.21.0)(yaml@2.8.2)': 4116 4112 dependencies: 4117 4113 '@astrojs/internal-helpers': 0.7.5 4118 4114 '@astrojs/underscore-redirects': 1.0.0 4119 4115 '@netlify/blobs': 10.5.0 4120 4116 '@netlify/functions': 5.1.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) 4117 + '@netlify/vite-plugin': 2.7.19(@netlify/api@14.0.12)(rollup@4.57.1)(vite@6.4.1(@types/node@25.0.9)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2)) 4118 + '@vercel/nft': 0.30.4(rollup@4.57.1) 4119 + astro: 5.17.1(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 4124 4120 esbuild: 0.25.12 4125 4121 tinyglobby: 0.2.15 4126 4122 vite: 6.4.1(@types/node@25.0.9)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) ··· 4179 4175 4180 4176 '@astrojs/telemetry@3.3.0': 4181 4177 dependencies: 4182 - ci-info: 4.3.1 4178 + ci-info: 4.4.0 4183 4179 debug: 4.4.3 4184 4180 dlv: 1.1.3 4185 4181 dset: 3.1.4 ··· 4201 4197 4202 4198 '@babel/helper-validator-identifier@7.28.5': {} 4203 4199 4204 - '@babel/parser@7.28.6': 4200 + '@babel/parser@7.29.0': 4205 4201 dependencies: 4206 - '@babel/types': 7.28.6 4202 + '@babel/types': 7.29.0 4207 4203 4208 - '@babel/types@7.28.6': 4204 + '@babel/types@7.29.0': 4209 4205 dependencies: 4210 4206 '@babel/helper-string-parser': 7.27.1 4211 4207 '@babel/helper-validator-identifier': 7.28.5 ··· 4685 4681 uuid: 13.0.0 4686 4682 write-file-atomic: 5.0.1 4687 4683 4688 - '@netlify/dev@4.8.7(@netlify/api@14.0.12)(rollup@4.56.0)': 4684 + '@netlify/dev@4.8.7(@netlify/api@14.0.12)(rollup@4.57.1)': 4689 4685 dependencies: 4690 4686 '@netlify/ai': 0.3.5(@netlify/api@14.0.12) 4691 4687 '@netlify/blobs': 10.5.0 4692 4688 '@netlify/config': 24.2.0 4693 4689 '@netlify/dev-utils': 4.3.3 4694 4690 '@netlify/edge-functions-dev': 1.0.7 4695 - '@netlify/functions-dev': 1.1.7(rollup@4.56.0) 4691 + '@netlify/functions-dev': 1.1.7(rollup@4.57.1) 4696 4692 '@netlify/headers': 2.1.3 4697 4693 '@netlify/images': 1.3.3(@netlify/blobs@10.5.0) 4698 4694 '@netlify/redirects': 3.1.4 ··· 4763 4759 dependencies: 4764 4760 '@netlify/types': 2.3.0 4765 4761 4766 - '@netlify/functions-dev@1.1.7(rollup@4.56.0)': 4762 + '@netlify/functions-dev@1.1.7(rollup@4.57.1)': 4767 4763 dependencies: 4768 4764 '@netlify/blobs': 10.5.0 4769 4765 '@netlify/dev-utils': 4.3.3 4770 4766 '@netlify/functions': 5.1.2 4771 - '@netlify/zip-it-and-ship-it': 14.2.0(rollup@4.56.0) 4767 + '@netlify/zip-it-and-ship-it': 14.2.0(rollup@4.57.1) 4772 4768 cron-parser: 4.9.0 4773 4769 decache: 4.6.2 4774 4770 extract-zip: 2.0.1 ··· 4872 4868 4873 4869 '@netlify/types@2.3.0': {} 4874 4870 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 + '@netlify/vite-plugin@2.7.19(@netlify/api@14.0.12)(rollup@4.57.1)(vite@6.4.1(@types/node@25.0.9)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2))': 4876 4872 dependencies: 4877 - '@netlify/dev': 4.8.7(@netlify/api@14.0.12)(rollup@4.56.0) 4873 + '@netlify/dev': 4.8.7(@netlify/api@14.0.12)(rollup@4.57.1) 4878 4874 '@netlify/dev-utils': 4.3.3 4879 4875 dedent: 1.7.1 4880 4876 vite: 6.4.1(@types/node@25.0.9)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) ··· 4905 4901 - supports-color 4906 4902 - uploadthing 4907 4903 4908 - '@netlify/zip-it-and-ship-it@14.2.0(rollup@4.56.0)': 4904 + '@netlify/zip-it-and-ship-it@14.2.0(rollup@4.57.1)': 4909 4905 dependencies: 4910 - '@babel/parser': 7.28.6 4911 - '@babel/types': 7.28.6 4906 + '@babel/parser': 7.29.0 4907 + '@babel/types': 7.29.0 4912 4908 '@netlify/binary-info': 1.0.0 4913 4909 '@netlify/serverless-functions-api': 2.8.3 4914 - '@vercel/nft': 0.29.4(rollup@4.56.0) 4910 + '@vercel/nft': 0.29.4(rollup@4.57.1) 4915 4911 archiver: 7.0.1 4916 4912 common-path-prefix: 3.0.0 4917 4913 copy-file: 11.1.0 ··· 5089 5085 5090 5086 '@pkgr/core@0.2.9': {} 5091 5087 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 + '@playform/inline@0.1.2(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)': 5093 5089 dependencies: 5094 5090 '@playform/pipe': 0.1.3 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 + astro: 5.17.1(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 5096 5092 beasties: 0.2.0 5097 5093 deepmerge-ts: 7.1.5 5098 5094 transitivePeerDependencies: ··· 5136 5132 deepmerge-ts: 7.1.5 5137 5133 fast-glob: 3.3.3 5138 5134 5139 - '@rollup/pluginutils@5.3.0(rollup@4.56.0)': 5135 + '@rollup/pluginutils@5.3.0(rollup@4.57.1)': 5140 5136 dependencies: 5141 5137 '@types/estree': 1.0.8 5142 5138 estree-walker: 2.0.2 5143 5139 picomatch: 4.0.3 5144 5140 optionalDependencies: 5145 - rollup: 4.56.0 5141 + rollup: 4.57.1 5146 5142 5147 - '@rollup/rollup-android-arm-eabi@4.56.0': 5143 + '@rollup/rollup-android-arm-eabi@4.57.1': 5148 5144 optional: true 5149 5145 5150 - '@rollup/rollup-android-arm64@4.56.0': 5146 + '@rollup/rollup-android-arm64@4.57.1': 5151 5147 optional: true 5152 5148 5153 - '@rollup/rollup-darwin-arm64@4.56.0': 5149 + '@rollup/rollup-darwin-arm64@4.57.1': 5154 5150 optional: true 5155 5151 5156 - '@rollup/rollup-darwin-x64@4.56.0': 5152 + '@rollup/rollup-darwin-x64@4.57.1': 5157 5153 optional: true 5158 5154 5159 - '@rollup/rollup-freebsd-arm64@4.56.0': 5155 + '@rollup/rollup-freebsd-arm64@4.57.1': 5160 5156 optional: true 5161 5157 5162 - '@rollup/rollup-freebsd-x64@4.56.0': 5158 + '@rollup/rollup-freebsd-x64@4.57.1': 5163 5159 optional: true 5164 5160 5165 - '@rollup/rollup-linux-arm-gnueabihf@4.56.0': 5161 + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': 5166 5162 optional: true 5167 5163 5168 - '@rollup/rollup-linux-arm-musleabihf@4.56.0': 5164 + '@rollup/rollup-linux-arm-musleabihf@4.57.1': 5169 5165 optional: true 5170 5166 5171 - '@rollup/rollup-linux-arm64-gnu@4.56.0': 5167 + '@rollup/rollup-linux-arm64-gnu@4.57.1': 5172 5168 optional: true 5173 5169 5174 - '@rollup/rollup-linux-arm64-musl@4.56.0': 5170 + '@rollup/rollup-linux-arm64-musl@4.57.1': 5175 5171 optional: true 5176 5172 5177 - '@rollup/rollup-linux-loong64-gnu@4.56.0': 5173 + '@rollup/rollup-linux-loong64-gnu@4.57.1': 5178 5174 optional: true 5179 5175 5180 - '@rollup/rollup-linux-loong64-musl@4.56.0': 5176 + '@rollup/rollup-linux-loong64-musl@4.57.1': 5181 5177 optional: true 5182 5178 5183 - '@rollup/rollup-linux-ppc64-gnu@4.56.0': 5179 + '@rollup/rollup-linux-ppc64-gnu@4.57.1': 5184 5180 optional: true 5185 5181 5186 - '@rollup/rollup-linux-ppc64-musl@4.56.0': 5182 + '@rollup/rollup-linux-ppc64-musl@4.57.1': 5187 5183 optional: true 5188 5184 5189 - '@rollup/rollup-linux-riscv64-gnu@4.56.0': 5185 + '@rollup/rollup-linux-riscv64-gnu@4.57.1': 5190 5186 optional: true 5191 5187 5192 - '@rollup/rollup-linux-riscv64-musl@4.56.0': 5188 + '@rollup/rollup-linux-riscv64-musl@4.57.1': 5193 5189 optional: true 5194 5190 5195 - '@rollup/rollup-linux-s390x-gnu@4.56.0': 5191 + '@rollup/rollup-linux-s390x-gnu@4.57.1': 5196 5192 optional: true 5197 5193 5198 - '@rollup/rollup-linux-x64-gnu@4.56.0': 5194 + '@rollup/rollup-linux-x64-gnu@4.57.1': 5199 5195 optional: true 5200 5196 5201 - '@rollup/rollup-linux-x64-musl@4.56.0': 5197 + '@rollup/rollup-linux-x64-musl@4.57.1': 5202 5198 optional: true 5203 5199 5204 - '@rollup/rollup-openbsd-x64@4.56.0': 5200 + '@rollup/rollup-openbsd-x64@4.57.1': 5205 5201 optional: true 5206 5202 5207 - '@rollup/rollup-openharmony-arm64@4.56.0': 5203 + '@rollup/rollup-openharmony-arm64@4.57.1': 5208 5204 optional: true 5209 5205 5210 - '@rollup/rollup-win32-arm64-msvc@4.56.0': 5206 + '@rollup/rollup-win32-arm64-msvc@4.57.1': 5211 5207 optional: true 5212 5208 5213 - '@rollup/rollup-win32-ia32-msvc@4.56.0': 5209 + '@rollup/rollup-win32-ia32-msvc@4.57.1': 5214 5210 optional: true 5215 5211 5216 - '@rollup/rollup-win32-x64-gnu@4.56.0': 5212 + '@rollup/rollup-win32-x64-gnu@4.57.1': 5217 5213 optional: true 5218 5214 5219 - '@rollup/rollup-win32-x64-msvc@4.56.0': 5215 + '@rollup/rollup-win32-x64-msvc@4.57.1': 5220 5216 optional: true 5221 5217 5222 - '@shikijs/core@3.21.0': 5218 + '@shikijs/core@3.22.0': 5223 5219 dependencies: 5224 - '@shikijs/types': 3.21.0 5220 + '@shikijs/types': 3.22.0 5225 5221 '@shikijs/vscode-textmate': 10.0.2 5226 5222 '@types/hast': 3.0.4 5227 5223 hast-util-to-html: 9.0.5 5228 5224 5229 - '@shikijs/engine-javascript@3.21.0': 5225 + '@shikijs/engine-javascript@3.22.0': 5230 5226 dependencies: 5231 - '@shikijs/types': 3.21.0 5227 + '@shikijs/types': 3.22.0 5232 5228 '@shikijs/vscode-textmate': 10.0.2 5233 5229 oniguruma-to-es: 4.3.4 5234 5230 5235 - '@shikijs/engine-oniguruma@3.21.0': 5231 + '@shikijs/engine-oniguruma@3.22.0': 5236 5232 dependencies: 5237 - '@shikijs/types': 3.21.0 5233 + '@shikijs/types': 3.22.0 5238 5234 '@shikijs/vscode-textmate': 10.0.2 5239 5235 5240 - '@shikijs/langs@3.21.0': 5236 + '@shikijs/langs@3.22.0': 5241 5237 dependencies: 5242 - '@shikijs/types': 3.21.0 5238 + '@shikijs/types': 3.22.0 5243 5239 5244 - '@shikijs/themes@3.21.0': 5240 + '@shikijs/themes@3.22.0': 5245 5241 dependencies: 5246 - '@shikijs/types': 3.21.0 5242 + '@shikijs/types': 3.22.0 5247 5243 5248 - '@shikijs/types@3.21.0': 5244 + '@shikijs/types@3.22.0': 5249 5245 dependencies: 5250 5246 '@shikijs/vscode-textmate': 10.0.2 5251 5247 '@types/hast': 3.0.4 ··· 5425 5421 5426 5422 '@ungap/structured-clone@1.3.0': {} 5427 5423 5428 - '@vercel/nft@0.29.4(rollup@4.56.0)': 5424 + '@vercel/nft@0.29.4(rollup@4.57.1)': 5429 5425 dependencies: 5430 5426 '@mapbox/node-pre-gyp': 2.0.3 5431 - '@rollup/pluginutils': 5.3.0(rollup@4.56.0) 5427 + '@rollup/pluginutils': 5.3.0(rollup@4.57.1) 5432 5428 acorn: 8.15.0 5433 5429 acorn-import-attributes: 1.9.5(acorn@8.15.0) 5434 5430 async-sema: 3.1.1 ··· 5444 5440 - rollup 5445 5441 - supports-color 5446 5442 5447 - '@vercel/nft@0.30.4(rollup@4.56.0)': 5443 + '@vercel/nft@0.30.4(rollup@4.57.1)': 5448 5444 dependencies: 5449 5445 '@mapbox/node-pre-gyp': 2.0.3 5450 - '@rollup/pluginutils': 5.3.0(rollup@4.56.0) 5446 + '@rollup/pluginutils': 5.3.0(rollup@4.57.1) 5451 5447 acorn: 8.15.0 5452 5448 acorn-import-attributes: 1.9.5(acorn@8.15.0) 5453 5449 async-sema: 3.1.1 ··· 5465 5461 5466 5462 '@vue/compiler-core@3.5.26': 5467 5463 dependencies: 5468 - '@babel/parser': 7.28.6 5464 + '@babel/parser': 7.29.0 5469 5465 '@vue/shared': 3.5.26 5470 5466 entities: 7.0.1 5471 5467 estree-walker: 2.0.2 ··· 5478 5474 5479 5475 '@vue/compiler-sfc@3.5.26': 5480 5476 dependencies: 5481 - '@babel/parser': 7.28.6 5477 + '@babel/parser': 7.29.0 5482 5478 '@vue/compiler-core': 3.5.26 5483 5479 '@vue/compiler-dom': 3.5.26 5484 5480 '@vue/compiler-ssr': 3.5.26 ··· 5635 5631 transitivePeerDependencies: 5636 5632 - supports-color 5637 5633 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 + astro-og-canvas@0.10.1(astro@5.17.1(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)): 5639 5635 dependencies: 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 + astro: 5.17.1(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 5641 5637 canvaskit-wasm: 0.40.0 5642 5638 deterministic-object-hash: 2.0.2 5643 - entities: 7.0.0 5639 + entities: 7.0.1 5644 5640 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 + astro@5.17.1(@netlify/blobs@10.5.0)(@types/node@25.0.9)(jiti@2.6.1)(rollup@4.57.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2): 5646 5642 dependencies: 5647 5643 '@astrojs/compiler': 2.13.0 5648 5644 '@astrojs/internal-helpers': 0.7.5 ··· 5650 5646 '@astrojs/telemetry': 3.3.0 5651 5647 '@capsizecss/unpack': 4.0.0 5652 5648 '@oslojs/encoding': 1.1.0 5653 - '@rollup/pluginutils': 5.3.0(rollup@4.56.0) 5649 + '@rollup/pluginutils': 5.3.0(rollup@4.57.1) 5654 5650 acorn: 8.15.0 5655 5651 aria-query: 5.3.2 5656 5652 axobject-query: 4.1.0 5657 5653 boxen: 8.0.1 5658 - ci-info: 4.3.1 5654 + ci-info: 4.4.0 5659 5655 clsx: 2.1.1 5660 5656 common-ancestor-path: 1.0.1 5661 5657 cookie: 1.1.1 ··· 5670 5666 esbuild: 0.25.12 5671 5667 estree-walker: 3.0.3 5672 5668 flattie: 1.1.1 5673 - fontace: 0.4.0 5669 + fontace: 0.4.1 5674 5670 github-slugger: 2.0.0 5675 5671 html-escaper: 3.0.3 5676 5672 http-cache-semantics: 4.2.0 ··· 5688 5684 prompts: 2.4.2 5689 5685 rehype: 13.0.2 5690 5686 semver: 7.7.3 5691 - shiki: 3.21.0 5687 + shiki: 3.22.0 5692 5688 smol-toml: 1.6.0 5693 5689 svgo: 4.0.0 5694 5690 tinyexec: 1.0.2 ··· 5867 5863 5868 5864 chownr@3.0.0: {} 5869 5865 5870 - ci-info@4.3.1: {} 5866 + ci-info@4.4.0: {} 5871 5867 5872 5868 citty@0.1.6: 5873 5869 dependencies: ··· 6156 6152 6157 6153 entities@6.0.1: {} 6158 6154 6159 - entities@7.0.0: {} 6160 - 6161 6155 entities@7.0.1: {} 6162 6156 6163 6157 env-paths@3.0.0: {} ··· 6503 6497 6504 6498 fn.name@1.1.0: {} 6505 6499 6506 - fontace@0.4.0: 6500 + fontace@0.4.1: 6507 6501 dependencies: 6508 6502 fontkitten: 1.0.2 6509 6503 ··· 7076 7070 7077 7071 magicast@0.5.1: 7078 7072 dependencies: 7079 - '@babel/parser': 7.28.6 7080 - '@babel/types': 7.28.6 7073 + '@babel/parser': 7.29.0 7074 + '@babel/types': 7.29.0 7081 7075 source-map-js: 1.2.1 7082 7076 7083 7077 map-obj@5.0.2: {} ··· 7680 7674 7681 7675 node-source-walk@7.0.1: 7682 7676 dependencies: 7683 - '@babel/parser': 7.28.6 7677 + '@babel/parser': 7.29.0 7684 7678 7685 7679 node-stream-zip@1.15.0: {} 7686 7680 ··· 8212 8206 8213 8207 reusify@1.1.0: {} 8214 8208 8215 - rollup@4.56.0: 8209 + rollup@4.57.1: 8216 8210 dependencies: 8217 8211 '@types/estree': 1.0.8 8218 8212 optionalDependencies: 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 8213 + '@rollup/rollup-android-arm-eabi': 4.57.1 8214 + '@rollup/rollup-android-arm64': 4.57.1 8215 + '@rollup/rollup-darwin-arm64': 4.57.1 8216 + '@rollup/rollup-darwin-x64': 4.57.1 8217 + '@rollup/rollup-freebsd-arm64': 4.57.1 8218 + '@rollup/rollup-freebsd-x64': 4.57.1 8219 + '@rollup/rollup-linux-arm-gnueabihf': 4.57.1 8220 + '@rollup/rollup-linux-arm-musleabihf': 4.57.1 8221 + '@rollup/rollup-linux-arm64-gnu': 4.57.1 8222 + '@rollup/rollup-linux-arm64-musl': 4.57.1 8223 + '@rollup/rollup-linux-loong64-gnu': 4.57.1 8224 + '@rollup/rollup-linux-loong64-musl': 4.57.1 8225 + '@rollup/rollup-linux-ppc64-gnu': 4.57.1 8226 + '@rollup/rollup-linux-ppc64-musl': 4.57.1 8227 + '@rollup/rollup-linux-riscv64-gnu': 4.57.1 8228 + '@rollup/rollup-linux-riscv64-musl': 4.57.1 8229 + '@rollup/rollup-linux-s390x-gnu': 4.57.1 8230 + '@rollup/rollup-linux-x64-gnu': 4.57.1 8231 + '@rollup/rollup-linux-x64-musl': 4.57.1 8232 + '@rollup/rollup-openbsd-x64': 4.57.1 8233 + '@rollup/rollup-openharmony-arm64': 4.57.1 8234 + '@rollup/rollup-win32-arm64-msvc': 4.57.1 8235 + '@rollup/rollup-win32-ia32-msvc': 4.57.1 8236 + '@rollup/rollup-win32-x64-gnu': 4.57.1 8237 + '@rollup/rollup-win32-x64-msvc': 4.57.1 8244 8238 fsevents: 2.3.3 8245 8239 8246 8240 run-parallel@1.2.0: ··· 8309 8303 8310 8304 shebang-regex@3.0.0: {} 8311 8305 8312 - shiki@3.21.0: 8306 + shiki@3.22.0: 8313 8307 dependencies: 8314 - '@shikijs/core': 3.21.0 8315 - '@shikijs/engine-javascript': 3.21.0 8316 - '@shikijs/engine-oniguruma': 3.21.0 8317 - '@shikijs/langs': 3.21.0 8318 - '@shikijs/themes': 3.21.0 8319 - '@shikijs/types': 3.21.0 8308 + '@shikijs/core': 3.22.0 8309 + '@shikijs/engine-javascript': 3.22.0 8310 + '@shikijs/engine-oniguruma': 3.22.0 8311 + '@shikijs/langs': 3.22.0 8312 + '@shikijs/themes': 3.22.0 8313 + '@shikijs/types': 3.22.0 8320 8314 '@shikijs/vscode-textmate': 10.0.2 8321 8315 '@types/hast': 3.0.4 8322 8316 ··· 8694 8688 fdir: 6.5.0(picomatch@4.0.3) 8695 8689 picomatch: 4.0.3 8696 8690 postcss: 8.5.6 8697 - rollup: 4.56.0 8691 + rollup: 4.57.1 8698 8692 tinyglobby: 0.2.15 8699 8693 optionalDependencies: 8700 8694 '@types/node': 25.0.9