├── .gitignore ├── public ├── robots.txt ├── favicon.svg └── og-image.svg ├── wrangler.jsonc ├── tsconfig.json ├── astro.config.mjs ├── package.json ├── LICENSE ├── src ├── components │ ├── CategorySection.astro │ ├── Header.astro │ └── ProjectCard.astro ├── styles │ └── global.css ├── layouts │ └── Layout.astro ├── pages │ └── index.astro └── data │ └── projects.ts └── pnpm-lock.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .astro 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | 4 | Sitemap: https://wonderful-acg.catcat.blog/sitemap-index.xml 5 | -------------------------------------------------------------------------------- /wrangler.jsonc: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wonderful-acg", 3 | "compatibility_date": "2025-12-03", 4 | "assets": { 5 | "directory": "./dist" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strict", 3 | "compilerOptions": { 4 | "baseUrl": ".", 5 | "paths": { 6 | "@/*": ["src/*"] 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'astro/config'; 2 | import tailwindcss from '@tailwindcss/vite'; 3 | import sitemap from '@astrojs/sitemap'; 4 | 5 | export default defineConfig({ 6 | site: 'https://wonderful-acg.catcat.blog', 7 | integrations: [sitemap()], 8 | vite: { 9 | plugins: [tailwindcss()], 10 | }, 11 | }); 12 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wonderful-acg", 3 | "type": "module", 4 | "version": "1.0.0", 5 | "scripts": { 6 | "dev": "astro dev", 7 | "build": "astro build", 8 | "preview": "astro preview", 9 | "deploy": "astro build && wrangler deploy" 10 | }, 11 | "dependencies": { 12 | "astro": "^5.16.3", 13 | "@astrojs/sitemap": "^3.3.1", 14 | "@tailwindcss/vite": "^4.1.17", 15 | "tailwindcss": "^4.1.17" 16 | }, 17 | "devDependencies": { 18 | "wrangler": "^4.16.0" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Emilia tan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /src/components/CategorySection.astro: -------------------------------------------------------------------------------- 1 | --- 2 | import ProjectCard from './ProjectCard.astro'; 3 | import type { Project } from '../data/projects'; 4 | 5 | interface Props { 6 | id: string; 7 | name: string; 8 | icon: string; 9 | projects: Project[]; 10 | } 11 | 12 | const { id, name, icon, projects } = Astro.props; 13 | --- 14 | 15 |
16 |
17 | {icon} 18 |

{name}

19 | 20 | {projects.length} 21 | 22 |
23 |
24 | {projects.map((project) => ( 25 |
26 | 32 |
33 | ))} 34 |
35 |
36 | -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | 3 | @theme { 4 | --font-sans: 'Inter', 'Noto Sans SC', system-ui, sans-serif; 5 | 6 | --color-primary: #6366f1; 7 | --color-primary-dark: #4f46e5; 8 | --color-accent: #f472b6; 9 | --color-surface: #1e1b2e; 10 | --color-surface-light: #2a2640; 11 | --color-surface-lighter: #363254; 12 | --color-text: #e2e8f0; 13 | --color-text-muted: #94a3b8; 14 | } 15 | 16 | html { 17 | background: #0f0c1a; 18 | } 19 | 20 | body { 21 | background: linear-gradient(135deg, #0f0c1a 0%, #1a1528 50%, #0f0c1a 100%); 22 | min-height: 100vh; 23 | } 24 | 25 | .card-hover { 26 | transition: all 0.3s ease; 27 | } 28 | 29 | .card-hover:hover { 30 | transform: translateY(-4px); 31 | box-shadow: 0 20px 40px -12px rgba(99, 102, 241, 0.25); 32 | } 33 | 34 | .gradient-text { 35 | background: linear-gradient(135deg, #6366f1 0%, #f472b6 100%); 36 | -webkit-background-clip: text; 37 | -webkit-text-fill-color: transparent; 38 | background-clip: text; 39 | } 40 | 41 | .glass { 42 | background: rgba(30, 27, 46, 0.8); 43 | backdrop-filter: blur(12px); 44 | border: 1px solid rgba(99, 102, 241, 0.1); 45 | } 46 | -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | --- 4 | 5 |
6 |
7 | 22 |
23 |
24 | -------------------------------------------------------------------------------- /public/og-image.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | WonderFul ACG 29 | 30 | 精选 ACG 相关工具、应用、资源导航 31 | 32 | wonderful-acg.catcat.blog 33 | 34 | -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- 1 | --- 2 | import '../styles/global.css'; 3 | 4 | interface Props { 5 | title: string; 6 | description?: string; 7 | image?: string; 8 | } 9 | 10 | const { 11 | title, 12 | description = 'WonderFul ACG - 精选 ACG 相关工具、应用、机器人等资源导航,包含追番、Bilibili、弹幕、Pixiv 等分类', 13 | image = '/og-image.svg' 14 | } = Astro.props; 15 | 16 | const canonicalURL = new URL(Astro.url.pathname, Astro.site); 17 | --- 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | {title} 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /src/components/ProjectCard.astro: -------------------------------------------------------------------------------- 1 | --- 2 | interface Props { 3 | title: string; 4 | description: string; 5 | url: string; 6 | nsfw?: boolean; 7 | } 8 | 9 | const { title, description, url, nsfw = false } = Astro.props; 10 | 11 | const isGithub = url.includes('github.com'); 12 | const domain = new URL(url).hostname.replace('www.', ''); 13 | --- 14 | 15 | 21 |
22 |
23 |
24 |

{title}

25 | {nsfw && ( 26 | 27 | R18+ 28 | 29 | )} 30 |
31 |

{description}

32 |
33 |
34 | {isGithub ? ( 35 |
36 | 37 | 38 | 39 |
40 | ) : ( 41 |
42 | {domain.slice(0, 2).toUpperCase()} 43 |
44 | )} 45 |
46 |
47 |
48 | 49 | 50 | 51 | {domain} 52 |
53 |
54 | -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- 1 | --- 2 | import Layout from '../layouts/Layout.astro'; 3 | import Header from '../components/Header.astro'; 4 | import CategorySection from '../components/CategorySection.astro'; 5 | import { categories, totalProjects } from '../data/projects'; 6 | --- 7 | 8 | 9 |
10 | 11 |
12 | 13 |
14 |

15 | WonderFul ACG 16 |

17 |

18 | 精选 ACG 相关工具、应用、机器人等资源导航 19 |

20 |
21 |
22 | {totalProjects} 23 | 个项目 24 |
25 |
26 |
27 | {categories.length} 28 | 个分类 29 |
30 |
31 |
32 | 33 | 34 |
35 |
36 | 42 | 43 | 44 | 45 |
46 |
47 | 48 | 49 |
50 | {categories.map(cat => ( 51 | 55 | {cat.icon} {cat.name} 56 | 57 | ))} 58 |
59 | 60 | 61 |
62 | {categories.map(cat => ( 63 | 69 | ))} 70 |
71 |
72 | 73 | 74 | 88 | 89 | 90 | 115 | -------------------------------------------------------------------------------- /src/data/projects.ts: -------------------------------------------------------------------------------- 1 | export interface Project { 2 | title: string; 3 | url: string; 4 | description: string; 5 | nsfw?: boolean; 6 | } 7 | 8 | export interface Category { 9 | id: string; 10 | name: string; 11 | icon: string; 12 | projects: Project[]; 13 | } 14 | 15 | export const categories: Category[] = [ 16 | { 17 | id: 'bot', 18 | name: 'BOT', 19 | icon: '🤖', 20 | projects: [ 21 | { title: 'zhenxun_bot', url: 'https://github.com/HibiKier/zhenxun_bot', description: '基于 Nonebot2 和 go-cqhttp 开发,以 postgresql 作为数据库,非常可爱的绪山真寻bot' }, 22 | { title: 'nonebot', url: 'https://github.com/nonebot/nonebot', description: '基于 OneBot 标准的 Python 异步 QQ 机器人框架' }, 23 | { title: 'Adachi-BOT', url: 'https://github.com/Arondight/Adachi-BOT', description: '一个在QQ中运行的原神助手' }, 24 | { title: 'go-cqhttp', url: 'https://github.com/Mrs4s/go-cqhttp', description: 'cqhttp的golang实现,轻量、原生跨平台' }, 25 | { title: 'nazurin', url: 'https://github.com/y-young/nazurin', description: '图片收藏机器人' }, 26 | { title: 'LittlePaimon', url: 'https://github.com/CMHopeSunshine/LittlePaimon', description: '原神qq群机器人' }, 27 | { title: 'HoshinoBot', url: 'https://github.com/Ice-Cirno/HoshinoBot', description: 'A qqbot for Princess Connect Re:Dive' }, 28 | { title: 'ABot-Graia', url: 'https://github.com/djkcyl/ABot-Graia', description: '一个使用 Graia Ariadne 搭建的 QQ 功能性机器人' }, 29 | { title: 'novelai-bot', url: 'https://github.com/koishijs/novelai-bot', description: '基于 NovelAI 的画图机器人' }, 30 | { title: 'Majsoul_bot', url: 'https://github.com/DaiShengSheng/Majsoul_bot', description: 'HoshinoBot下的雀魂QQ机器人' }, 31 | { title: 'Majsoul-QQBot', url: 'https://github.com/NekoRabi/Majsoul-QQBot', description: '基于YiriMirai的雀魂机器人' }, 32 | { title: 'CyberGroupmate', url: 'https://github.com/Archeb/CyberGroupmate', description: '赛博群友' }, 33 | ], 34 | }, 35 | { 36 | id: 'anime', 37 | name: '追番', 38 | icon: '📺', 39 | projects: [ 40 | { title: 'Auto_Bangumi', url: 'https://github.com/EstrellaXD/Auto_Bangumi', description: '全自动追番工具,节约时间创造价值' }, 41 | { title: 'minaplay', url: 'https://github.com/nepsyn/minaplay', description: 'MinaPlay 是一个基于 RSS 订阅的追番 / 追剧个人媒体库' }, 42 | { title: 'ani-rss', url: 'https://github.com/wushuo894/ani-rss', description: '全自动追番工具(Java 版)' }, 43 | { title: 'MALSync', url: 'https://github.com/MALSync/MALSync', description: '将 MyAnimeList/AniList/Kitsu/Simkl 集成到站点中,并具有自动剧集跟踪功能' }, 44 | { title: 'Imomoe', url: 'https://github.com/SkyD666/Imomoe', description: '樱花动漫第三方安卓Android客户端' }, 45 | { title: 'animeko', url: 'https://github.com/open-ani/animeko', description: '一站式在线弹幕追番平台:全自动 BT + 在线多数据源聚合,离线缓存,Bangumi 收藏同步,弹幕云过滤' }, 46 | { title: 'animeTrackerList', url: 'https://github.com/DeSireFire/animeTrackerList', description: '动漫磁性链接加速方案' }, 47 | { title: 'AnimeSearcher', url: 'https://github.com/zaxtyson/AnimeSearcher', description: '整合第三方网站的视频和弹幕资源,为白嫖党提供最佳看番追剧体验' }, 48 | { title: 'PlexAniSync', url: 'https://github.com/RickDB/PlexAniSync', description: '将 Plex 动漫库同步到 AniList' }, 49 | { title: 'Bangumi', url: 'https://github.com/RanKKI/Bangumi', description: '高度自定义的自动追番项目,搭配 Jellyfin 等媒体库使用更香' }, 50 | { title: 'animity', url: 'https://github.com/kl3jvi/animity', description: 'Android 追番流媒体(国外)' }, 51 | { title: 'TrackersListCollection', url: 'https://github.com/XIU2/TrackersListCollection', description: '每日更新!全网热门BT追踪器列表' }, 52 | { title: 'miru', url: 'https://github.com/ThaUnknown/miru', description: '流式下载种子的客户端,边看边下' }, 53 | { title: 'Miruro', url: 'https://github.com/Miruro-no-kuon/Miruro', description: '基于 Vite 和 Bun 的在线动漫' }, 54 | { title: 'seanime', url: 'https://github.com/5rahim/seanime', description: '扫描、自动化和欣赏您的动漫收藏、阅读漫画、跟踪您的进度等等 AniList 集成' }, 55 | { title: 'sub_share', url: 'https://github.com/foxofice/sub_share', description: '字幕共享' }, 56 | { title: 'Haruhana-Fansub', url: 'https://github.com/HaruhanaSub/Haruhana-Fansub', description: '拨雪寻春字幕组' }, 57 | { title: 'MPV_lazy', url: 'https://github.com/hooke007/MPV_lazy', description: 'MPV 播放器懒人包' }, 58 | { title: 'mpv.net-DW', url: 'https://github.com/diana7127/mpv.net-DW', description: 'mpv.net_CM的DW版本,定制了播放界面、右键菜单、缩略图、视频滤镜和着色器' }, 59 | { title: 'Anime-Subtitles', url: 'https://github.com/bipy/Anime-Subtitles', description: '外挂字幕备份' }, 60 | { title: 'AnimeGarden', url: 'https://github.com/yjl9903/AnimeGarden', description: '动漫花园第3方镜像站及动漫Torrent聚合站' }, 61 | { title: 'fixarr', url: 'https://github.com/sachinsenal0x64/fixarr', description: '字幕重命名方案' }, 62 | { title: 'subtitle-renamer', url: 'https://github.com/nuthx/subtitle-renamer', description: '跨平台字幕重命名方案' }, 63 | { title: 'bangumi-renamer', url: 'https://github.com/nuthx/bangumi-renamer', description: '自动识别番剧基于罗马音进行重命名' }, 64 | { title: 'fontInAss', url: 'https://github.com/RiderLty/fontInAss', description: '实时将字体子集化后嵌入ass的工具' }, 65 | { title: 'Kyoo', url: 'https://github.com/zoriya/Kyoo', description: '新的媒体库解决方案,Jellyfin 或 Plex 的替代品' }, 66 | { title: 'dd-danmaku', url: 'https://github.com/chen3861229/dd-danmaku', description: 'Emby 新版弹幕插件' }, 67 | { title: 'StrmAssistant', url: 'https://github.com/sjtuross/StrmAssistant', description: 'Emby神医助手' }, 68 | ], 69 | }, 70 | { 71 | id: 'datasource', 72 | name: '数据源', 73 | icon: '📊', 74 | projects: [ 75 | { title: 'Bangumi Data', url: 'https://github.com/bangumi-data/bangumi-data', description: '蜜柑计划番剧数据' }, 76 | { title: '一言(ヒトコト)', url: 'https://hitokoto.cn', description: '一言 API' }, 77 | { title: 'AnimeGarden', url: 'https://github.com/yjl9903/AnimeGarden', description: '动漫花园第三方镜像' }, 78 | ], 79 | }, 80 | { 81 | id: 'bilibili', 82 | name: 'Bilibili', 83 | icon: '📹', 84 | projects: [ 85 | { title: 'Bilibili-Evolved', url: 'https://github.com/the1812/Bilibili-Evolved', description: '强大的哔哩哔哩增强脚本' }, 86 | { title: 'Hitomi-Downloader', url: 'https://github.com/KurtBestor/Hitomi-Downloader', description: '用于从各种网站下载图像/视频/音乐/文本等的桌面实用程序' }, 87 | { title: 'bilibili-API-collect', url: 'https://github.com/SocialSisterYi/bilibili-API-collect', description: '哔哩哔哩-API 收集整理' }, 88 | { title: 'Bili.Uwp', url: 'https://github.com/Richasy/Bili.Uwp', description: '适用于新系统UI的哔哩' }, 89 | { title: 'BiliRoaming', url: 'https://github.com/yujincheng08/BiliRoaming', description: '哔哩漫游,解除B站客户端番剧区域限制,并且提供其他小功能' }, 90 | { title: 'bilibili-helper-o', url: 'https://github.com/bilibili-helper/bilibili-helper-o', description: '哔哩哔哩辅助工具,可以替换播放器、推送通知并进行一些快捷操作' }, 91 | { title: 'dailycheckin', url: 'https://github.com/Sitoi/dailycheckin', description: '基于腾讯云函数的自动签到' }, 92 | { title: 'BewlyBewly', url: 'https://github.com/BewlyBewly/BewlyBewly', description: 'Bilibili 页面的重新设计' }, 93 | { title: 'BilibiliSponsorBlock', url: 'https://github.com/hanydd/BilibiliSponsorBlock', description: '一款跳过B站视频中恰饭片段的浏览器插件(强烈推荐)' }, 94 | { title: 'yutto', url: 'https://github.com/yutto-dev/yutto', description: '一个可爱且任性的 B 站视频下载器' }, 95 | { title: 'bili-sync', url: 'https://github.com/amtoaer/bili-sync', description: '由 Rust & Tokio 驱动的哔哩哔哩同步工具' }, 96 | ], 97 | }, 98 | { 99 | id: 'theme', 100 | name: '动漫主题', 101 | icon: '🎨', 102 | projects: [ 103 | { title: 'doki-theme-vscode', url: 'https://github.com/doki-theme/doki-theme-vscode', description: 'VS-Code 的可爱动漫人物主题' }, 104 | { title: 'NotAnotherAnimeTheme', url: 'https://github.com/puckzxz/NotAnotherAnimeTheme', description: 'Discord 动漫主题' }, 105 | { title: 'doki-theme-jetbrains', url: 'https://github.com/doki-theme/doki-theme-jetbrains', description: 'Jetbrains 动漫主题' }, 106 | { title: 'Telegram Theme', url: 'https://t.me/JoinThemesWorld', description: 'Telegram 动漫主题' }, 107 | { title: 'Sakurairo', url: 'https://github.com/mirai-mamori/Sakurairo', description: 'Wordpress 主题' }, 108 | { title: 'sakura', url: 'https://github.com/mashirozx/sakura', description: 'Wordpress 主题' }, 109 | ], 110 | }, 111 | { 112 | id: 'imagesearch', 113 | name: '图像搜索', 114 | icon: '🔍', 115 | projects: [ 116 | { title: 'trace.moe', url: 'https://github.com/soruly/trace.moe', description: '动漫图像搜索 - What Anime Is This?' }, 117 | ], 118 | }, 119 | { 120 | id: 'manga', 121 | name: '漫画', 122 | icon: '📖', 123 | projects: [ 124 | { title: 'LANraragi', url: 'https://github.com/Difegue/LANraragi', description: '开源漫画存储仓库' }, 125 | ], 126 | }, 127 | { 128 | id: 'app', 129 | name: 'APP', 130 | icon: '📱', 131 | projects: [ 132 | { title: 'iwara4a', url: 'https://github.com/re-ovo/iwara4a', description: '基于Jetpack Compose开发的iwara安卓app' }, 133 | { title: 'AcgClub', url: 'https://github.com/Rabtman/AcgClub', description: '一款纯粹的ACG聚合类App' }, 134 | { title: 'pikapika', url: 'https://github.com/niuhuan/pikapika', description: '美观易用且无广告的二次元客户端,同时支持MacOS,Windows,Android,iOS', nsfw: true }, 135 | { title: 'jasmine', url: 'https://github.com/niuhuan/jasmine', description: '一个美观易用的漫画客户端,同时支持 Android / iOS / MacOS / Windows / Linux', nsfw: true }, 136 | { title: 'EasyBangumi', url: 'https://github.com/heyanLE/EasyBangumi', description: '纯纯看番,追番和看番的安卓软件,多番剧源' }, 137 | { title: 'hacg', url: 'https://github.com/yueeng/hacg', description: '琉璃神社 hacg android app by scala' }, 138 | { title: 'misskey', url: 'https://github.com/misskey-dev/misskey', description: 'An interplanetary microblogging platform' }, 139 | { title: 'NipaPlay', url: 'https://github.com/MCDFsteve/NipaPlay', description: 'Nipaplay 一款跨平台本地弹幕视频播放器,弹弹play 的mac代餐' }, 140 | ], 141 | }, 142 | { 143 | id: 'danmaku', 144 | name: '弹幕', 145 | icon: '💬', 146 | projects: [ 147 | { title: 'ABPlayerHTML5', url: 'https://github.com/jabbany/ABPlayerHTML5', description: '弹幕评论的视频播放器,HTML5 中的 ABPlayer' }, 148 | { title: 'CommentCoreLibrary', url: 'https://github.com/jabbany/CommentCoreLibrary', description: 'Javascript 实时评论(弹幕)引擎实现' }, 149 | { title: 'Danmaku', url: 'https://github.com/weizhenye/Danmaku', description: '高性能 JavaScript 弹幕引擎' }, 150 | { title: 'danmaku2ass', url: 'https://github.com/m13253/danmaku2ass', description: '将评论从 Niconico/AcFun/bilibili 转换为 ASS 格式' }, 151 | { title: 'DPlayer', url: 'https://github.com/DIYgod/DPlayer', description: 'HTML5 弹幕视频播放器' }, 152 | { title: 'AnimeSearcher', url: 'https://github.com/zaxtyson/AnimeSearcher', description: '整合第三方网站的视频和弹幕,为白嫖党提供最佳看番追剧体验' }, 153 | ], 154 | }, 155 | { 156 | id: 'pixiv', 157 | name: 'Pixiv', 158 | icon: '🖼️', 159 | projects: [ 160 | { title: 'PixivBiu', url: 'https://github.com/txperl/PixivBiu', description: 'Pixiv 辅助工具' }, 161 | { title: 'PixivBatchDownloader', url: 'https://github.com/xuejianxianzun/PixivBatchDownloader', description: 'Chrome 扩展,批量下载 Pixiv 的插画和小说,过滤作品、下载时重命名、转换动态图片等' }, 162 | { title: 'PixivFanboxDownloader', url: 'https://github.com/xuejianxianzun/PixivFanboxDownloader', description: 'Chrome 扩展,用于批量下载 Pixiv Fanbox 上的文件' }, 163 | ], 164 | }, 165 | { 166 | id: 'tools', 167 | name: 'Tools', 168 | icon: '🛠️', 169 | projects: [ 170 | { title: 'voicevox', url: 'https://github.com/VOICEVOX/voicevox', description: '文本转语音' }, 171 | { title: 'sakana', url: 'https://github.com/itorr/sakana', description: '「Sakana!」石蒜模拟器' }, 172 | { title: 'paimon-moe', url: 'https://github.com/MadeBaruna/paimon-moe', description: 'Genshin Impact 追踪器' }, 173 | { title: 'SakuraLLM', url: 'https://github.com/SakuraLLM/SakuraLLM', description: '适配轻小说/Galgame的日中翻译大模型' }, 174 | { title: 'anilist-mcp', url: 'https://github.com/yuna0x0/anilist-mcp', description: 'AniList MCP 服务' }, 175 | ], 176 | }, 177 | { 178 | id: 'ai-art', 179 | name: 'AI作画', 180 | icon: '🎭', 181 | projects: [ 182 | { title: 'StableDiffusionBook', url: 'https://github.com/sudoskys/StableDiffusionBook', description: 'AI 作画 Wiki' }, 183 | { title: 'danbooru-diffusion-prompt-builder', url: 'https://github.com/wfjsw/danbooru-diffusion-prompt-builder', description: 'Danbooru/NovelAI tag 构建器' }, 184 | { title: 'AI_image_gen', url: 'https://github.com/CYDXDianXian/AI_image_gen', description: 'NovelAI绘图 HoshinoBot 插件版' }, 185 | { title: 'airi', url: 'https://github.com/moeru-ai/airi', description: 'AI VTuber' }, 186 | ], 187 | }, 188 | ]; 189 | 190 | // 计算总项目数 191 | export const totalProjects = categories.reduce((sum, cat) => sum + cat.projects.length, 0); 192 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@astrojs/sitemap': 12 | specifier: ^3.3.1 13 | version: 3.6.0 14 | '@tailwindcss/vite': 15 | specifier: ^4.1.17 16 | version: 4.1.17(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2)) 17 | astro: 18 | specifier: ^5.16.3 19 | version: 5.16.3(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(rollup@4.53.3)(typescript@5.9.3)(yaml@2.8.2) 20 | tailwindcss: 21 | specifier: ^4.1.17 22 | version: 4.1.17 23 | devDependencies: 24 | wrangler: 25 | specifier: ^4.16.0 26 | version: 4.51.0 27 | 28 | packages: 29 | 30 | '@astrojs/compiler@2.13.0': 31 | resolution: {integrity: sha512-mqVORhUJViA28fwHYaWmsXSzLO9osbdZ5ImUfxBarqsYdMlPbqAqGJCxsNzvppp1BEzc1mJNjOVvQqeDN8Vspw==} 32 | 33 | '@astrojs/internal-helpers@0.7.5': 34 | resolution: {integrity: sha512-vreGnYSSKhAjFJCWAwe/CNhONvoc5lokxtRoZims+0wa3KbHBdPHSSthJsKxPd8d/aic6lWKpRTYGY/hsgK6EA==} 35 | 36 | '@astrojs/markdown-remark@6.3.9': 37 | resolution: {integrity: sha512-hX2cLC/KW74Io1zIbn92kI482j9J7LleBLGCVU9EP3BeH5MVrnFawOnqD0t/q6D1Z+ZNeQG2gNKMslCcO36wng==} 38 | 39 | '@astrojs/prism@3.3.0': 40 | resolution: {integrity: sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==} 41 | engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} 42 | 43 | '@astrojs/sitemap@3.6.0': 44 | resolution: {integrity: sha512-4aHkvcOZBWJigRmMIAJwRQXBS+ayoP5z40OklTXYXhUDhwusz+DyDl+nSshY6y9DvkVEavwNcFO8FD81iGhXjg==} 45 | 46 | '@astrojs/telemetry@3.3.0': 47 | resolution: {integrity: sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==} 48 | engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} 49 | 50 | '@babel/helper-string-parser@7.27.1': 51 | resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 52 | engines: {node: '>=6.9.0'} 53 | 54 | '@babel/helper-validator-identifier@7.28.5': 55 | resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} 56 | engines: {node: '>=6.9.0'} 57 | 58 | '@babel/parser@7.28.5': 59 | resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==} 60 | engines: {node: '>=6.0.0'} 61 | hasBin: true 62 | 63 | '@babel/types@7.28.5': 64 | resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==} 65 | engines: {node: '>=6.9.0'} 66 | 67 | '@capsizecss/unpack@3.0.1': 68 | resolution: {integrity: sha512-8XqW8xGn++Eqqbz3e9wKuK7mxryeRjs4LOHLxbh2lwKeSbuNR4NFifDZT4KzvjU6HMOPbiNTsWpniK5EJfTWkg==} 69 | engines: {node: '>=18'} 70 | 71 | '@cloudflare/kv-asset-handler@0.4.1': 72 | resolution: {integrity: sha512-Nu8ahitGFFJztxUml9oD/DLb7Z28C8cd8F46IVQ7y5Btz575pvMY8AqZsXkX7Gds29eCKdMgIHjIvzskHgPSFg==} 73 | engines: {node: '>=18.0.0'} 74 | 75 | '@cloudflare/unenv-preset@2.7.11': 76 | resolution: {integrity: sha512-se23f1D4PxKrMKOq+Stz+Yn7AJ9ITHcEecXo2Yjb+UgbUDCEBch1FXQC6hx6uT5fNA3kmX3mfzeZiUmpK1W9IQ==} 77 | peerDependencies: 78 | unenv: 2.0.0-rc.24 79 | workerd: ^1.20251106.1 80 | peerDependenciesMeta: 81 | workerd: 82 | optional: true 83 | 84 | '@cloudflare/workerd-darwin-64@1.20251125.0': 85 | resolution: {integrity: sha512-xDIVJi8fPxBseRoEIzLiUJb0N+DXnah/ynS+Unzn58HEoKLetUWiV/T1Fhned//lo5krnToG9KRgVRs0SOOTpw==} 86 | engines: {node: '>=16'} 87 | cpu: [x64] 88 | os: [darwin] 89 | 90 | '@cloudflare/workerd-darwin-arm64@1.20251125.0': 91 | resolution: {integrity: sha512-k5FQET5PXnWjeDqZUpl4Ah/Rn0bH6mjfUtTyeAy6ky7QB3AZpwIhgWQD0vOFB3OvJaK4J/K4cUtNChYXB9mY/A==} 92 | engines: {node: '>=16'} 93 | cpu: [arm64] 94 | os: [darwin] 95 | 96 | '@cloudflare/workerd-linux-64@1.20251125.0': 97 | resolution: {integrity: sha512-at6n/FomkftykWx0EqVLUZ0juUFz3ORtEPeBbW9ZZ3BQEyfVUtYfdcz/f1cN8Yyb7TE9ovF071P0mBRkx83ODw==} 98 | engines: {node: '>=16'} 99 | cpu: [x64] 100 | os: [linux] 101 | 102 | '@cloudflare/workerd-linux-arm64@1.20251125.0': 103 | resolution: {integrity: sha512-EiRn+jrNaIs1QveabXGHFoyn3s/l02ui6Yp3nssyNhtmtgviddtt8KObBfM1jQKjXTpZlunhwdN4Bxf4jhlOMw==} 104 | engines: {node: '>=16'} 105 | cpu: [arm64] 106 | os: [linux] 107 | 108 | '@cloudflare/workerd-windows-64@1.20251125.0': 109 | resolution: {integrity: sha512-6fdIsSeu65g++k8Y2DKzNKs0BkoU+KKI6GAAVBOLh2vvVWWnCP1OgMdVb5JAdjDrjDT5i0GSQu0bgQ8fPsW6zw==} 110 | engines: {node: '>=16'} 111 | cpu: [x64] 112 | os: [win32] 113 | 114 | '@cspotcode/source-map-support@0.8.1': 115 | resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} 116 | engines: {node: '>=12'} 117 | 118 | '@emnapi/runtime@1.7.1': 119 | resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==} 120 | 121 | '@esbuild/aix-ppc64@0.25.12': 122 | resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==} 123 | engines: {node: '>=18'} 124 | cpu: [ppc64] 125 | os: [aix] 126 | 127 | '@esbuild/aix-ppc64@0.25.4': 128 | resolution: {integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==} 129 | engines: {node: '>=18'} 130 | cpu: [ppc64] 131 | os: [aix] 132 | 133 | '@esbuild/android-arm64@0.25.12': 134 | resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} 135 | engines: {node: '>=18'} 136 | cpu: [arm64] 137 | os: [android] 138 | 139 | '@esbuild/android-arm64@0.25.4': 140 | resolution: {integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==} 141 | engines: {node: '>=18'} 142 | cpu: [arm64] 143 | os: [android] 144 | 145 | '@esbuild/android-arm@0.25.12': 146 | resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} 147 | engines: {node: '>=18'} 148 | cpu: [arm] 149 | os: [android] 150 | 151 | '@esbuild/android-arm@0.25.4': 152 | resolution: {integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==} 153 | engines: {node: '>=18'} 154 | cpu: [arm] 155 | os: [android] 156 | 157 | '@esbuild/android-x64@0.25.12': 158 | resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==} 159 | engines: {node: '>=18'} 160 | cpu: [x64] 161 | os: [android] 162 | 163 | '@esbuild/android-x64@0.25.4': 164 | resolution: {integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==} 165 | engines: {node: '>=18'} 166 | cpu: [x64] 167 | os: [android] 168 | 169 | '@esbuild/darwin-arm64@0.25.12': 170 | resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} 171 | engines: {node: '>=18'} 172 | cpu: [arm64] 173 | os: [darwin] 174 | 175 | '@esbuild/darwin-arm64@0.25.4': 176 | resolution: {integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==} 177 | engines: {node: '>=18'} 178 | cpu: [arm64] 179 | os: [darwin] 180 | 181 | '@esbuild/darwin-x64@0.25.12': 182 | resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} 183 | engines: {node: '>=18'} 184 | cpu: [x64] 185 | os: [darwin] 186 | 187 | '@esbuild/darwin-x64@0.25.4': 188 | resolution: {integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==} 189 | engines: {node: '>=18'} 190 | cpu: [x64] 191 | os: [darwin] 192 | 193 | '@esbuild/freebsd-arm64@0.25.12': 194 | resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} 195 | engines: {node: '>=18'} 196 | cpu: [arm64] 197 | os: [freebsd] 198 | 199 | '@esbuild/freebsd-arm64@0.25.4': 200 | resolution: {integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==} 201 | engines: {node: '>=18'} 202 | cpu: [arm64] 203 | os: [freebsd] 204 | 205 | '@esbuild/freebsd-x64@0.25.12': 206 | resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} 207 | engines: {node: '>=18'} 208 | cpu: [x64] 209 | os: [freebsd] 210 | 211 | '@esbuild/freebsd-x64@0.25.4': 212 | resolution: {integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==} 213 | engines: {node: '>=18'} 214 | cpu: [x64] 215 | os: [freebsd] 216 | 217 | '@esbuild/linux-arm64@0.25.12': 218 | resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} 219 | engines: {node: '>=18'} 220 | cpu: [arm64] 221 | os: [linux] 222 | 223 | '@esbuild/linux-arm64@0.25.4': 224 | resolution: {integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==} 225 | engines: {node: '>=18'} 226 | cpu: [arm64] 227 | os: [linux] 228 | 229 | '@esbuild/linux-arm@0.25.12': 230 | resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} 231 | engines: {node: '>=18'} 232 | cpu: [arm] 233 | os: [linux] 234 | 235 | '@esbuild/linux-arm@0.25.4': 236 | resolution: {integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==} 237 | engines: {node: '>=18'} 238 | cpu: [arm] 239 | os: [linux] 240 | 241 | '@esbuild/linux-ia32@0.25.12': 242 | resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==} 243 | engines: {node: '>=18'} 244 | cpu: [ia32] 245 | os: [linux] 246 | 247 | '@esbuild/linux-ia32@0.25.4': 248 | resolution: {integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==} 249 | engines: {node: '>=18'} 250 | cpu: [ia32] 251 | os: [linux] 252 | 253 | '@esbuild/linux-loong64@0.25.12': 254 | resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==} 255 | engines: {node: '>=18'} 256 | cpu: [loong64] 257 | os: [linux] 258 | 259 | '@esbuild/linux-loong64@0.25.4': 260 | resolution: {integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==} 261 | engines: {node: '>=18'} 262 | cpu: [loong64] 263 | os: [linux] 264 | 265 | '@esbuild/linux-mips64el@0.25.12': 266 | resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} 267 | engines: {node: '>=18'} 268 | cpu: [mips64el] 269 | os: [linux] 270 | 271 | '@esbuild/linux-mips64el@0.25.4': 272 | resolution: {integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==} 273 | engines: {node: '>=18'} 274 | cpu: [mips64el] 275 | os: [linux] 276 | 277 | '@esbuild/linux-ppc64@0.25.12': 278 | resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==} 279 | engines: {node: '>=18'} 280 | cpu: [ppc64] 281 | os: [linux] 282 | 283 | '@esbuild/linux-ppc64@0.25.4': 284 | resolution: {integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==} 285 | engines: {node: '>=18'} 286 | cpu: [ppc64] 287 | os: [linux] 288 | 289 | '@esbuild/linux-riscv64@0.25.12': 290 | resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} 291 | engines: {node: '>=18'} 292 | cpu: [riscv64] 293 | os: [linux] 294 | 295 | '@esbuild/linux-riscv64@0.25.4': 296 | resolution: {integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==} 297 | engines: {node: '>=18'} 298 | cpu: [riscv64] 299 | os: [linux] 300 | 301 | '@esbuild/linux-s390x@0.25.12': 302 | resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} 303 | engines: {node: '>=18'} 304 | cpu: [s390x] 305 | os: [linux] 306 | 307 | '@esbuild/linux-s390x@0.25.4': 308 | resolution: {integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==} 309 | engines: {node: '>=18'} 310 | cpu: [s390x] 311 | os: [linux] 312 | 313 | '@esbuild/linux-x64@0.25.12': 314 | resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==} 315 | engines: {node: '>=18'} 316 | cpu: [x64] 317 | os: [linux] 318 | 319 | '@esbuild/linux-x64@0.25.4': 320 | resolution: {integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==} 321 | engines: {node: '>=18'} 322 | cpu: [x64] 323 | os: [linux] 324 | 325 | '@esbuild/netbsd-arm64@0.25.12': 326 | resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} 327 | engines: {node: '>=18'} 328 | cpu: [arm64] 329 | os: [netbsd] 330 | 331 | '@esbuild/netbsd-arm64@0.25.4': 332 | resolution: {integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==} 333 | engines: {node: '>=18'} 334 | cpu: [arm64] 335 | os: [netbsd] 336 | 337 | '@esbuild/netbsd-x64@0.25.12': 338 | resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} 339 | engines: {node: '>=18'} 340 | cpu: [x64] 341 | os: [netbsd] 342 | 343 | '@esbuild/netbsd-x64@0.25.4': 344 | resolution: {integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==} 345 | engines: {node: '>=18'} 346 | cpu: [x64] 347 | os: [netbsd] 348 | 349 | '@esbuild/openbsd-arm64@0.25.12': 350 | resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} 351 | engines: {node: '>=18'} 352 | cpu: [arm64] 353 | os: [openbsd] 354 | 355 | '@esbuild/openbsd-arm64@0.25.4': 356 | resolution: {integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==} 357 | engines: {node: '>=18'} 358 | cpu: [arm64] 359 | os: [openbsd] 360 | 361 | '@esbuild/openbsd-x64@0.25.12': 362 | resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} 363 | engines: {node: '>=18'} 364 | cpu: [x64] 365 | os: [openbsd] 366 | 367 | '@esbuild/openbsd-x64@0.25.4': 368 | resolution: {integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==} 369 | engines: {node: '>=18'} 370 | cpu: [x64] 371 | os: [openbsd] 372 | 373 | '@esbuild/openharmony-arm64@0.25.12': 374 | resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} 375 | engines: {node: '>=18'} 376 | cpu: [arm64] 377 | os: [openharmony] 378 | 379 | '@esbuild/sunos-x64@0.25.12': 380 | resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} 381 | engines: {node: '>=18'} 382 | cpu: [x64] 383 | os: [sunos] 384 | 385 | '@esbuild/sunos-x64@0.25.4': 386 | resolution: {integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==} 387 | engines: {node: '>=18'} 388 | cpu: [x64] 389 | os: [sunos] 390 | 391 | '@esbuild/win32-arm64@0.25.12': 392 | resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} 393 | engines: {node: '>=18'} 394 | cpu: [arm64] 395 | os: [win32] 396 | 397 | '@esbuild/win32-arm64@0.25.4': 398 | resolution: {integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==} 399 | engines: {node: '>=18'} 400 | cpu: [arm64] 401 | os: [win32] 402 | 403 | '@esbuild/win32-ia32@0.25.12': 404 | resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} 405 | engines: {node: '>=18'} 406 | cpu: [ia32] 407 | os: [win32] 408 | 409 | '@esbuild/win32-ia32@0.25.4': 410 | resolution: {integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==} 411 | engines: {node: '>=18'} 412 | cpu: [ia32] 413 | os: [win32] 414 | 415 | '@esbuild/win32-x64@0.25.12': 416 | resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} 417 | engines: {node: '>=18'} 418 | cpu: [x64] 419 | os: [win32] 420 | 421 | '@esbuild/win32-x64@0.25.4': 422 | resolution: {integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==} 423 | engines: {node: '>=18'} 424 | cpu: [x64] 425 | os: [win32] 426 | 427 | '@img/colour@1.0.0': 428 | resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==} 429 | engines: {node: '>=18'} 430 | 431 | '@img/sharp-darwin-arm64@0.33.5': 432 | resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} 433 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 434 | cpu: [arm64] 435 | os: [darwin] 436 | 437 | '@img/sharp-darwin-arm64@0.34.5': 438 | resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==} 439 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 440 | cpu: [arm64] 441 | os: [darwin] 442 | 443 | '@img/sharp-darwin-x64@0.33.5': 444 | resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} 445 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 446 | cpu: [x64] 447 | os: [darwin] 448 | 449 | '@img/sharp-darwin-x64@0.34.5': 450 | resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==} 451 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 452 | cpu: [x64] 453 | os: [darwin] 454 | 455 | '@img/sharp-libvips-darwin-arm64@1.0.4': 456 | resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} 457 | cpu: [arm64] 458 | os: [darwin] 459 | 460 | '@img/sharp-libvips-darwin-arm64@1.2.4': 461 | resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==} 462 | cpu: [arm64] 463 | os: [darwin] 464 | 465 | '@img/sharp-libvips-darwin-x64@1.0.4': 466 | resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} 467 | cpu: [x64] 468 | os: [darwin] 469 | 470 | '@img/sharp-libvips-darwin-x64@1.2.4': 471 | resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==} 472 | cpu: [x64] 473 | os: [darwin] 474 | 475 | '@img/sharp-libvips-linux-arm64@1.0.4': 476 | resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} 477 | cpu: [arm64] 478 | os: [linux] 479 | 480 | '@img/sharp-libvips-linux-arm64@1.2.4': 481 | resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==} 482 | cpu: [arm64] 483 | os: [linux] 484 | 485 | '@img/sharp-libvips-linux-arm@1.0.5': 486 | resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} 487 | cpu: [arm] 488 | os: [linux] 489 | 490 | '@img/sharp-libvips-linux-arm@1.2.4': 491 | resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==} 492 | cpu: [arm] 493 | os: [linux] 494 | 495 | '@img/sharp-libvips-linux-ppc64@1.2.4': 496 | resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==} 497 | cpu: [ppc64] 498 | os: [linux] 499 | 500 | '@img/sharp-libvips-linux-riscv64@1.2.4': 501 | resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==} 502 | cpu: [riscv64] 503 | os: [linux] 504 | 505 | '@img/sharp-libvips-linux-s390x@1.0.4': 506 | resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} 507 | cpu: [s390x] 508 | os: [linux] 509 | 510 | '@img/sharp-libvips-linux-s390x@1.2.4': 511 | resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==} 512 | cpu: [s390x] 513 | os: [linux] 514 | 515 | '@img/sharp-libvips-linux-x64@1.0.4': 516 | resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} 517 | cpu: [x64] 518 | os: [linux] 519 | 520 | '@img/sharp-libvips-linux-x64@1.2.4': 521 | resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==} 522 | cpu: [x64] 523 | os: [linux] 524 | 525 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 526 | resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} 527 | cpu: [arm64] 528 | os: [linux] 529 | 530 | '@img/sharp-libvips-linuxmusl-arm64@1.2.4': 531 | resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==} 532 | cpu: [arm64] 533 | os: [linux] 534 | 535 | '@img/sharp-libvips-linuxmusl-x64@1.0.4': 536 | resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} 537 | cpu: [x64] 538 | os: [linux] 539 | 540 | '@img/sharp-libvips-linuxmusl-x64@1.2.4': 541 | resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==} 542 | cpu: [x64] 543 | os: [linux] 544 | 545 | '@img/sharp-linux-arm64@0.33.5': 546 | resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} 547 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 548 | cpu: [arm64] 549 | os: [linux] 550 | 551 | '@img/sharp-linux-arm64@0.34.5': 552 | resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==} 553 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 554 | cpu: [arm64] 555 | os: [linux] 556 | 557 | '@img/sharp-linux-arm@0.33.5': 558 | resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} 559 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 560 | cpu: [arm] 561 | os: [linux] 562 | 563 | '@img/sharp-linux-arm@0.34.5': 564 | resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==} 565 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 566 | cpu: [arm] 567 | os: [linux] 568 | 569 | '@img/sharp-linux-ppc64@0.34.5': 570 | resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==} 571 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 572 | cpu: [ppc64] 573 | os: [linux] 574 | 575 | '@img/sharp-linux-riscv64@0.34.5': 576 | resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==} 577 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 578 | cpu: [riscv64] 579 | os: [linux] 580 | 581 | '@img/sharp-linux-s390x@0.33.5': 582 | resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} 583 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 584 | cpu: [s390x] 585 | os: [linux] 586 | 587 | '@img/sharp-linux-s390x@0.34.5': 588 | resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==} 589 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 590 | cpu: [s390x] 591 | os: [linux] 592 | 593 | '@img/sharp-linux-x64@0.33.5': 594 | resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} 595 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 596 | cpu: [x64] 597 | os: [linux] 598 | 599 | '@img/sharp-linux-x64@0.34.5': 600 | resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==} 601 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 602 | cpu: [x64] 603 | os: [linux] 604 | 605 | '@img/sharp-linuxmusl-arm64@0.33.5': 606 | resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} 607 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 608 | cpu: [arm64] 609 | os: [linux] 610 | 611 | '@img/sharp-linuxmusl-arm64@0.34.5': 612 | resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==} 613 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 614 | cpu: [arm64] 615 | os: [linux] 616 | 617 | '@img/sharp-linuxmusl-x64@0.33.5': 618 | resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} 619 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 620 | cpu: [x64] 621 | os: [linux] 622 | 623 | '@img/sharp-linuxmusl-x64@0.34.5': 624 | resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==} 625 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 626 | cpu: [x64] 627 | os: [linux] 628 | 629 | '@img/sharp-wasm32@0.33.5': 630 | resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} 631 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 632 | cpu: [wasm32] 633 | 634 | '@img/sharp-wasm32@0.34.5': 635 | resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==} 636 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 637 | cpu: [wasm32] 638 | 639 | '@img/sharp-win32-arm64@0.34.5': 640 | resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==} 641 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 642 | cpu: [arm64] 643 | os: [win32] 644 | 645 | '@img/sharp-win32-ia32@0.33.5': 646 | resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} 647 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 648 | cpu: [ia32] 649 | os: [win32] 650 | 651 | '@img/sharp-win32-ia32@0.34.5': 652 | resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==} 653 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 654 | cpu: [ia32] 655 | os: [win32] 656 | 657 | '@img/sharp-win32-x64@0.33.5': 658 | resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} 659 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 660 | cpu: [x64] 661 | os: [win32] 662 | 663 | '@img/sharp-win32-x64@0.34.5': 664 | resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==} 665 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 666 | cpu: [x64] 667 | os: [win32] 668 | 669 | '@jridgewell/gen-mapping@0.3.13': 670 | resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} 671 | 672 | '@jridgewell/remapping@2.3.5': 673 | resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} 674 | 675 | '@jridgewell/resolve-uri@3.1.2': 676 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 677 | engines: {node: '>=6.0.0'} 678 | 679 | '@jridgewell/sourcemap-codec@1.5.5': 680 | resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 681 | 682 | '@jridgewell/trace-mapping@0.3.31': 683 | resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} 684 | 685 | '@jridgewell/trace-mapping@0.3.9': 686 | resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} 687 | 688 | '@oslojs/encoding@1.1.0': 689 | resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} 690 | 691 | '@poppinss/colors@4.1.5': 692 | resolution: {integrity: sha512-FvdDqtcRCtz6hThExcFOgW0cWX+xwSMWcRuQe5ZEb2m7cVQOAVZOIMt+/v9RxGiD9/OY16qJBXK4CVKWAPalBw==} 693 | 694 | '@poppinss/dumper@0.6.5': 695 | resolution: {integrity: sha512-NBdYIb90J7LfOI32dOewKI1r7wnkiH6m920puQ3qHUeZkxNkQiFnXVWoE6YtFSv6QOiPPf7ys6i+HWWecDz7sw==} 696 | 697 | '@poppinss/exception@1.2.2': 698 | resolution: {integrity: sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg==} 699 | 700 | '@rollup/pluginutils@5.3.0': 701 | resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} 702 | engines: {node: '>=14.0.0'} 703 | peerDependencies: 704 | rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 705 | peerDependenciesMeta: 706 | rollup: 707 | optional: true 708 | 709 | '@rollup/rollup-android-arm-eabi@4.53.3': 710 | resolution: {integrity: sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==} 711 | cpu: [arm] 712 | os: [android] 713 | 714 | '@rollup/rollup-android-arm64@4.53.3': 715 | resolution: {integrity: sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==} 716 | cpu: [arm64] 717 | os: [android] 718 | 719 | '@rollup/rollup-darwin-arm64@4.53.3': 720 | resolution: {integrity: sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==} 721 | cpu: [arm64] 722 | os: [darwin] 723 | 724 | '@rollup/rollup-darwin-x64@4.53.3': 725 | resolution: {integrity: sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==} 726 | cpu: [x64] 727 | os: [darwin] 728 | 729 | '@rollup/rollup-freebsd-arm64@4.53.3': 730 | resolution: {integrity: sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==} 731 | cpu: [arm64] 732 | os: [freebsd] 733 | 734 | '@rollup/rollup-freebsd-x64@4.53.3': 735 | resolution: {integrity: sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==} 736 | cpu: [x64] 737 | os: [freebsd] 738 | 739 | '@rollup/rollup-linux-arm-gnueabihf@4.53.3': 740 | resolution: {integrity: sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==} 741 | cpu: [arm] 742 | os: [linux] 743 | 744 | '@rollup/rollup-linux-arm-musleabihf@4.53.3': 745 | resolution: {integrity: sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==} 746 | cpu: [arm] 747 | os: [linux] 748 | 749 | '@rollup/rollup-linux-arm64-gnu@4.53.3': 750 | resolution: {integrity: sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==} 751 | cpu: [arm64] 752 | os: [linux] 753 | 754 | '@rollup/rollup-linux-arm64-musl@4.53.3': 755 | resolution: {integrity: sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==} 756 | cpu: [arm64] 757 | os: [linux] 758 | 759 | '@rollup/rollup-linux-loong64-gnu@4.53.3': 760 | resolution: {integrity: sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==} 761 | cpu: [loong64] 762 | os: [linux] 763 | 764 | '@rollup/rollup-linux-ppc64-gnu@4.53.3': 765 | resolution: {integrity: sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==} 766 | cpu: [ppc64] 767 | os: [linux] 768 | 769 | '@rollup/rollup-linux-riscv64-gnu@4.53.3': 770 | resolution: {integrity: sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==} 771 | cpu: [riscv64] 772 | os: [linux] 773 | 774 | '@rollup/rollup-linux-riscv64-musl@4.53.3': 775 | resolution: {integrity: sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==} 776 | cpu: [riscv64] 777 | os: [linux] 778 | 779 | '@rollup/rollup-linux-s390x-gnu@4.53.3': 780 | resolution: {integrity: sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==} 781 | cpu: [s390x] 782 | os: [linux] 783 | 784 | '@rollup/rollup-linux-x64-gnu@4.53.3': 785 | resolution: {integrity: sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==} 786 | cpu: [x64] 787 | os: [linux] 788 | 789 | '@rollup/rollup-linux-x64-musl@4.53.3': 790 | resolution: {integrity: sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==} 791 | cpu: [x64] 792 | os: [linux] 793 | 794 | '@rollup/rollup-openharmony-arm64@4.53.3': 795 | resolution: {integrity: sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==} 796 | cpu: [arm64] 797 | os: [openharmony] 798 | 799 | '@rollup/rollup-win32-arm64-msvc@4.53.3': 800 | resolution: {integrity: sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==} 801 | cpu: [arm64] 802 | os: [win32] 803 | 804 | '@rollup/rollup-win32-ia32-msvc@4.53.3': 805 | resolution: {integrity: sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==} 806 | cpu: [ia32] 807 | os: [win32] 808 | 809 | '@rollup/rollup-win32-x64-gnu@4.53.3': 810 | resolution: {integrity: sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==} 811 | cpu: [x64] 812 | os: [win32] 813 | 814 | '@rollup/rollup-win32-x64-msvc@4.53.3': 815 | resolution: {integrity: sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==} 816 | cpu: [x64] 817 | os: [win32] 818 | 819 | '@shikijs/core@3.19.0': 820 | resolution: {integrity: sha512-L7SrRibU7ZoYi1/TrZsJOFAnnHyLTE1SwHG1yNWjZIVCqjOEmCSuK2ZO9thnRbJG6TOkPp+Z963JmpCNw5nzvA==} 821 | 822 | '@shikijs/engine-javascript@3.19.0': 823 | resolution: {integrity: sha512-ZfWJNm2VMhKkQIKT9qXbs76RRcT0SF/CAvEz0+RkpUDAoDaCx0uFdCGzSRiD9gSlhm6AHkjdieOBJMaO2eC1rQ==} 824 | 825 | '@shikijs/engine-oniguruma@3.19.0': 826 | resolution: {integrity: sha512-1hRxtYIJfJSZeM5ivbUXv9hcJP3PWRo5prG/V2sWwiubUKTa+7P62d2qxCW8jiVFX4pgRHhnHNp+qeR7Xl+6kg==} 827 | 828 | '@shikijs/langs@3.19.0': 829 | resolution: {integrity: sha512-dBMFzzg1QiXqCVQ5ONc0z2ebyoi5BKz+MtfByLm0o5/nbUu3Iz8uaTCa5uzGiscQKm7lVShfZHU1+OG3t5hgwg==} 830 | 831 | '@shikijs/themes@3.19.0': 832 | resolution: {integrity: sha512-H36qw+oh91Y0s6OlFfdSuQ0Ld+5CgB/VE6gNPK+Hk4VRbVG/XQgkjnt4KzfnnoO6tZPtKJKHPjwebOCfjd6F8A==} 833 | 834 | '@shikijs/types@3.19.0': 835 | resolution: {integrity: sha512-Z2hdeEQlzuntf/BZpFG8a+Fsw9UVXdML7w0o3TgSXV3yNESGon+bs9ITkQb3Ki7zxoXOOu5oJWqZ2uto06V9iQ==} 836 | 837 | '@shikijs/vscode-textmate@10.0.2': 838 | resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} 839 | 840 | '@sindresorhus/is@7.1.1': 841 | resolution: {integrity: sha512-rO92VvpgMc3kfiTjGT52LEtJ8Yc5kCWhZjLQ3LwlA4pSgPpQO7bVpYXParOD8Jwf+cVQECJo3yP/4I8aZtUQTQ==} 842 | engines: {node: '>=18'} 843 | 844 | '@speed-highlight/core@1.2.12': 845 | resolution: {integrity: sha512-uilwrK0Ygyri5dToHYdZSjcvpS2ZwX0w5aSt3GCEN9hrjxWCoeV4Z2DTXuxjwbntaLQIEEAlCeNQss5SoHvAEA==} 846 | 847 | '@swc/helpers@0.5.17': 848 | resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} 849 | 850 | '@tailwindcss/node@4.1.17': 851 | resolution: {integrity: sha512-csIkHIgLb3JisEFQ0vxr2Y57GUNYh447C8xzwj89U/8fdW8LhProdxvnVH6U8M2Y73QKiTIH+LWbK3V2BBZsAg==} 852 | 853 | '@tailwindcss/oxide-android-arm64@4.1.17': 854 | resolution: {integrity: sha512-BMqpkJHgOZ5z78qqiGE6ZIRExyaHyuxjgrJ6eBO5+hfrfGkuya0lYfw8fRHG77gdTjWkNWEEm+qeG2cDMxArLQ==} 855 | engines: {node: '>= 10'} 856 | cpu: [arm64] 857 | os: [android] 858 | 859 | '@tailwindcss/oxide-darwin-arm64@4.1.17': 860 | resolution: {integrity: sha512-EquyumkQweUBNk1zGEU/wfZo2qkp/nQKRZM8bUYO0J+Lums5+wl2CcG1f9BgAjn/u9pJzdYddHWBiFXJTcxmOg==} 861 | engines: {node: '>= 10'} 862 | cpu: [arm64] 863 | os: [darwin] 864 | 865 | '@tailwindcss/oxide-darwin-x64@4.1.17': 866 | resolution: {integrity: sha512-gdhEPLzke2Pog8s12oADwYu0IAw04Y2tlmgVzIN0+046ytcgx8uZmCzEg4VcQh+AHKiS7xaL8kGo/QTiNEGRog==} 867 | engines: {node: '>= 10'} 868 | cpu: [x64] 869 | os: [darwin] 870 | 871 | '@tailwindcss/oxide-freebsd-x64@4.1.17': 872 | resolution: {integrity: sha512-hxGS81KskMxML9DXsaXT1H0DyA+ZBIbyG/sSAjWNe2EDl7TkPOBI42GBV3u38itzGUOmFfCzk1iAjDXds8Oh0g==} 873 | engines: {node: '>= 10'} 874 | cpu: [x64] 875 | os: [freebsd] 876 | 877 | '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.17': 878 | resolution: {integrity: sha512-k7jWk5E3ldAdw0cNglhjSgv501u7yrMf8oeZ0cElhxU6Y2o7f8yqelOp3fhf7evjIS6ujTI3U8pKUXV2I4iXHQ==} 879 | engines: {node: '>= 10'} 880 | cpu: [arm] 881 | os: [linux] 882 | 883 | '@tailwindcss/oxide-linux-arm64-gnu@4.1.17': 884 | resolution: {integrity: sha512-HVDOm/mxK6+TbARwdW17WrgDYEGzmoYayrCgmLEw7FxTPLcp/glBisuyWkFz/jb7ZfiAXAXUACfyItn+nTgsdQ==} 885 | engines: {node: '>= 10'} 886 | cpu: [arm64] 887 | os: [linux] 888 | 889 | '@tailwindcss/oxide-linux-arm64-musl@4.1.17': 890 | resolution: {integrity: sha512-HvZLfGr42i5anKtIeQzxdkw/wPqIbpeZqe7vd3V9vI3RQxe3xU1fLjss0TjyhxWcBaipk7NYwSrwTwK1hJARMg==} 891 | engines: {node: '>= 10'} 892 | cpu: [arm64] 893 | os: [linux] 894 | 895 | '@tailwindcss/oxide-linux-x64-gnu@4.1.17': 896 | resolution: {integrity: sha512-M3XZuORCGB7VPOEDH+nzpJ21XPvK5PyjlkSFkFziNHGLc5d6g3di2McAAblmaSUNl8IOmzYwLx9NsE7bplNkwQ==} 897 | engines: {node: '>= 10'} 898 | cpu: [x64] 899 | os: [linux] 900 | 901 | '@tailwindcss/oxide-linux-x64-musl@4.1.17': 902 | resolution: {integrity: sha512-k7f+pf9eXLEey4pBlw+8dgfJHY4PZ5qOUFDyNf7SI6lHjQ9Zt7+NcscjpwdCEbYi6FI5c2KDTDWyf2iHcCSyyQ==} 903 | engines: {node: '>= 10'} 904 | cpu: [x64] 905 | os: [linux] 906 | 907 | '@tailwindcss/oxide-wasm32-wasi@4.1.17': 908 | resolution: {integrity: sha512-cEytGqSSoy7zK4JRWiTCx43FsKP/zGr0CsuMawhH67ONlH+T79VteQeJQRO/X7L0juEUA8ZyuYikcRBf0vsxhg==} 909 | engines: {node: '>=14.0.0'} 910 | cpu: [wasm32] 911 | bundledDependencies: 912 | - '@napi-rs/wasm-runtime' 913 | - '@emnapi/core' 914 | - '@emnapi/runtime' 915 | - '@tybys/wasm-util' 916 | - '@emnapi/wasi-threads' 917 | - tslib 918 | 919 | '@tailwindcss/oxide-win32-arm64-msvc@4.1.17': 920 | resolution: {integrity: sha512-JU5AHr7gKbZlOGvMdb4722/0aYbU+tN6lv1kONx0JK2cGsh7g148zVWLM0IKR3NeKLv+L90chBVYcJ8uJWbC9A==} 921 | engines: {node: '>= 10'} 922 | cpu: [arm64] 923 | os: [win32] 924 | 925 | '@tailwindcss/oxide-win32-x64-msvc@4.1.17': 926 | resolution: {integrity: sha512-SKWM4waLuqx0IH+FMDUw6R66Hu4OuTALFgnleKbqhgGU30DY20NORZMZUKgLRjQXNN2TLzKvh48QXTig4h4bGw==} 927 | engines: {node: '>= 10'} 928 | cpu: [x64] 929 | os: [win32] 930 | 931 | '@tailwindcss/oxide@4.1.17': 932 | resolution: {integrity: sha512-F0F7d01fmkQhsTjXezGBLdrl1KresJTcI3DB8EkScCldyKp3Msz4hub4uyYaVnk88BAS1g5DQjjF6F5qczheLA==} 933 | engines: {node: '>= 10'} 934 | 935 | '@tailwindcss/vite@4.1.17': 936 | resolution: {integrity: sha512-4+9w8ZHOiGnpcGI6z1TVVfWaX/koK7fKeSYF3qlYg2xpBtbteP2ddBxiarL+HVgfSJGeK5RIxRQmKm4rTJJAwA==} 937 | peerDependencies: 938 | vite: ^5.2.0 || ^6 || ^7 939 | 940 | '@types/debug@4.1.12': 941 | resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 942 | 943 | '@types/estree@1.0.8': 944 | resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} 945 | 946 | '@types/fontkit@2.0.8': 947 | resolution: {integrity: sha512-wN+8bYxIpJf+5oZdrdtaX04qUuWHcKxcDEgRS9Qm9ZClSHjzEn13SxUC+5eRM+4yXIeTYk8mTzLAWGF64847ew==} 948 | 949 | '@types/hast@3.0.4': 950 | resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} 951 | 952 | '@types/mdast@4.0.4': 953 | resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 954 | 955 | '@types/ms@2.1.0': 956 | resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} 957 | 958 | '@types/nlcst@2.0.3': 959 | resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} 960 | 961 | '@types/node@17.0.45': 962 | resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} 963 | 964 | '@types/node@24.10.1': 965 | resolution: {integrity: sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==} 966 | 967 | '@types/sax@1.2.7': 968 | resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} 969 | 970 | '@types/unist@3.0.3': 971 | resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 972 | 973 | '@ungap/structured-clone@1.3.0': 974 | resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} 975 | 976 | acorn-walk@8.3.2: 977 | resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} 978 | engines: {node: '>=0.4.0'} 979 | 980 | acorn@8.14.0: 981 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 982 | engines: {node: '>=0.4.0'} 983 | hasBin: true 984 | 985 | acorn@8.15.0: 986 | resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} 987 | engines: {node: '>=0.4.0'} 988 | hasBin: true 989 | 990 | ansi-align@3.0.1: 991 | resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} 992 | 993 | ansi-regex@5.0.1: 994 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 995 | engines: {node: '>=8'} 996 | 997 | ansi-regex@6.2.2: 998 | resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} 999 | engines: {node: '>=12'} 1000 | 1001 | ansi-styles@6.2.3: 1002 | resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} 1003 | engines: {node: '>=12'} 1004 | 1005 | anymatch@3.1.3: 1006 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 1007 | engines: {node: '>= 8'} 1008 | 1009 | arg@5.0.2: 1010 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 1011 | 1012 | argparse@2.0.1: 1013 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 1014 | 1015 | aria-query@5.3.2: 1016 | resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 1017 | engines: {node: '>= 0.4'} 1018 | 1019 | array-iterate@2.0.1: 1020 | resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} 1021 | 1022 | astro@5.16.3: 1023 | resolution: {integrity: sha512-KzDk41F9Dspf5fM/Ls4XZhV4/csjJcWBrlenbnp5V3NGwU1zEaJz/HIyrdKdf5yw+FgwCeD2+Yos1Xkx9gnI0A==} 1024 | engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} 1025 | hasBin: true 1026 | 1027 | axobject-query@4.1.0: 1028 | resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 1029 | engines: {node: '>= 0.4'} 1030 | 1031 | bail@2.0.2: 1032 | resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 1033 | 1034 | base-64@1.0.0: 1035 | resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} 1036 | 1037 | base64-js@1.5.1: 1038 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 1039 | 1040 | blake3-wasm@2.1.5: 1041 | resolution: {integrity: sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==} 1042 | 1043 | boolbase@1.0.0: 1044 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 1045 | 1046 | boxen@8.0.1: 1047 | resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} 1048 | engines: {node: '>=18'} 1049 | 1050 | brotli@1.3.3: 1051 | resolution: {integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==} 1052 | 1053 | camelcase@8.0.0: 1054 | resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} 1055 | engines: {node: '>=16'} 1056 | 1057 | ccount@2.0.1: 1058 | resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 1059 | 1060 | chalk@5.6.2: 1061 | resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} 1062 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 1063 | 1064 | character-entities-html4@2.1.0: 1065 | resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} 1066 | 1067 | character-entities-legacy@3.0.0: 1068 | resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 1069 | 1070 | character-entities@2.0.2: 1071 | resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 1072 | 1073 | chokidar@4.0.3: 1074 | resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 1075 | engines: {node: '>= 14.16.0'} 1076 | 1077 | ci-info@4.3.1: 1078 | resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==} 1079 | engines: {node: '>=8'} 1080 | 1081 | cli-boxes@3.0.0: 1082 | resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} 1083 | engines: {node: '>=10'} 1084 | 1085 | clone@2.1.2: 1086 | resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} 1087 | engines: {node: '>=0.8'} 1088 | 1089 | clsx@2.1.1: 1090 | resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 1091 | engines: {node: '>=6'} 1092 | 1093 | color-convert@2.0.1: 1094 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 1095 | engines: {node: '>=7.0.0'} 1096 | 1097 | color-name@1.1.4: 1098 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 1099 | 1100 | color-string@1.9.1: 1101 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} 1102 | 1103 | color@4.2.3: 1104 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} 1105 | engines: {node: '>=12.5.0'} 1106 | 1107 | comma-separated-tokens@2.0.3: 1108 | resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} 1109 | 1110 | commander@11.1.0: 1111 | resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} 1112 | engines: {node: '>=16'} 1113 | 1114 | common-ancestor-path@1.0.1: 1115 | resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} 1116 | 1117 | cookie-es@1.2.2: 1118 | resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} 1119 | 1120 | cookie@1.1.1: 1121 | resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==} 1122 | engines: {node: '>=18'} 1123 | 1124 | crossws@0.3.5: 1125 | resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} 1126 | 1127 | css-select@5.2.2: 1128 | resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==} 1129 | 1130 | css-tree@2.2.1: 1131 | resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} 1132 | engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} 1133 | 1134 | css-tree@3.1.0: 1135 | resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==} 1136 | engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} 1137 | 1138 | css-what@6.2.2: 1139 | resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} 1140 | engines: {node: '>= 6'} 1141 | 1142 | cssesc@3.0.0: 1143 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 1144 | engines: {node: '>=4'} 1145 | hasBin: true 1146 | 1147 | csso@5.0.5: 1148 | resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} 1149 | engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} 1150 | 1151 | debug@4.4.3: 1152 | resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} 1153 | engines: {node: '>=6.0'} 1154 | peerDependencies: 1155 | supports-color: '*' 1156 | peerDependenciesMeta: 1157 | supports-color: 1158 | optional: true 1159 | 1160 | decode-named-character-reference@1.2.0: 1161 | resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==} 1162 | 1163 | defu@6.1.4: 1164 | resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 1165 | 1166 | dequal@2.0.3: 1167 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 1168 | engines: {node: '>=6'} 1169 | 1170 | destr@2.0.5: 1171 | resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} 1172 | 1173 | detect-libc@2.1.2: 1174 | resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} 1175 | engines: {node: '>=8'} 1176 | 1177 | deterministic-object-hash@2.0.2: 1178 | resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} 1179 | engines: {node: '>=18'} 1180 | 1181 | devalue@5.5.0: 1182 | resolution: {integrity: sha512-69sM5yrHfFLJt0AZ9QqZXGCPfJ7fQjvpln3Rq5+PS03LD32Ost1Q9N+eEnaQwGRIriKkMImXD56ocjQmfjbV3w==} 1183 | 1184 | devlop@1.1.0: 1185 | resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 1186 | 1187 | dfa@1.2.0: 1188 | resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==} 1189 | 1190 | diff@5.2.0: 1191 | resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} 1192 | engines: {node: '>=0.3.1'} 1193 | 1194 | dlv@1.1.3: 1195 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 1196 | 1197 | dom-serializer@2.0.0: 1198 | resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} 1199 | 1200 | domelementtype@2.3.0: 1201 | resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} 1202 | 1203 | domhandler@5.0.3: 1204 | resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} 1205 | engines: {node: '>= 4'} 1206 | 1207 | domutils@3.2.2: 1208 | resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} 1209 | 1210 | dset@3.1.4: 1211 | resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} 1212 | engines: {node: '>=4'} 1213 | 1214 | emoji-regex@10.6.0: 1215 | resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} 1216 | 1217 | emoji-regex@8.0.0: 1218 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1219 | 1220 | enhanced-resolve@5.18.3: 1221 | resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==} 1222 | engines: {node: '>=10.13.0'} 1223 | 1224 | entities@4.5.0: 1225 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 1226 | engines: {node: '>=0.12'} 1227 | 1228 | entities@6.0.1: 1229 | resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} 1230 | engines: {node: '>=0.12'} 1231 | 1232 | error-stack-parser-es@1.0.5: 1233 | resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==} 1234 | 1235 | es-module-lexer@1.7.0: 1236 | resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} 1237 | 1238 | esbuild@0.25.12: 1239 | resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} 1240 | engines: {node: '>=18'} 1241 | hasBin: true 1242 | 1243 | esbuild@0.25.4: 1244 | resolution: {integrity: sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==} 1245 | engines: {node: '>=18'} 1246 | hasBin: true 1247 | 1248 | escape-string-regexp@5.0.0: 1249 | resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 1250 | engines: {node: '>=12'} 1251 | 1252 | estree-walker@2.0.2: 1253 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 1254 | 1255 | estree-walker@3.0.3: 1256 | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 1257 | 1258 | eventemitter3@5.0.1: 1259 | resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 1260 | 1261 | exit-hook@2.2.1: 1262 | resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==} 1263 | engines: {node: '>=6'} 1264 | 1265 | extend@3.0.2: 1266 | resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 1267 | 1268 | fast-deep-equal@3.1.3: 1269 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1270 | 1271 | fdir@6.5.0: 1272 | resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} 1273 | engines: {node: '>=12.0.0'} 1274 | peerDependencies: 1275 | picomatch: ^3 || ^4 1276 | peerDependenciesMeta: 1277 | picomatch: 1278 | optional: true 1279 | 1280 | flattie@1.1.1: 1281 | resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} 1282 | engines: {node: '>=8'} 1283 | 1284 | fontace@0.3.1: 1285 | resolution: {integrity: sha512-9f5g4feWT1jWT8+SbL85aLIRLIXUaDygaM2xPXRmzPYxrOMNok79Lr3FGJoKVNKibE0WCunNiEVG2mwuE+2qEg==} 1286 | 1287 | fontkit@2.0.4: 1288 | resolution: {integrity: sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==} 1289 | 1290 | fsevents@2.3.3: 1291 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1292 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1293 | os: [darwin] 1294 | 1295 | get-east-asian-width@1.4.0: 1296 | resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==} 1297 | engines: {node: '>=18'} 1298 | 1299 | github-slugger@2.0.0: 1300 | resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} 1301 | 1302 | glob-to-regexp@0.4.1: 1303 | resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} 1304 | 1305 | graceful-fs@4.2.11: 1306 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1307 | 1308 | h3@1.15.4: 1309 | resolution: {integrity: sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==} 1310 | 1311 | hast-util-from-html@2.0.3: 1312 | resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} 1313 | 1314 | hast-util-from-parse5@8.0.3: 1315 | resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} 1316 | 1317 | hast-util-is-element@3.0.0: 1318 | resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} 1319 | 1320 | hast-util-parse-selector@4.0.0: 1321 | resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} 1322 | 1323 | hast-util-raw@9.1.0: 1324 | resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} 1325 | 1326 | hast-util-to-html@9.0.5: 1327 | resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} 1328 | 1329 | hast-util-to-parse5@8.0.0: 1330 | resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} 1331 | 1332 | hast-util-to-text@4.0.2: 1333 | resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} 1334 | 1335 | hast-util-whitespace@3.0.0: 1336 | resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} 1337 | 1338 | hastscript@9.0.1: 1339 | resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} 1340 | 1341 | html-escaper@3.0.3: 1342 | resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} 1343 | 1344 | html-void-elements@3.0.0: 1345 | resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} 1346 | 1347 | http-cache-semantics@4.2.0: 1348 | resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} 1349 | 1350 | import-meta-resolve@4.2.0: 1351 | resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==} 1352 | 1353 | iron-webcrypto@1.2.1: 1354 | resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} 1355 | 1356 | is-arrayish@0.3.4: 1357 | resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==} 1358 | 1359 | is-docker@3.0.0: 1360 | resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 1361 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1362 | hasBin: true 1363 | 1364 | is-fullwidth-code-point@3.0.0: 1365 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1366 | engines: {node: '>=8'} 1367 | 1368 | is-inside-container@1.0.0: 1369 | resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 1370 | engines: {node: '>=14.16'} 1371 | hasBin: true 1372 | 1373 | is-plain-obj@4.1.0: 1374 | resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 1375 | engines: {node: '>=12'} 1376 | 1377 | is-wsl@3.1.0: 1378 | resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} 1379 | engines: {node: '>=16'} 1380 | 1381 | jiti@2.6.1: 1382 | resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} 1383 | hasBin: true 1384 | 1385 | js-yaml@4.1.1: 1386 | resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} 1387 | hasBin: true 1388 | 1389 | kleur@3.0.3: 1390 | resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 1391 | engines: {node: '>=6'} 1392 | 1393 | kleur@4.1.5: 1394 | resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 1395 | engines: {node: '>=6'} 1396 | 1397 | lightningcss-android-arm64@1.30.2: 1398 | resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==} 1399 | engines: {node: '>= 12.0.0'} 1400 | cpu: [arm64] 1401 | os: [android] 1402 | 1403 | lightningcss-darwin-arm64@1.30.2: 1404 | resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==} 1405 | engines: {node: '>= 12.0.0'} 1406 | cpu: [arm64] 1407 | os: [darwin] 1408 | 1409 | lightningcss-darwin-x64@1.30.2: 1410 | resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==} 1411 | engines: {node: '>= 12.0.0'} 1412 | cpu: [x64] 1413 | os: [darwin] 1414 | 1415 | lightningcss-freebsd-x64@1.30.2: 1416 | resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==} 1417 | engines: {node: '>= 12.0.0'} 1418 | cpu: [x64] 1419 | os: [freebsd] 1420 | 1421 | lightningcss-linux-arm-gnueabihf@1.30.2: 1422 | resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==} 1423 | engines: {node: '>= 12.0.0'} 1424 | cpu: [arm] 1425 | os: [linux] 1426 | 1427 | lightningcss-linux-arm64-gnu@1.30.2: 1428 | resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==} 1429 | engines: {node: '>= 12.0.0'} 1430 | cpu: [arm64] 1431 | os: [linux] 1432 | 1433 | lightningcss-linux-arm64-musl@1.30.2: 1434 | resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==} 1435 | engines: {node: '>= 12.0.0'} 1436 | cpu: [arm64] 1437 | os: [linux] 1438 | 1439 | lightningcss-linux-x64-gnu@1.30.2: 1440 | resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==} 1441 | engines: {node: '>= 12.0.0'} 1442 | cpu: [x64] 1443 | os: [linux] 1444 | 1445 | lightningcss-linux-x64-musl@1.30.2: 1446 | resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==} 1447 | engines: {node: '>= 12.0.0'} 1448 | cpu: [x64] 1449 | os: [linux] 1450 | 1451 | lightningcss-win32-arm64-msvc@1.30.2: 1452 | resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==} 1453 | engines: {node: '>= 12.0.0'} 1454 | cpu: [arm64] 1455 | os: [win32] 1456 | 1457 | lightningcss-win32-x64-msvc@1.30.2: 1458 | resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==} 1459 | engines: {node: '>= 12.0.0'} 1460 | cpu: [x64] 1461 | os: [win32] 1462 | 1463 | lightningcss@1.30.2: 1464 | resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==} 1465 | engines: {node: '>= 12.0.0'} 1466 | 1467 | longest-streak@3.1.0: 1468 | resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 1469 | 1470 | lru-cache@10.4.3: 1471 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 1472 | 1473 | magic-string@0.30.21: 1474 | resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} 1475 | 1476 | magicast@0.5.1: 1477 | resolution: {integrity: sha512-xrHS24IxaLrvuo613F719wvOIv9xPHFWQHuvGUBmPnCA/3MQxKI3b+r7n1jAoDHmsbC5bRhTZYR77invLAxVnw==} 1478 | 1479 | markdown-table@3.0.4: 1480 | resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} 1481 | 1482 | mdast-util-definitions@6.0.0: 1483 | resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} 1484 | 1485 | mdast-util-find-and-replace@3.0.2: 1486 | resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} 1487 | 1488 | mdast-util-from-markdown@2.0.2: 1489 | resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} 1490 | 1491 | mdast-util-gfm-autolink-literal@2.0.1: 1492 | resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 1493 | 1494 | mdast-util-gfm-footnote@2.1.0: 1495 | resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} 1496 | 1497 | mdast-util-gfm-strikethrough@2.0.0: 1498 | resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 1499 | 1500 | mdast-util-gfm-table@2.0.0: 1501 | resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 1502 | 1503 | mdast-util-gfm-task-list-item@2.0.0: 1504 | resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 1505 | 1506 | mdast-util-gfm@3.1.0: 1507 | resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} 1508 | 1509 | mdast-util-phrasing@4.1.0: 1510 | resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 1511 | 1512 | mdast-util-to-hast@13.2.1: 1513 | resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==} 1514 | 1515 | mdast-util-to-markdown@2.1.2: 1516 | resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 1517 | 1518 | mdast-util-to-string@4.0.0: 1519 | resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 1520 | 1521 | mdn-data@2.0.28: 1522 | resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} 1523 | 1524 | mdn-data@2.12.2: 1525 | resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} 1526 | 1527 | micromark-core-commonmark@2.0.3: 1528 | resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} 1529 | 1530 | micromark-extension-gfm-autolink-literal@2.1.0: 1531 | resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 1532 | 1533 | micromark-extension-gfm-footnote@2.1.0: 1534 | resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 1535 | 1536 | micromark-extension-gfm-strikethrough@2.1.0: 1537 | resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 1538 | 1539 | micromark-extension-gfm-table@2.1.1: 1540 | resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} 1541 | 1542 | micromark-extension-gfm-tagfilter@2.0.0: 1543 | resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 1544 | 1545 | micromark-extension-gfm-task-list-item@2.1.0: 1546 | resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 1547 | 1548 | micromark-extension-gfm@3.0.0: 1549 | resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 1550 | 1551 | micromark-factory-destination@2.0.1: 1552 | resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 1553 | 1554 | micromark-factory-label@2.0.1: 1555 | resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} 1556 | 1557 | micromark-factory-space@2.0.1: 1558 | resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 1559 | 1560 | micromark-factory-title@2.0.1: 1561 | resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} 1562 | 1563 | micromark-factory-whitespace@2.0.1: 1564 | resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 1565 | 1566 | micromark-util-character@2.1.1: 1567 | resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 1568 | 1569 | micromark-util-chunked@2.0.1: 1570 | resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 1571 | 1572 | micromark-util-classify-character@2.0.1: 1573 | resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} 1574 | 1575 | micromark-util-combine-extensions@2.0.1: 1576 | resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 1577 | 1578 | micromark-util-decode-numeric-character-reference@2.0.2: 1579 | resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} 1580 | 1581 | micromark-util-decode-string@2.0.1: 1582 | resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} 1583 | 1584 | micromark-util-encode@2.0.1: 1585 | resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 1586 | 1587 | micromark-util-html-tag-name@2.0.1: 1588 | resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 1589 | 1590 | micromark-util-normalize-identifier@2.0.1: 1591 | resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} 1592 | 1593 | micromark-util-resolve-all@2.0.1: 1594 | resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 1595 | 1596 | micromark-util-sanitize-uri@2.0.1: 1597 | resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 1598 | 1599 | micromark-util-subtokenize@2.1.0: 1600 | resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} 1601 | 1602 | micromark-util-symbol@2.0.1: 1603 | resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 1604 | 1605 | micromark-util-types@2.0.2: 1606 | resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} 1607 | 1608 | micromark@4.0.2: 1609 | resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} 1610 | 1611 | mime@3.0.0: 1612 | resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} 1613 | engines: {node: '>=10.0.0'} 1614 | hasBin: true 1615 | 1616 | miniflare@4.20251125.0: 1617 | resolution: {integrity: sha512-xY6deLx0Drt8GfGG2Fv0fHUocHAIG/Iv62Kl36TPfDzgq7/+DQ5gYNisxnmyISQdA/sm7kOvn2XRBncxjWYrLg==} 1618 | engines: {node: '>=18.0.0'} 1619 | hasBin: true 1620 | 1621 | mrmime@2.0.1: 1622 | resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} 1623 | engines: {node: '>=10'} 1624 | 1625 | ms@2.1.3: 1626 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1627 | 1628 | nanoid@3.3.11: 1629 | resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 1630 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1631 | hasBin: true 1632 | 1633 | neotraverse@0.6.18: 1634 | resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} 1635 | engines: {node: '>= 10'} 1636 | 1637 | nlcst-to-string@4.0.0: 1638 | resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} 1639 | 1640 | node-fetch-native@1.6.7: 1641 | resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} 1642 | 1643 | node-mock-http@1.0.3: 1644 | resolution: {integrity: sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==} 1645 | 1646 | normalize-path@3.0.0: 1647 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1648 | engines: {node: '>=0.10.0'} 1649 | 1650 | nth-check@2.1.1: 1651 | resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1652 | 1653 | ofetch@1.5.1: 1654 | resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==} 1655 | 1656 | ohash@2.0.11: 1657 | resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} 1658 | 1659 | oniguruma-parser@0.12.1: 1660 | resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==} 1661 | 1662 | oniguruma-to-es@4.3.4: 1663 | resolution: {integrity: sha512-3VhUGN3w2eYxnTzHn+ikMI+fp/96KoRSVK9/kMTcFqj1NRDh2IhQCKvYxDnWePKRXY/AqH+Fuiyb7VHSzBjHfA==} 1664 | 1665 | p-limit@6.2.0: 1666 | resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==} 1667 | engines: {node: '>=18'} 1668 | 1669 | p-queue@8.1.1: 1670 | resolution: {integrity: sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==} 1671 | engines: {node: '>=18'} 1672 | 1673 | p-timeout@6.1.4: 1674 | resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==} 1675 | engines: {node: '>=14.16'} 1676 | 1677 | package-manager-detector@1.6.0: 1678 | resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} 1679 | 1680 | pako@0.2.9: 1681 | resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} 1682 | 1683 | parse-latin@7.0.0: 1684 | resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} 1685 | 1686 | parse5@7.3.0: 1687 | resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} 1688 | 1689 | path-to-regexp@6.3.0: 1690 | resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==} 1691 | 1692 | pathe@2.0.3: 1693 | resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 1694 | 1695 | piccolore@0.1.3: 1696 | resolution: {integrity: sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==} 1697 | 1698 | picocolors@1.1.1: 1699 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1700 | 1701 | picomatch@2.3.1: 1702 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1703 | engines: {node: '>=8.6'} 1704 | 1705 | picomatch@4.0.3: 1706 | resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 1707 | engines: {node: '>=12'} 1708 | 1709 | postcss@8.5.6: 1710 | resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} 1711 | engines: {node: ^10 || ^12 || >=14} 1712 | 1713 | prismjs@1.30.0: 1714 | resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} 1715 | engines: {node: '>=6'} 1716 | 1717 | prompts@2.4.2: 1718 | resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} 1719 | engines: {node: '>= 6'} 1720 | 1721 | property-information@6.5.0: 1722 | resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} 1723 | 1724 | property-information@7.1.0: 1725 | resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} 1726 | 1727 | radix3@1.1.2: 1728 | resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} 1729 | 1730 | readdirp@4.1.2: 1731 | resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} 1732 | engines: {node: '>= 14.18.0'} 1733 | 1734 | regex-recursion@6.0.2: 1735 | resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==} 1736 | 1737 | regex-utilities@2.3.0: 1738 | resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} 1739 | 1740 | regex@6.0.1: 1741 | resolution: {integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==} 1742 | 1743 | rehype-parse@9.0.1: 1744 | resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} 1745 | 1746 | rehype-raw@7.0.0: 1747 | resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} 1748 | 1749 | rehype-stringify@10.0.1: 1750 | resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} 1751 | 1752 | rehype@13.0.2: 1753 | resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} 1754 | 1755 | remark-gfm@4.0.1: 1756 | resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} 1757 | 1758 | remark-parse@11.0.0: 1759 | resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} 1760 | 1761 | remark-rehype@11.1.2: 1762 | resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} 1763 | 1764 | remark-smartypants@3.0.2: 1765 | resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} 1766 | engines: {node: '>=16.0.0'} 1767 | 1768 | remark-stringify@11.0.0: 1769 | resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} 1770 | 1771 | restructure@3.0.2: 1772 | resolution: {integrity: sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==} 1773 | 1774 | retext-latin@4.0.0: 1775 | resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} 1776 | 1777 | retext-smartypants@6.2.0: 1778 | resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==} 1779 | 1780 | retext-stringify@4.0.0: 1781 | resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} 1782 | 1783 | retext@9.0.0: 1784 | resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} 1785 | 1786 | rollup@4.53.3: 1787 | resolution: {integrity: sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==} 1788 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1789 | hasBin: true 1790 | 1791 | sax@1.4.3: 1792 | resolution: {integrity: sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ==} 1793 | 1794 | semver@7.7.3: 1795 | resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} 1796 | engines: {node: '>=10'} 1797 | hasBin: true 1798 | 1799 | sharp@0.33.5: 1800 | resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} 1801 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1802 | 1803 | sharp@0.34.5: 1804 | resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==} 1805 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1806 | 1807 | shiki@3.19.0: 1808 | resolution: {integrity: sha512-77VJr3OR/VUZzPiStyRhADmO2jApMM0V2b1qf0RpfWya8Zr1PeZev5AEpPGAAKWdiYUtcZGBE4F5QvJml1PvWA==} 1809 | 1810 | simple-swizzle@0.2.4: 1811 | resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==} 1812 | 1813 | sisteransi@1.0.5: 1814 | resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 1815 | 1816 | sitemap@8.0.2: 1817 | resolution: {integrity: sha512-LwktpJcyZDoa0IL6KT++lQ53pbSrx2c9ge41/SeLTyqy2XUNA6uR4+P9u5IVo5lPeL2arAcOKn1aZAxoYbCKlQ==} 1818 | engines: {node: '>=14.0.0', npm: '>=6.0.0'} 1819 | hasBin: true 1820 | 1821 | smol-toml@1.5.2: 1822 | resolution: {integrity: sha512-QlaZEqcAH3/RtNyet1IPIYPsEWAaYyXXv1Krsi+1L/QHppjX4Ifm8MQsBISz9vE8cHicIq3clogsheili5vhaQ==} 1823 | engines: {node: '>= 18'} 1824 | 1825 | source-map-js@1.2.1: 1826 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1827 | engines: {node: '>=0.10.0'} 1828 | 1829 | space-separated-tokens@2.0.2: 1830 | resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} 1831 | 1832 | stoppable@1.1.0: 1833 | resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==} 1834 | engines: {node: '>=4', npm: '>=6'} 1835 | 1836 | stream-replace-string@2.0.0: 1837 | resolution: {integrity: sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==} 1838 | 1839 | string-width@4.2.3: 1840 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1841 | engines: {node: '>=8'} 1842 | 1843 | string-width@7.2.0: 1844 | resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} 1845 | engines: {node: '>=18'} 1846 | 1847 | stringify-entities@4.0.4: 1848 | resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} 1849 | 1850 | strip-ansi@6.0.1: 1851 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1852 | engines: {node: '>=8'} 1853 | 1854 | strip-ansi@7.1.2: 1855 | resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} 1856 | engines: {node: '>=12'} 1857 | 1858 | supports-color@10.2.2: 1859 | resolution: {integrity: sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==} 1860 | engines: {node: '>=18'} 1861 | 1862 | svgo@4.0.0: 1863 | resolution: {integrity: sha512-VvrHQ+9uniE+Mvx3+C9IEe/lWasXCU0nXMY2kZeLrHNICuRiC8uMPyM14UEaMOFA5mhyQqEkB02VoQ16n3DLaw==} 1864 | engines: {node: '>=16'} 1865 | hasBin: true 1866 | 1867 | tailwindcss@4.1.17: 1868 | resolution: {integrity: sha512-j9Ee2YjuQqYT9bbRTfTZht9W/ytp5H+jJpZKiYdP/bpnXARAuELt9ofP0lPnmHjbga7SNQIxdTAXCmtKVYjN+Q==} 1869 | 1870 | tapable@2.3.0: 1871 | resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==} 1872 | engines: {node: '>=6'} 1873 | 1874 | tiny-inflate@1.0.3: 1875 | resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} 1876 | 1877 | tinyexec@1.0.2: 1878 | resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} 1879 | engines: {node: '>=18'} 1880 | 1881 | tinyglobby@0.2.15: 1882 | resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} 1883 | engines: {node: '>=12.0.0'} 1884 | 1885 | trim-lines@3.0.1: 1886 | resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 1887 | 1888 | trough@2.2.0: 1889 | resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} 1890 | 1891 | tsconfck@3.1.6: 1892 | resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} 1893 | engines: {node: ^18 || >=20} 1894 | hasBin: true 1895 | peerDependencies: 1896 | typescript: ^5.0.0 1897 | peerDependenciesMeta: 1898 | typescript: 1899 | optional: true 1900 | 1901 | tslib@2.8.1: 1902 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1903 | 1904 | type-fest@4.41.0: 1905 | resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} 1906 | engines: {node: '>=16'} 1907 | 1908 | typescript@5.9.3: 1909 | resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} 1910 | engines: {node: '>=14.17'} 1911 | hasBin: true 1912 | 1913 | ufo@1.6.1: 1914 | resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} 1915 | 1916 | ultrahtml@1.6.0: 1917 | resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} 1918 | 1919 | uncrypto@0.1.3: 1920 | resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} 1921 | 1922 | undici-types@7.16.0: 1923 | resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} 1924 | 1925 | undici@7.14.0: 1926 | resolution: {integrity: sha512-Vqs8HTzjpQXZeXdpsfChQTlafcMQaaIwnGwLam1wudSSjlJeQ3bw1j+TLPePgrCnCpUXx7Ba5Pdpf5OBih62NQ==} 1927 | engines: {node: '>=20.18.1'} 1928 | 1929 | unenv@2.0.0-rc.24: 1930 | resolution: {integrity: sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==} 1931 | 1932 | unicode-properties@1.4.1: 1933 | resolution: {integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==} 1934 | 1935 | unicode-trie@2.0.0: 1936 | resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==} 1937 | 1938 | unified@11.0.5: 1939 | resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} 1940 | 1941 | unifont@0.6.0: 1942 | resolution: {integrity: sha512-5Fx50fFQMQL5aeHyWnZX9122sSLckcDvcfFiBf3QYeHa7a1MKJooUy52b67moi2MJYkrfo/TWY+CoLdr/w0tTA==} 1943 | 1944 | unist-util-find-after@5.0.0: 1945 | resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} 1946 | 1947 | unist-util-is@6.0.1: 1948 | resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} 1949 | 1950 | unist-util-modify-children@4.0.0: 1951 | resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} 1952 | 1953 | unist-util-position@5.0.0: 1954 | resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} 1955 | 1956 | unist-util-remove-position@5.0.0: 1957 | resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} 1958 | 1959 | unist-util-stringify-position@4.0.0: 1960 | resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 1961 | 1962 | unist-util-visit-children@3.0.0: 1963 | resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} 1964 | 1965 | unist-util-visit-parents@6.0.2: 1966 | resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==} 1967 | 1968 | unist-util-visit@5.0.0: 1969 | resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 1970 | 1971 | unstorage@1.17.3: 1972 | resolution: {integrity: sha512-i+JYyy0DoKmQ3FximTHbGadmIYb8JEpq7lxUjnjeB702bCPum0vzo6oy5Mfu0lpqISw7hCyMW2yj4nWC8bqJ3Q==} 1973 | peerDependencies: 1974 | '@azure/app-configuration': ^1.8.0 1975 | '@azure/cosmos': ^4.2.0 1976 | '@azure/data-tables': ^13.3.0 1977 | '@azure/identity': ^4.6.0 1978 | '@azure/keyvault-secrets': ^4.9.0 1979 | '@azure/storage-blob': ^12.26.0 1980 | '@capacitor/preferences': ^6.0.3 || ^7.0.0 1981 | '@deno/kv': '>=0.9.0' 1982 | '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 1983 | '@planetscale/database': ^1.19.0 1984 | '@upstash/redis': ^1.34.3 1985 | '@vercel/blob': '>=0.27.1' 1986 | '@vercel/functions': ^2.2.12 || ^3.0.0 1987 | '@vercel/kv': ^1.0.1 1988 | aws4fetch: ^1.0.20 1989 | db0: '>=0.2.1' 1990 | idb-keyval: ^6.2.1 1991 | ioredis: ^5.4.2 1992 | uploadthing: ^7.4.4 1993 | peerDependenciesMeta: 1994 | '@azure/app-configuration': 1995 | optional: true 1996 | '@azure/cosmos': 1997 | optional: true 1998 | '@azure/data-tables': 1999 | optional: true 2000 | '@azure/identity': 2001 | optional: true 2002 | '@azure/keyvault-secrets': 2003 | optional: true 2004 | '@azure/storage-blob': 2005 | optional: true 2006 | '@capacitor/preferences': 2007 | optional: true 2008 | '@deno/kv': 2009 | optional: true 2010 | '@netlify/blobs': 2011 | optional: true 2012 | '@planetscale/database': 2013 | optional: true 2014 | '@upstash/redis': 2015 | optional: true 2016 | '@vercel/blob': 2017 | optional: true 2018 | '@vercel/functions': 2019 | optional: true 2020 | '@vercel/kv': 2021 | optional: true 2022 | aws4fetch: 2023 | optional: true 2024 | db0: 2025 | optional: true 2026 | idb-keyval: 2027 | optional: true 2028 | ioredis: 2029 | optional: true 2030 | uploadthing: 2031 | optional: true 2032 | 2033 | vfile-location@5.0.3: 2034 | resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} 2035 | 2036 | vfile-message@4.0.3: 2037 | resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} 2038 | 2039 | vfile@6.0.3: 2040 | resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} 2041 | 2042 | vite@6.4.1: 2043 | resolution: {integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==} 2044 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 2045 | hasBin: true 2046 | peerDependencies: 2047 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 2048 | jiti: '>=1.21.0' 2049 | less: '*' 2050 | lightningcss: ^1.21.0 2051 | sass: '*' 2052 | sass-embedded: '*' 2053 | stylus: '*' 2054 | sugarss: '*' 2055 | terser: ^5.16.0 2056 | tsx: ^4.8.1 2057 | yaml: ^2.4.2 2058 | peerDependenciesMeta: 2059 | '@types/node': 2060 | optional: true 2061 | jiti: 2062 | optional: true 2063 | less: 2064 | optional: true 2065 | lightningcss: 2066 | optional: true 2067 | sass: 2068 | optional: true 2069 | sass-embedded: 2070 | optional: true 2071 | stylus: 2072 | optional: true 2073 | sugarss: 2074 | optional: true 2075 | terser: 2076 | optional: true 2077 | tsx: 2078 | optional: true 2079 | yaml: 2080 | optional: true 2081 | 2082 | vitefu@1.1.1: 2083 | resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} 2084 | peerDependencies: 2085 | vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 2086 | peerDependenciesMeta: 2087 | vite: 2088 | optional: true 2089 | 2090 | web-namespaces@2.0.1: 2091 | resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} 2092 | 2093 | which-pm-runs@1.1.0: 2094 | resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} 2095 | engines: {node: '>=4'} 2096 | 2097 | widest-line@5.0.0: 2098 | resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} 2099 | engines: {node: '>=18'} 2100 | 2101 | workerd@1.20251125.0: 2102 | resolution: {integrity: sha512-oQYfgu3UZ15HlMcEyilKD1RdielRnKSG5MA0xoi1theVs99Rop9AEFYicYCyK1R4YjYblLRYEiL1tMgEFqpReA==} 2103 | engines: {node: '>=16'} 2104 | hasBin: true 2105 | 2106 | wrangler@4.51.0: 2107 | resolution: {integrity: sha512-JHv+58UxM2//e4kf9ASDwg016xd/OdDNDUKW6zLQyE7Uc9ayYKX1QJ9NsYtpo4dC1dfg6rT67pf1aNK1cTzUDg==} 2108 | engines: {node: '>=20.0.0'} 2109 | hasBin: true 2110 | peerDependencies: 2111 | '@cloudflare/workers-types': ^4.20251125.0 2112 | peerDependenciesMeta: 2113 | '@cloudflare/workers-types': 2114 | optional: true 2115 | 2116 | wrap-ansi@9.0.2: 2117 | resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==} 2118 | engines: {node: '>=18'} 2119 | 2120 | ws@8.18.0: 2121 | resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} 2122 | engines: {node: '>=10.0.0'} 2123 | peerDependencies: 2124 | bufferutil: ^4.0.1 2125 | utf-8-validate: '>=5.0.2' 2126 | peerDependenciesMeta: 2127 | bufferutil: 2128 | optional: true 2129 | utf-8-validate: 2130 | optional: true 2131 | 2132 | xxhash-wasm@1.1.0: 2133 | resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==} 2134 | 2135 | yaml@2.8.2: 2136 | resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==} 2137 | engines: {node: '>= 14.6'} 2138 | hasBin: true 2139 | 2140 | yargs-parser@21.1.1: 2141 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 2142 | engines: {node: '>=12'} 2143 | 2144 | yocto-queue@1.2.2: 2145 | resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==} 2146 | engines: {node: '>=12.20'} 2147 | 2148 | yocto-spinner@0.2.3: 2149 | resolution: {integrity: sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==} 2150 | engines: {node: '>=18.19'} 2151 | 2152 | yoctocolors@2.1.2: 2153 | resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==} 2154 | engines: {node: '>=18'} 2155 | 2156 | youch-core@0.3.3: 2157 | resolution: {integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==} 2158 | 2159 | youch@4.1.0-beta.10: 2160 | resolution: {integrity: sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==} 2161 | 2162 | zod-to-json-schema@3.25.0: 2163 | resolution: {integrity: sha512-HvWtU2UG41LALjajJrML6uQejQhNJx+JBO9IflpSja4R03iNWfKXrj6W2h7ljuLyc1nKS+9yDyL/9tD1U/yBnQ==} 2164 | peerDependencies: 2165 | zod: ^3.25 || ^4 2166 | 2167 | zod-to-ts@1.2.0: 2168 | resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} 2169 | peerDependencies: 2170 | typescript: ^4.9.4 || ^5.0.2 2171 | zod: ^3 2172 | 2173 | zod@3.22.3: 2174 | resolution: {integrity: sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==} 2175 | 2176 | zod@3.25.76: 2177 | resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} 2178 | 2179 | zwitch@2.0.4: 2180 | resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 2181 | 2182 | snapshots: 2183 | 2184 | '@astrojs/compiler@2.13.0': {} 2185 | 2186 | '@astrojs/internal-helpers@0.7.5': {} 2187 | 2188 | '@astrojs/markdown-remark@6.3.9': 2189 | dependencies: 2190 | '@astrojs/internal-helpers': 0.7.5 2191 | '@astrojs/prism': 3.3.0 2192 | github-slugger: 2.0.0 2193 | hast-util-from-html: 2.0.3 2194 | hast-util-to-text: 4.0.2 2195 | import-meta-resolve: 4.2.0 2196 | js-yaml: 4.1.1 2197 | mdast-util-definitions: 6.0.0 2198 | rehype-raw: 7.0.0 2199 | rehype-stringify: 10.0.1 2200 | remark-gfm: 4.0.1 2201 | remark-parse: 11.0.0 2202 | remark-rehype: 11.1.2 2203 | remark-smartypants: 3.0.2 2204 | shiki: 3.19.0 2205 | smol-toml: 1.5.2 2206 | unified: 11.0.5 2207 | unist-util-remove-position: 5.0.0 2208 | unist-util-visit: 5.0.0 2209 | unist-util-visit-parents: 6.0.2 2210 | vfile: 6.0.3 2211 | transitivePeerDependencies: 2212 | - supports-color 2213 | 2214 | '@astrojs/prism@3.3.0': 2215 | dependencies: 2216 | prismjs: 1.30.0 2217 | 2218 | '@astrojs/sitemap@3.6.0': 2219 | dependencies: 2220 | sitemap: 8.0.2 2221 | stream-replace-string: 2.0.0 2222 | zod: 3.25.76 2223 | 2224 | '@astrojs/telemetry@3.3.0': 2225 | dependencies: 2226 | ci-info: 4.3.1 2227 | debug: 4.4.3 2228 | dlv: 1.1.3 2229 | dset: 3.1.4 2230 | is-docker: 3.0.0 2231 | is-wsl: 3.1.0 2232 | which-pm-runs: 1.1.0 2233 | transitivePeerDependencies: 2234 | - supports-color 2235 | 2236 | '@babel/helper-string-parser@7.27.1': {} 2237 | 2238 | '@babel/helper-validator-identifier@7.28.5': {} 2239 | 2240 | '@babel/parser@7.28.5': 2241 | dependencies: 2242 | '@babel/types': 7.28.5 2243 | 2244 | '@babel/types@7.28.5': 2245 | dependencies: 2246 | '@babel/helper-string-parser': 7.27.1 2247 | '@babel/helper-validator-identifier': 7.28.5 2248 | 2249 | '@capsizecss/unpack@3.0.1': 2250 | dependencies: 2251 | fontkit: 2.0.4 2252 | 2253 | '@cloudflare/kv-asset-handler@0.4.1': 2254 | dependencies: 2255 | mime: 3.0.0 2256 | 2257 | '@cloudflare/unenv-preset@2.7.11(unenv@2.0.0-rc.24)(workerd@1.20251125.0)': 2258 | dependencies: 2259 | unenv: 2.0.0-rc.24 2260 | optionalDependencies: 2261 | workerd: 1.20251125.0 2262 | 2263 | '@cloudflare/workerd-darwin-64@1.20251125.0': 2264 | optional: true 2265 | 2266 | '@cloudflare/workerd-darwin-arm64@1.20251125.0': 2267 | optional: true 2268 | 2269 | '@cloudflare/workerd-linux-64@1.20251125.0': 2270 | optional: true 2271 | 2272 | '@cloudflare/workerd-linux-arm64@1.20251125.0': 2273 | optional: true 2274 | 2275 | '@cloudflare/workerd-windows-64@1.20251125.0': 2276 | optional: true 2277 | 2278 | '@cspotcode/source-map-support@0.8.1': 2279 | dependencies: 2280 | '@jridgewell/trace-mapping': 0.3.9 2281 | 2282 | '@emnapi/runtime@1.7.1': 2283 | dependencies: 2284 | tslib: 2.8.1 2285 | optional: true 2286 | 2287 | '@esbuild/aix-ppc64@0.25.12': 2288 | optional: true 2289 | 2290 | '@esbuild/aix-ppc64@0.25.4': 2291 | optional: true 2292 | 2293 | '@esbuild/android-arm64@0.25.12': 2294 | optional: true 2295 | 2296 | '@esbuild/android-arm64@0.25.4': 2297 | optional: true 2298 | 2299 | '@esbuild/android-arm@0.25.12': 2300 | optional: true 2301 | 2302 | '@esbuild/android-arm@0.25.4': 2303 | optional: true 2304 | 2305 | '@esbuild/android-x64@0.25.12': 2306 | optional: true 2307 | 2308 | '@esbuild/android-x64@0.25.4': 2309 | optional: true 2310 | 2311 | '@esbuild/darwin-arm64@0.25.12': 2312 | optional: true 2313 | 2314 | '@esbuild/darwin-arm64@0.25.4': 2315 | optional: true 2316 | 2317 | '@esbuild/darwin-x64@0.25.12': 2318 | optional: true 2319 | 2320 | '@esbuild/darwin-x64@0.25.4': 2321 | optional: true 2322 | 2323 | '@esbuild/freebsd-arm64@0.25.12': 2324 | optional: true 2325 | 2326 | '@esbuild/freebsd-arm64@0.25.4': 2327 | optional: true 2328 | 2329 | '@esbuild/freebsd-x64@0.25.12': 2330 | optional: true 2331 | 2332 | '@esbuild/freebsd-x64@0.25.4': 2333 | optional: true 2334 | 2335 | '@esbuild/linux-arm64@0.25.12': 2336 | optional: true 2337 | 2338 | '@esbuild/linux-arm64@0.25.4': 2339 | optional: true 2340 | 2341 | '@esbuild/linux-arm@0.25.12': 2342 | optional: true 2343 | 2344 | '@esbuild/linux-arm@0.25.4': 2345 | optional: true 2346 | 2347 | '@esbuild/linux-ia32@0.25.12': 2348 | optional: true 2349 | 2350 | '@esbuild/linux-ia32@0.25.4': 2351 | optional: true 2352 | 2353 | '@esbuild/linux-loong64@0.25.12': 2354 | optional: true 2355 | 2356 | '@esbuild/linux-loong64@0.25.4': 2357 | optional: true 2358 | 2359 | '@esbuild/linux-mips64el@0.25.12': 2360 | optional: true 2361 | 2362 | '@esbuild/linux-mips64el@0.25.4': 2363 | optional: true 2364 | 2365 | '@esbuild/linux-ppc64@0.25.12': 2366 | optional: true 2367 | 2368 | '@esbuild/linux-ppc64@0.25.4': 2369 | optional: true 2370 | 2371 | '@esbuild/linux-riscv64@0.25.12': 2372 | optional: true 2373 | 2374 | '@esbuild/linux-riscv64@0.25.4': 2375 | optional: true 2376 | 2377 | '@esbuild/linux-s390x@0.25.12': 2378 | optional: true 2379 | 2380 | '@esbuild/linux-s390x@0.25.4': 2381 | optional: true 2382 | 2383 | '@esbuild/linux-x64@0.25.12': 2384 | optional: true 2385 | 2386 | '@esbuild/linux-x64@0.25.4': 2387 | optional: true 2388 | 2389 | '@esbuild/netbsd-arm64@0.25.12': 2390 | optional: true 2391 | 2392 | '@esbuild/netbsd-arm64@0.25.4': 2393 | optional: true 2394 | 2395 | '@esbuild/netbsd-x64@0.25.12': 2396 | optional: true 2397 | 2398 | '@esbuild/netbsd-x64@0.25.4': 2399 | optional: true 2400 | 2401 | '@esbuild/openbsd-arm64@0.25.12': 2402 | optional: true 2403 | 2404 | '@esbuild/openbsd-arm64@0.25.4': 2405 | optional: true 2406 | 2407 | '@esbuild/openbsd-x64@0.25.12': 2408 | optional: true 2409 | 2410 | '@esbuild/openbsd-x64@0.25.4': 2411 | optional: true 2412 | 2413 | '@esbuild/openharmony-arm64@0.25.12': 2414 | optional: true 2415 | 2416 | '@esbuild/sunos-x64@0.25.12': 2417 | optional: true 2418 | 2419 | '@esbuild/sunos-x64@0.25.4': 2420 | optional: true 2421 | 2422 | '@esbuild/win32-arm64@0.25.12': 2423 | optional: true 2424 | 2425 | '@esbuild/win32-arm64@0.25.4': 2426 | optional: true 2427 | 2428 | '@esbuild/win32-ia32@0.25.12': 2429 | optional: true 2430 | 2431 | '@esbuild/win32-ia32@0.25.4': 2432 | optional: true 2433 | 2434 | '@esbuild/win32-x64@0.25.12': 2435 | optional: true 2436 | 2437 | '@esbuild/win32-x64@0.25.4': 2438 | optional: true 2439 | 2440 | '@img/colour@1.0.0': 2441 | optional: true 2442 | 2443 | '@img/sharp-darwin-arm64@0.33.5': 2444 | optionalDependencies: 2445 | '@img/sharp-libvips-darwin-arm64': 1.0.4 2446 | optional: true 2447 | 2448 | '@img/sharp-darwin-arm64@0.34.5': 2449 | optionalDependencies: 2450 | '@img/sharp-libvips-darwin-arm64': 1.2.4 2451 | optional: true 2452 | 2453 | '@img/sharp-darwin-x64@0.33.5': 2454 | optionalDependencies: 2455 | '@img/sharp-libvips-darwin-x64': 1.0.4 2456 | optional: true 2457 | 2458 | '@img/sharp-darwin-x64@0.34.5': 2459 | optionalDependencies: 2460 | '@img/sharp-libvips-darwin-x64': 1.2.4 2461 | optional: true 2462 | 2463 | '@img/sharp-libvips-darwin-arm64@1.0.4': 2464 | optional: true 2465 | 2466 | '@img/sharp-libvips-darwin-arm64@1.2.4': 2467 | optional: true 2468 | 2469 | '@img/sharp-libvips-darwin-x64@1.0.4': 2470 | optional: true 2471 | 2472 | '@img/sharp-libvips-darwin-x64@1.2.4': 2473 | optional: true 2474 | 2475 | '@img/sharp-libvips-linux-arm64@1.0.4': 2476 | optional: true 2477 | 2478 | '@img/sharp-libvips-linux-arm64@1.2.4': 2479 | optional: true 2480 | 2481 | '@img/sharp-libvips-linux-arm@1.0.5': 2482 | optional: true 2483 | 2484 | '@img/sharp-libvips-linux-arm@1.2.4': 2485 | optional: true 2486 | 2487 | '@img/sharp-libvips-linux-ppc64@1.2.4': 2488 | optional: true 2489 | 2490 | '@img/sharp-libvips-linux-riscv64@1.2.4': 2491 | optional: true 2492 | 2493 | '@img/sharp-libvips-linux-s390x@1.0.4': 2494 | optional: true 2495 | 2496 | '@img/sharp-libvips-linux-s390x@1.2.4': 2497 | optional: true 2498 | 2499 | '@img/sharp-libvips-linux-x64@1.0.4': 2500 | optional: true 2501 | 2502 | '@img/sharp-libvips-linux-x64@1.2.4': 2503 | optional: true 2504 | 2505 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 2506 | optional: true 2507 | 2508 | '@img/sharp-libvips-linuxmusl-arm64@1.2.4': 2509 | optional: true 2510 | 2511 | '@img/sharp-libvips-linuxmusl-x64@1.0.4': 2512 | optional: true 2513 | 2514 | '@img/sharp-libvips-linuxmusl-x64@1.2.4': 2515 | optional: true 2516 | 2517 | '@img/sharp-linux-arm64@0.33.5': 2518 | optionalDependencies: 2519 | '@img/sharp-libvips-linux-arm64': 1.0.4 2520 | optional: true 2521 | 2522 | '@img/sharp-linux-arm64@0.34.5': 2523 | optionalDependencies: 2524 | '@img/sharp-libvips-linux-arm64': 1.2.4 2525 | optional: true 2526 | 2527 | '@img/sharp-linux-arm@0.33.5': 2528 | optionalDependencies: 2529 | '@img/sharp-libvips-linux-arm': 1.0.5 2530 | optional: true 2531 | 2532 | '@img/sharp-linux-arm@0.34.5': 2533 | optionalDependencies: 2534 | '@img/sharp-libvips-linux-arm': 1.2.4 2535 | optional: true 2536 | 2537 | '@img/sharp-linux-ppc64@0.34.5': 2538 | optionalDependencies: 2539 | '@img/sharp-libvips-linux-ppc64': 1.2.4 2540 | optional: true 2541 | 2542 | '@img/sharp-linux-riscv64@0.34.5': 2543 | optionalDependencies: 2544 | '@img/sharp-libvips-linux-riscv64': 1.2.4 2545 | optional: true 2546 | 2547 | '@img/sharp-linux-s390x@0.33.5': 2548 | optionalDependencies: 2549 | '@img/sharp-libvips-linux-s390x': 1.0.4 2550 | optional: true 2551 | 2552 | '@img/sharp-linux-s390x@0.34.5': 2553 | optionalDependencies: 2554 | '@img/sharp-libvips-linux-s390x': 1.2.4 2555 | optional: true 2556 | 2557 | '@img/sharp-linux-x64@0.33.5': 2558 | optionalDependencies: 2559 | '@img/sharp-libvips-linux-x64': 1.0.4 2560 | optional: true 2561 | 2562 | '@img/sharp-linux-x64@0.34.5': 2563 | optionalDependencies: 2564 | '@img/sharp-libvips-linux-x64': 1.2.4 2565 | optional: true 2566 | 2567 | '@img/sharp-linuxmusl-arm64@0.33.5': 2568 | optionalDependencies: 2569 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 2570 | optional: true 2571 | 2572 | '@img/sharp-linuxmusl-arm64@0.34.5': 2573 | optionalDependencies: 2574 | '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 2575 | optional: true 2576 | 2577 | '@img/sharp-linuxmusl-x64@0.33.5': 2578 | optionalDependencies: 2579 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4 2580 | optional: true 2581 | 2582 | '@img/sharp-linuxmusl-x64@0.34.5': 2583 | optionalDependencies: 2584 | '@img/sharp-libvips-linuxmusl-x64': 1.2.4 2585 | optional: true 2586 | 2587 | '@img/sharp-wasm32@0.33.5': 2588 | dependencies: 2589 | '@emnapi/runtime': 1.7.1 2590 | optional: true 2591 | 2592 | '@img/sharp-wasm32@0.34.5': 2593 | dependencies: 2594 | '@emnapi/runtime': 1.7.1 2595 | optional: true 2596 | 2597 | '@img/sharp-win32-arm64@0.34.5': 2598 | optional: true 2599 | 2600 | '@img/sharp-win32-ia32@0.33.5': 2601 | optional: true 2602 | 2603 | '@img/sharp-win32-ia32@0.34.5': 2604 | optional: true 2605 | 2606 | '@img/sharp-win32-x64@0.33.5': 2607 | optional: true 2608 | 2609 | '@img/sharp-win32-x64@0.34.5': 2610 | optional: true 2611 | 2612 | '@jridgewell/gen-mapping@0.3.13': 2613 | dependencies: 2614 | '@jridgewell/sourcemap-codec': 1.5.5 2615 | '@jridgewell/trace-mapping': 0.3.31 2616 | 2617 | '@jridgewell/remapping@2.3.5': 2618 | dependencies: 2619 | '@jridgewell/gen-mapping': 0.3.13 2620 | '@jridgewell/trace-mapping': 0.3.31 2621 | 2622 | '@jridgewell/resolve-uri@3.1.2': {} 2623 | 2624 | '@jridgewell/sourcemap-codec@1.5.5': {} 2625 | 2626 | '@jridgewell/trace-mapping@0.3.31': 2627 | dependencies: 2628 | '@jridgewell/resolve-uri': 3.1.2 2629 | '@jridgewell/sourcemap-codec': 1.5.5 2630 | 2631 | '@jridgewell/trace-mapping@0.3.9': 2632 | dependencies: 2633 | '@jridgewell/resolve-uri': 3.1.2 2634 | '@jridgewell/sourcemap-codec': 1.5.5 2635 | 2636 | '@oslojs/encoding@1.1.0': {} 2637 | 2638 | '@poppinss/colors@4.1.5': 2639 | dependencies: 2640 | kleur: 4.1.5 2641 | 2642 | '@poppinss/dumper@0.6.5': 2643 | dependencies: 2644 | '@poppinss/colors': 4.1.5 2645 | '@sindresorhus/is': 7.1.1 2646 | supports-color: 10.2.2 2647 | 2648 | '@poppinss/exception@1.2.2': {} 2649 | 2650 | '@rollup/pluginutils@5.3.0(rollup@4.53.3)': 2651 | dependencies: 2652 | '@types/estree': 1.0.8 2653 | estree-walker: 2.0.2 2654 | picomatch: 4.0.3 2655 | optionalDependencies: 2656 | rollup: 4.53.3 2657 | 2658 | '@rollup/rollup-android-arm-eabi@4.53.3': 2659 | optional: true 2660 | 2661 | '@rollup/rollup-android-arm64@4.53.3': 2662 | optional: true 2663 | 2664 | '@rollup/rollup-darwin-arm64@4.53.3': 2665 | optional: true 2666 | 2667 | '@rollup/rollup-darwin-x64@4.53.3': 2668 | optional: true 2669 | 2670 | '@rollup/rollup-freebsd-arm64@4.53.3': 2671 | optional: true 2672 | 2673 | '@rollup/rollup-freebsd-x64@4.53.3': 2674 | optional: true 2675 | 2676 | '@rollup/rollup-linux-arm-gnueabihf@4.53.3': 2677 | optional: true 2678 | 2679 | '@rollup/rollup-linux-arm-musleabihf@4.53.3': 2680 | optional: true 2681 | 2682 | '@rollup/rollup-linux-arm64-gnu@4.53.3': 2683 | optional: true 2684 | 2685 | '@rollup/rollup-linux-arm64-musl@4.53.3': 2686 | optional: true 2687 | 2688 | '@rollup/rollup-linux-loong64-gnu@4.53.3': 2689 | optional: true 2690 | 2691 | '@rollup/rollup-linux-ppc64-gnu@4.53.3': 2692 | optional: true 2693 | 2694 | '@rollup/rollup-linux-riscv64-gnu@4.53.3': 2695 | optional: true 2696 | 2697 | '@rollup/rollup-linux-riscv64-musl@4.53.3': 2698 | optional: true 2699 | 2700 | '@rollup/rollup-linux-s390x-gnu@4.53.3': 2701 | optional: true 2702 | 2703 | '@rollup/rollup-linux-x64-gnu@4.53.3': 2704 | optional: true 2705 | 2706 | '@rollup/rollup-linux-x64-musl@4.53.3': 2707 | optional: true 2708 | 2709 | '@rollup/rollup-openharmony-arm64@4.53.3': 2710 | optional: true 2711 | 2712 | '@rollup/rollup-win32-arm64-msvc@4.53.3': 2713 | optional: true 2714 | 2715 | '@rollup/rollup-win32-ia32-msvc@4.53.3': 2716 | optional: true 2717 | 2718 | '@rollup/rollup-win32-x64-gnu@4.53.3': 2719 | optional: true 2720 | 2721 | '@rollup/rollup-win32-x64-msvc@4.53.3': 2722 | optional: true 2723 | 2724 | '@shikijs/core@3.19.0': 2725 | dependencies: 2726 | '@shikijs/types': 3.19.0 2727 | '@shikijs/vscode-textmate': 10.0.2 2728 | '@types/hast': 3.0.4 2729 | hast-util-to-html: 9.0.5 2730 | 2731 | '@shikijs/engine-javascript@3.19.0': 2732 | dependencies: 2733 | '@shikijs/types': 3.19.0 2734 | '@shikijs/vscode-textmate': 10.0.2 2735 | oniguruma-to-es: 4.3.4 2736 | 2737 | '@shikijs/engine-oniguruma@3.19.0': 2738 | dependencies: 2739 | '@shikijs/types': 3.19.0 2740 | '@shikijs/vscode-textmate': 10.0.2 2741 | 2742 | '@shikijs/langs@3.19.0': 2743 | dependencies: 2744 | '@shikijs/types': 3.19.0 2745 | 2746 | '@shikijs/themes@3.19.0': 2747 | dependencies: 2748 | '@shikijs/types': 3.19.0 2749 | 2750 | '@shikijs/types@3.19.0': 2751 | dependencies: 2752 | '@shikijs/vscode-textmate': 10.0.2 2753 | '@types/hast': 3.0.4 2754 | 2755 | '@shikijs/vscode-textmate@10.0.2': {} 2756 | 2757 | '@sindresorhus/is@7.1.1': {} 2758 | 2759 | '@speed-highlight/core@1.2.12': {} 2760 | 2761 | '@swc/helpers@0.5.17': 2762 | dependencies: 2763 | tslib: 2.8.1 2764 | 2765 | '@tailwindcss/node@4.1.17': 2766 | dependencies: 2767 | '@jridgewell/remapping': 2.3.5 2768 | enhanced-resolve: 5.18.3 2769 | jiti: 2.6.1 2770 | lightningcss: 1.30.2 2771 | magic-string: 0.30.21 2772 | source-map-js: 1.2.1 2773 | tailwindcss: 4.1.17 2774 | 2775 | '@tailwindcss/oxide-android-arm64@4.1.17': 2776 | optional: true 2777 | 2778 | '@tailwindcss/oxide-darwin-arm64@4.1.17': 2779 | optional: true 2780 | 2781 | '@tailwindcss/oxide-darwin-x64@4.1.17': 2782 | optional: true 2783 | 2784 | '@tailwindcss/oxide-freebsd-x64@4.1.17': 2785 | optional: true 2786 | 2787 | '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.17': 2788 | optional: true 2789 | 2790 | '@tailwindcss/oxide-linux-arm64-gnu@4.1.17': 2791 | optional: true 2792 | 2793 | '@tailwindcss/oxide-linux-arm64-musl@4.1.17': 2794 | optional: true 2795 | 2796 | '@tailwindcss/oxide-linux-x64-gnu@4.1.17': 2797 | optional: true 2798 | 2799 | '@tailwindcss/oxide-linux-x64-musl@4.1.17': 2800 | optional: true 2801 | 2802 | '@tailwindcss/oxide-wasm32-wasi@4.1.17': 2803 | optional: true 2804 | 2805 | '@tailwindcss/oxide-win32-arm64-msvc@4.1.17': 2806 | optional: true 2807 | 2808 | '@tailwindcss/oxide-win32-x64-msvc@4.1.17': 2809 | optional: true 2810 | 2811 | '@tailwindcss/oxide@4.1.17': 2812 | optionalDependencies: 2813 | '@tailwindcss/oxide-android-arm64': 4.1.17 2814 | '@tailwindcss/oxide-darwin-arm64': 4.1.17 2815 | '@tailwindcss/oxide-darwin-x64': 4.1.17 2816 | '@tailwindcss/oxide-freebsd-x64': 4.1.17 2817 | '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.17 2818 | '@tailwindcss/oxide-linux-arm64-gnu': 4.1.17 2819 | '@tailwindcss/oxide-linux-arm64-musl': 4.1.17 2820 | '@tailwindcss/oxide-linux-x64-gnu': 4.1.17 2821 | '@tailwindcss/oxide-linux-x64-musl': 4.1.17 2822 | '@tailwindcss/oxide-wasm32-wasi': 4.1.17 2823 | '@tailwindcss/oxide-win32-arm64-msvc': 4.1.17 2824 | '@tailwindcss/oxide-win32-x64-msvc': 4.1.17 2825 | 2826 | '@tailwindcss/vite@4.1.17(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2))': 2827 | dependencies: 2828 | '@tailwindcss/node': 4.1.17 2829 | '@tailwindcss/oxide': 4.1.17 2830 | tailwindcss: 4.1.17 2831 | vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2) 2832 | 2833 | '@types/debug@4.1.12': 2834 | dependencies: 2835 | '@types/ms': 2.1.0 2836 | 2837 | '@types/estree@1.0.8': {} 2838 | 2839 | '@types/fontkit@2.0.8': 2840 | dependencies: 2841 | '@types/node': 24.10.1 2842 | 2843 | '@types/hast@3.0.4': 2844 | dependencies: 2845 | '@types/unist': 3.0.3 2846 | 2847 | '@types/mdast@4.0.4': 2848 | dependencies: 2849 | '@types/unist': 3.0.3 2850 | 2851 | '@types/ms@2.1.0': {} 2852 | 2853 | '@types/nlcst@2.0.3': 2854 | dependencies: 2855 | '@types/unist': 3.0.3 2856 | 2857 | '@types/node@17.0.45': {} 2858 | 2859 | '@types/node@24.10.1': 2860 | dependencies: 2861 | undici-types: 7.16.0 2862 | 2863 | '@types/sax@1.2.7': 2864 | dependencies: 2865 | '@types/node': 24.10.1 2866 | 2867 | '@types/unist@3.0.3': {} 2868 | 2869 | '@ungap/structured-clone@1.3.0': {} 2870 | 2871 | acorn-walk@8.3.2: {} 2872 | 2873 | acorn@8.14.0: {} 2874 | 2875 | acorn@8.15.0: {} 2876 | 2877 | ansi-align@3.0.1: 2878 | dependencies: 2879 | string-width: 4.2.3 2880 | 2881 | ansi-regex@5.0.1: {} 2882 | 2883 | ansi-regex@6.2.2: {} 2884 | 2885 | ansi-styles@6.2.3: {} 2886 | 2887 | anymatch@3.1.3: 2888 | dependencies: 2889 | normalize-path: 3.0.0 2890 | picomatch: 2.3.1 2891 | 2892 | arg@5.0.2: {} 2893 | 2894 | argparse@2.0.1: {} 2895 | 2896 | aria-query@5.3.2: {} 2897 | 2898 | array-iterate@2.0.1: {} 2899 | 2900 | astro@5.16.3(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(rollup@4.53.3)(typescript@5.9.3)(yaml@2.8.2): 2901 | dependencies: 2902 | '@astrojs/compiler': 2.13.0 2903 | '@astrojs/internal-helpers': 0.7.5 2904 | '@astrojs/markdown-remark': 6.3.9 2905 | '@astrojs/telemetry': 3.3.0 2906 | '@capsizecss/unpack': 3.0.1 2907 | '@oslojs/encoding': 1.1.0 2908 | '@rollup/pluginutils': 5.3.0(rollup@4.53.3) 2909 | acorn: 8.15.0 2910 | aria-query: 5.3.2 2911 | axobject-query: 4.1.0 2912 | boxen: 8.0.1 2913 | ci-info: 4.3.1 2914 | clsx: 2.1.1 2915 | common-ancestor-path: 1.0.1 2916 | cookie: 1.1.1 2917 | cssesc: 3.0.0 2918 | debug: 4.4.3 2919 | deterministic-object-hash: 2.0.2 2920 | devalue: 5.5.0 2921 | diff: 5.2.0 2922 | dlv: 1.1.3 2923 | dset: 3.1.4 2924 | es-module-lexer: 1.7.0 2925 | esbuild: 0.25.12 2926 | estree-walker: 3.0.3 2927 | flattie: 1.1.1 2928 | fontace: 0.3.1 2929 | github-slugger: 2.0.0 2930 | html-escaper: 3.0.3 2931 | http-cache-semantics: 4.2.0 2932 | import-meta-resolve: 4.2.0 2933 | js-yaml: 4.1.1 2934 | magic-string: 0.30.21 2935 | magicast: 0.5.1 2936 | mrmime: 2.0.1 2937 | neotraverse: 0.6.18 2938 | p-limit: 6.2.0 2939 | p-queue: 8.1.1 2940 | package-manager-detector: 1.6.0 2941 | piccolore: 0.1.3 2942 | picomatch: 4.0.3 2943 | prompts: 2.4.2 2944 | rehype: 13.0.2 2945 | semver: 7.7.3 2946 | shiki: 3.19.0 2947 | smol-toml: 1.5.2 2948 | svgo: 4.0.0 2949 | tinyexec: 1.0.2 2950 | tinyglobby: 0.2.15 2951 | tsconfck: 3.1.6(typescript@5.9.3) 2952 | ultrahtml: 1.6.0 2953 | unifont: 0.6.0 2954 | unist-util-visit: 5.0.0 2955 | unstorage: 1.17.3 2956 | vfile: 6.0.3 2957 | vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2) 2958 | vitefu: 1.1.1(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2)) 2959 | xxhash-wasm: 1.1.0 2960 | yargs-parser: 21.1.1 2961 | yocto-spinner: 0.2.3 2962 | zod: 3.25.76 2963 | zod-to-json-schema: 3.25.0(zod@3.25.76) 2964 | zod-to-ts: 1.2.0(typescript@5.9.3)(zod@3.25.76) 2965 | optionalDependencies: 2966 | sharp: 0.34.5 2967 | transitivePeerDependencies: 2968 | - '@azure/app-configuration' 2969 | - '@azure/cosmos' 2970 | - '@azure/data-tables' 2971 | - '@azure/identity' 2972 | - '@azure/keyvault-secrets' 2973 | - '@azure/storage-blob' 2974 | - '@capacitor/preferences' 2975 | - '@deno/kv' 2976 | - '@netlify/blobs' 2977 | - '@planetscale/database' 2978 | - '@types/node' 2979 | - '@upstash/redis' 2980 | - '@vercel/blob' 2981 | - '@vercel/functions' 2982 | - '@vercel/kv' 2983 | - aws4fetch 2984 | - db0 2985 | - idb-keyval 2986 | - ioredis 2987 | - jiti 2988 | - less 2989 | - lightningcss 2990 | - rollup 2991 | - sass 2992 | - sass-embedded 2993 | - stylus 2994 | - sugarss 2995 | - supports-color 2996 | - terser 2997 | - tsx 2998 | - typescript 2999 | - uploadthing 3000 | - yaml 3001 | 3002 | axobject-query@4.1.0: {} 3003 | 3004 | bail@2.0.2: {} 3005 | 3006 | base-64@1.0.0: {} 3007 | 3008 | base64-js@1.5.1: {} 3009 | 3010 | blake3-wasm@2.1.5: {} 3011 | 3012 | boolbase@1.0.0: {} 3013 | 3014 | boxen@8.0.1: 3015 | dependencies: 3016 | ansi-align: 3.0.1 3017 | camelcase: 8.0.0 3018 | chalk: 5.6.2 3019 | cli-boxes: 3.0.0 3020 | string-width: 7.2.0 3021 | type-fest: 4.41.0 3022 | widest-line: 5.0.0 3023 | wrap-ansi: 9.0.2 3024 | 3025 | brotli@1.3.3: 3026 | dependencies: 3027 | base64-js: 1.5.1 3028 | 3029 | camelcase@8.0.0: {} 3030 | 3031 | ccount@2.0.1: {} 3032 | 3033 | chalk@5.6.2: {} 3034 | 3035 | character-entities-html4@2.1.0: {} 3036 | 3037 | character-entities-legacy@3.0.0: {} 3038 | 3039 | character-entities@2.0.2: {} 3040 | 3041 | chokidar@4.0.3: 3042 | dependencies: 3043 | readdirp: 4.1.2 3044 | 3045 | ci-info@4.3.1: {} 3046 | 3047 | cli-boxes@3.0.0: {} 3048 | 3049 | clone@2.1.2: {} 3050 | 3051 | clsx@2.1.1: {} 3052 | 3053 | color-convert@2.0.1: 3054 | dependencies: 3055 | color-name: 1.1.4 3056 | 3057 | color-name@1.1.4: {} 3058 | 3059 | color-string@1.9.1: 3060 | dependencies: 3061 | color-name: 1.1.4 3062 | simple-swizzle: 0.2.4 3063 | 3064 | color@4.2.3: 3065 | dependencies: 3066 | color-convert: 2.0.1 3067 | color-string: 1.9.1 3068 | 3069 | comma-separated-tokens@2.0.3: {} 3070 | 3071 | commander@11.1.0: {} 3072 | 3073 | common-ancestor-path@1.0.1: {} 3074 | 3075 | cookie-es@1.2.2: {} 3076 | 3077 | cookie@1.1.1: {} 3078 | 3079 | crossws@0.3.5: 3080 | dependencies: 3081 | uncrypto: 0.1.3 3082 | 3083 | css-select@5.2.2: 3084 | dependencies: 3085 | boolbase: 1.0.0 3086 | css-what: 6.2.2 3087 | domhandler: 5.0.3 3088 | domutils: 3.2.2 3089 | nth-check: 2.1.1 3090 | 3091 | css-tree@2.2.1: 3092 | dependencies: 3093 | mdn-data: 2.0.28 3094 | source-map-js: 1.2.1 3095 | 3096 | css-tree@3.1.0: 3097 | dependencies: 3098 | mdn-data: 2.12.2 3099 | source-map-js: 1.2.1 3100 | 3101 | css-what@6.2.2: {} 3102 | 3103 | cssesc@3.0.0: {} 3104 | 3105 | csso@5.0.5: 3106 | dependencies: 3107 | css-tree: 2.2.1 3108 | 3109 | debug@4.4.3: 3110 | dependencies: 3111 | ms: 2.1.3 3112 | 3113 | decode-named-character-reference@1.2.0: 3114 | dependencies: 3115 | character-entities: 2.0.2 3116 | 3117 | defu@6.1.4: {} 3118 | 3119 | dequal@2.0.3: {} 3120 | 3121 | destr@2.0.5: {} 3122 | 3123 | detect-libc@2.1.2: {} 3124 | 3125 | deterministic-object-hash@2.0.2: 3126 | dependencies: 3127 | base-64: 1.0.0 3128 | 3129 | devalue@5.5.0: {} 3130 | 3131 | devlop@1.1.0: 3132 | dependencies: 3133 | dequal: 2.0.3 3134 | 3135 | dfa@1.2.0: {} 3136 | 3137 | diff@5.2.0: {} 3138 | 3139 | dlv@1.1.3: {} 3140 | 3141 | dom-serializer@2.0.0: 3142 | dependencies: 3143 | domelementtype: 2.3.0 3144 | domhandler: 5.0.3 3145 | entities: 4.5.0 3146 | 3147 | domelementtype@2.3.0: {} 3148 | 3149 | domhandler@5.0.3: 3150 | dependencies: 3151 | domelementtype: 2.3.0 3152 | 3153 | domutils@3.2.2: 3154 | dependencies: 3155 | dom-serializer: 2.0.0 3156 | domelementtype: 2.3.0 3157 | domhandler: 5.0.3 3158 | 3159 | dset@3.1.4: {} 3160 | 3161 | emoji-regex@10.6.0: {} 3162 | 3163 | emoji-regex@8.0.0: {} 3164 | 3165 | enhanced-resolve@5.18.3: 3166 | dependencies: 3167 | graceful-fs: 4.2.11 3168 | tapable: 2.3.0 3169 | 3170 | entities@4.5.0: {} 3171 | 3172 | entities@6.0.1: {} 3173 | 3174 | error-stack-parser-es@1.0.5: {} 3175 | 3176 | es-module-lexer@1.7.0: {} 3177 | 3178 | esbuild@0.25.12: 3179 | optionalDependencies: 3180 | '@esbuild/aix-ppc64': 0.25.12 3181 | '@esbuild/android-arm': 0.25.12 3182 | '@esbuild/android-arm64': 0.25.12 3183 | '@esbuild/android-x64': 0.25.12 3184 | '@esbuild/darwin-arm64': 0.25.12 3185 | '@esbuild/darwin-x64': 0.25.12 3186 | '@esbuild/freebsd-arm64': 0.25.12 3187 | '@esbuild/freebsd-x64': 0.25.12 3188 | '@esbuild/linux-arm': 0.25.12 3189 | '@esbuild/linux-arm64': 0.25.12 3190 | '@esbuild/linux-ia32': 0.25.12 3191 | '@esbuild/linux-loong64': 0.25.12 3192 | '@esbuild/linux-mips64el': 0.25.12 3193 | '@esbuild/linux-ppc64': 0.25.12 3194 | '@esbuild/linux-riscv64': 0.25.12 3195 | '@esbuild/linux-s390x': 0.25.12 3196 | '@esbuild/linux-x64': 0.25.12 3197 | '@esbuild/netbsd-arm64': 0.25.12 3198 | '@esbuild/netbsd-x64': 0.25.12 3199 | '@esbuild/openbsd-arm64': 0.25.12 3200 | '@esbuild/openbsd-x64': 0.25.12 3201 | '@esbuild/openharmony-arm64': 0.25.12 3202 | '@esbuild/sunos-x64': 0.25.12 3203 | '@esbuild/win32-arm64': 0.25.12 3204 | '@esbuild/win32-ia32': 0.25.12 3205 | '@esbuild/win32-x64': 0.25.12 3206 | 3207 | esbuild@0.25.4: 3208 | optionalDependencies: 3209 | '@esbuild/aix-ppc64': 0.25.4 3210 | '@esbuild/android-arm': 0.25.4 3211 | '@esbuild/android-arm64': 0.25.4 3212 | '@esbuild/android-x64': 0.25.4 3213 | '@esbuild/darwin-arm64': 0.25.4 3214 | '@esbuild/darwin-x64': 0.25.4 3215 | '@esbuild/freebsd-arm64': 0.25.4 3216 | '@esbuild/freebsd-x64': 0.25.4 3217 | '@esbuild/linux-arm': 0.25.4 3218 | '@esbuild/linux-arm64': 0.25.4 3219 | '@esbuild/linux-ia32': 0.25.4 3220 | '@esbuild/linux-loong64': 0.25.4 3221 | '@esbuild/linux-mips64el': 0.25.4 3222 | '@esbuild/linux-ppc64': 0.25.4 3223 | '@esbuild/linux-riscv64': 0.25.4 3224 | '@esbuild/linux-s390x': 0.25.4 3225 | '@esbuild/linux-x64': 0.25.4 3226 | '@esbuild/netbsd-arm64': 0.25.4 3227 | '@esbuild/netbsd-x64': 0.25.4 3228 | '@esbuild/openbsd-arm64': 0.25.4 3229 | '@esbuild/openbsd-x64': 0.25.4 3230 | '@esbuild/sunos-x64': 0.25.4 3231 | '@esbuild/win32-arm64': 0.25.4 3232 | '@esbuild/win32-ia32': 0.25.4 3233 | '@esbuild/win32-x64': 0.25.4 3234 | 3235 | escape-string-regexp@5.0.0: {} 3236 | 3237 | estree-walker@2.0.2: {} 3238 | 3239 | estree-walker@3.0.3: 3240 | dependencies: 3241 | '@types/estree': 1.0.8 3242 | 3243 | eventemitter3@5.0.1: {} 3244 | 3245 | exit-hook@2.2.1: {} 3246 | 3247 | extend@3.0.2: {} 3248 | 3249 | fast-deep-equal@3.1.3: {} 3250 | 3251 | fdir@6.5.0(picomatch@4.0.3): 3252 | optionalDependencies: 3253 | picomatch: 4.0.3 3254 | 3255 | flattie@1.1.1: {} 3256 | 3257 | fontace@0.3.1: 3258 | dependencies: 3259 | '@types/fontkit': 2.0.8 3260 | fontkit: 2.0.4 3261 | 3262 | fontkit@2.0.4: 3263 | dependencies: 3264 | '@swc/helpers': 0.5.17 3265 | brotli: 1.3.3 3266 | clone: 2.1.2 3267 | dfa: 1.2.0 3268 | fast-deep-equal: 3.1.3 3269 | restructure: 3.0.2 3270 | tiny-inflate: 1.0.3 3271 | unicode-properties: 1.4.1 3272 | unicode-trie: 2.0.0 3273 | 3274 | fsevents@2.3.3: 3275 | optional: true 3276 | 3277 | get-east-asian-width@1.4.0: {} 3278 | 3279 | github-slugger@2.0.0: {} 3280 | 3281 | glob-to-regexp@0.4.1: {} 3282 | 3283 | graceful-fs@4.2.11: {} 3284 | 3285 | h3@1.15.4: 3286 | dependencies: 3287 | cookie-es: 1.2.2 3288 | crossws: 0.3.5 3289 | defu: 6.1.4 3290 | destr: 2.0.5 3291 | iron-webcrypto: 1.2.1 3292 | node-mock-http: 1.0.3 3293 | radix3: 1.1.2 3294 | ufo: 1.6.1 3295 | uncrypto: 0.1.3 3296 | 3297 | hast-util-from-html@2.0.3: 3298 | dependencies: 3299 | '@types/hast': 3.0.4 3300 | devlop: 1.1.0 3301 | hast-util-from-parse5: 8.0.3 3302 | parse5: 7.3.0 3303 | vfile: 6.0.3 3304 | vfile-message: 4.0.3 3305 | 3306 | hast-util-from-parse5@8.0.3: 3307 | dependencies: 3308 | '@types/hast': 3.0.4 3309 | '@types/unist': 3.0.3 3310 | devlop: 1.1.0 3311 | hastscript: 9.0.1 3312 | property-information: 7.1.0 3313 | vfile: 6.0.3 3314 | vfile-location: 5.0.3 3315 | web-namespaces: 2.0.1 3316 | 3317 | hast-util-is-element@3.0.0: 3318 | dependencies: 3319 | '@types/hast': 3.0.4 3320 | 3321 | hast-util-parse-selector@4.0.0: 3322 | dependencies: 3323 | '@types/hast': 3.0.4 3324 | 3325 | hast-util-raw@9.1.0: 3326 | dependencies: 3327 | '@types/hast': 3.0.4 3328 | '@types/unist': 3.0.3 3329 | '@ungap/structured-clone': 1.3.0 3330 | hast-util-from-parse5: 8.0.3 3331 | hast-util-to-parse5: 8.0.0 3332 | html-void-elements: 3.0.0 3333 | mdast-util-to-hast: 13.2.1 3334 | parse5: 7.3.0 3335 | unist-util-position: 5.0.0 3336 | unist-util-visit: 5.0.0 3337 | vfile: 6.0.3 3338 | web-namespaces: 2.0.1 3339 | zwitch: 2.0.4 3340 | 3341 | hast-util-to-html@9.0.5: 3342 | dependencies: 3343 | '@types/hast': 3.0.4 3344 | '@types/unist': 3.0.3 3345 | ccount: 2.0.1 3346 | comma-separated-tokens: 2.0.3 3347 | hast-util-whitespace: 3.0.0 3348 | html-void-elements: 3.0.0 3349 | mdast-util-to-hast: 13.2.1 3350 | property-information: 7.1.0 3351 | space-separated-tokens: 2.0.2 3352 | stringify-entities: 4.0.4 3353 | zwitch: 2.0.4 3354 | 3355 | hast-util-to-parse5@8.0.0: 3356 | dependencies: 3357 | '@types/hast': 3.0.4 3358 | comma-separated-tokens: 2.0.3 3359 | devlop: 1.1.0 3360 | property-information: 6.5.0 3361 | space-separated-tokens: 2.0.2 3362 | web-namespaces: 2.0.1 3363 | zwitch: 2.0.4 3364 | 3365 | hast-util-to-text@4.0.2: 3366 | dependencies: 3367 | '@types/hast': 3.0.4 3368 | '@types/unist': 3.0.3 3369 | hast-util-is-element: 3.0.0 3370 | unist-util-find-after: 5.0.0 3371 | 3372 | hast-util-whitespace@3.0.0: 3373 | dependencies: 3374 | '@types/hast': 3.0.4 3375 | 3376 | hastscript@9.0.1: 3377 | dependencies: 3378 | '@types/hast': 3.0.4 3379 | comma-separated-tokens: 2.0.3 3380 | hast-util-parse-selector: 4.0.0 3381 | property-information: 7.1.0 3382 | space-separated-tokens: 2.0.2 3383 | 3384 | html-escaper@3.0.3: {} 3385 | 3386 | html-void-elements@3.0.0: {} 3387 | 3388 | http-cache-semantics@4.2.0: {} 3389 | 3390 | import-meta-resolve@4.2.0: {} 3391 | 3392 | iron-webcrypto@1.2.1: {} 3393 | 3394 | is-arrayish@0.3.4: {} 3395 | 3396 | is-docker@3.0.0: {} 3397 | 3398 | is-fullwidth-code-point@3.0.0: {} 3399 | 3400 | is-inside-container@1.0.0: 3401 | dependencies: 3402 | is-docker: 3.0.0 3403 | 3404 | is-plain-obj@4.1.0: {} 3405 | 3406 | is-wsl@3.1.0: 3407 | dependencies: 3408 | is-inside-container: 1.0.0 3409 | 3410 | jiti@2.6.1: {} 3411 | 3412 | js-yaml@4.1.1: 3413 | dependencies: 3414 | argparse: 2.0.1 3415 | 3416 | kleur@3.0.3: {} 3417 | 3418 | kleur@4.1.5: {} 3419 | 3420 | lightningcss-android-arm64@1.30.2: 3421 | optional: true 3422 | 3423 | lightningcss-darwin-arm64@1.30.2: 3424 | optional: true 3425 | 3426 | lightningcss-darwin-x64@1.30.2: 3427 | optional: true 3428 | 3429 | lightningcss-freebsd-x64@1.30.2: 3430 | optional: true 3431 | 3432 | lightningcss-linux-arm-gnueabihf@1.30.2: 3433 | optional: true 3434 | 3435 | lightningcss-linux-arm64-gnu@1.30.2: 3436 | optional: true 3437 | 3438 | lightningcss-linux-arm64-musl@1.30.2: 3439 | optional: true 3440 | 3441 | lightningcss-linux-x64-gnu@1.30.2: 3442 | optional: true 3443 | 3444 | lightningcss-linux-x64-musl@1.30.2: 3445 | optional: true 3446 | 3447 | lightningcss-win32-arm64-msvc@1.30.2: 3448 | optional: true 3449 | 3450 | lightningcss-win32-x64-msvc@1.30.2: 3451 | optional: true 3452 | 3453 | lightningcss@1.30.2: 3454 | dependencies: 3455 | detect-libc: 2.1.2 3456 | optionalDependencies: 3457 | lightningcss-android-arm64: 1.30.2 3458 | lightningcss-darwin-arm64: 1.30.2 3459 | lightningcss-darwin-x64: 1.30.2 3460 | lightningcss-freebsd-x64: 1.30.2 3461 | lightningcss-linux-arm-gnueabihf: 1.30.2 3462 | lightningcss-linux-arm64-gnu: 1.30.2 3463 | lightningcss-linux-arm64-musl: 1.30.2 3464 | lightningcss-linux-x64-gnu: 1.30.2 3465 | lightningcss-linux-x64-musl: 1.30.2 3466 | lightningcss-win32-arm64-msvc: 1.30.2 3467 | lightningcss-win32-x64-msvc: 1.30.2 3468 | 3469 | longest-streak@3.1.0: {} 3470 | 3471 | lru-cache@10.4.3: {} 3472 | 3473 | magic-string@0.30.21: 3474 | dependencies: 3475 | '@jridgewell/sourcemap-codec': 1.5.5 3476 | 3477 | magicast@0.5.1: 3478 | dependencies: 3479 | '@babel/parser': 7.28.5 3480 | '@babel/types': 7.28.5 3481 | source-map-js: 1.2.1 3482 | 3483 | markdown-table@3.0.4: {} 3484 | 3485 | mdast-util-definitions@6.0.0: 3486 | dependencies: 3487 | '@types/mdast': 4.0.4 3488 | '@types/unist': 3.0.3 3489 | unist-util-visit: 5.0.0 3490 | 3491 | mdast-util-find-and-replace@3.0.2: 3492 | dependencies: 3493 | '@types/mdast': 4.0.4 3494 | escape-string-regexp: 5.0.0 3495 | unist-util-is: 6.0.1 3496 | unist-util-visit-parents: 6.0.2 3497 | 3498 | mdast-util-from-markdown@2.0.2: 3499 | dependencies: 3500 | '@types/mdast': 4.0.4 3501 | '@types/unist': 3.0.3 3502 | decode-named-character-reference: 1.2.0 3503 | devlop: 1.1.0 3504 | mdast-util-to-string: 4.0.0 3505 | micromark: 4.0.2 3506 | micromark-util-decode-numeric-character-reference: 2.0.2 3507 | micromark-util-decode-string: 2.0.1 3508 | micromark-util-normalize-identifier: 2.0.1 3509 | micromark-util-symbol: 2.0.1 3510 | micromark-util-types: 2.0.2 3511 | unist-util-stringify-position: 4.0.0 3512 | transitivePeerDependencies: 3513 | - supports-color 3514 | 3515 | mdast-util-gfm-autolink-literal@2.0.1: 3516 | dependencies: 3517 | '@types/mdast': 4.0.4 3518 | ccount: 2.0.1 3519 | devlop: 1.1.0 3520 | mdast-util-find-and-replace: 3.0.2 3521 | micromark-util-character: 2.1.1 3522 | 3523 | mdast-util-gfm-footnote@2.1.0: 3524 | dependencies: 3525 | '@types/mdast': 4.0.4 3526 | devlop: 1.1.0 3527 | mdast-util-from-markdown: 2.0.2 3528 | mdast-util-to-markdown: 2.1.2 3529 | micromark-util-normalize-identifier: 2.0.1 3530 | transitivePeerDependencies: 3531 | - supports-color 3532 | 3533 | mdast-util-gfm-strikethrough@2.0.0: 3534 | dependencies: 3535 | '@types/mdast': 4.0.4 3536 | mdast-util-from-markdown: 2.0.2 3537 | mdast-util-to-markdown: 2.1.2 3538 | transitivePeerDependencies: 3539 | - supports-color 3540 | 3541 | mdast-util-gfm-table@2.0.0: 3542 | dependencies: 3543 | '@types/mdast': 4.0.4 3544 | devlop: 1.1.0 3545 | markdown-table: 3.0.4 3546 | mdast-util-from-markdown: 2.0.2 3547 | mdast-util-to-markdown: 2.1.2 3548 | transitivePeerDependencies: 3549 | - supports-color 3550 | 3551 | mdast-util-gfm-task-list-item@2.0.0: 3552 | dependencies: 3553 | '@types/mdast': 4.0.4 3554 | devlop: 1.1.0 3555 | mdast-util-from-markdown: 2.0.2 3556 | mdast-util-to-markdown: 2.1.2 3557 | transitivePeerDependencies: 3558 | - supports-color 3559 | 3560 | mdast-util-gfm@3.1.0: 3561 | dependencies: 3562 | mdast-util-from-markdown: 2.0.2 3563 | mdast-util-gfm-autolink-literal: 2.0.1 3564 | mdast-util-gfm-footnote: 2.1.0 3565 | mdast-util-gfm-strikethrough: 2.0.0 3566 | mdast-util-gfm-table: 2.0.0 3567 | mdast-util-gfm-task-list-item: 2.0.0 3568 | mdast-util-to-markdown: 2.1.2 3569 | transitivePeerDependencies: 3570 | - supports-color 3571 | 3572 | mdast-util-phrasing@4.1.0: 3573 | dependencies: 3574 | '@types/mdast': 4.0.4 3575 | unist-util-is: 6.0.1 3576 | 3577 | mdast-util-to-hast@13.2.1: 3578 | dependencies: 3579 | '@types/hast': 3.0.4 3580 | '@types/mdast': 4.0.4 3581 | '@ungap/structured-clone': 1.3.0 3582 | devlop: 1.1.0 3583 | micromark-util-sanitize-uri: 2.0.1 3584 | trim-lines: 3.0.1 3585 | unist-util-position: 5.0.0 3586 | unist-util-visit: 5.0.0 3587 | vfile: 6.0.3 3588 | 3589 | mdast-util-to-markdown@2.1.2: 3590 | dependencies: 3591 | '@types/mdast': 4.0.4 3592 | '@types/unist': 3.0.3 3593 | longest-streak: 3.1.0 3594 | mdast-util-phrasing: 4.1.0 3595 | mdast-util-to-string: 4.0.0 3596 | micromark-util-classify-character: 2.0.1 3597 | micromark-util-decode-string: 2.0.1 3598 | unist-util-visit: 5.0.0 3599 | zwitch: 2.0.4 3600 | 3601 | mdast-util-to-string@4.0.0: 3602 | dependencies: 3603 | '@types/mdast': 4.0.4 3604 | 3605 | mdn-data@2.0.28: {} 3606 | 3607 | mdn-data@2.12.2: {} 3608 | 3609 | micromark-core-commonmark@2.0.3: 3610 | dependencies: 3611 | decode-named-character-reference: 1.2.0 3612 | devlop: 1.1.0 3613 | micromark-factory-destination: 2.0.1 3614 | micromark-factory-label: 2.0.1 3615 | micromark-factory-space: 2.0.1 3616 | micromark-factory-title: 2.0.1 3617 | micromark-factory-whitespace: 2.0.1 3618 | micromark-util-character: 2.1.1 3619 | micromark-util-chunked: 2.0.1 3620 | micromark-util-classify-character: 2.0.1 3621 | micromark-util-html-tag-name: 2.0.1 3622 | micromark-util-normalize-identifier: 2.0.1 3623 | micromark-util-resolve-all: 2.0.1 3624 | micromark-util-subtokenize: 2.1.0 3625 | micromark-util-symbol: 2.0.1 3626 | micromark-util-types: 2.0.2 3627 | 3628 | micromark-extension-gfm-autolink-literal@2.1.0: 3629 | dependencies: 3630 | micromark-util-character: 2.1.1 3631 | micromark-util-sanitize-uri: 2.0.1 3632 | micromark-util-symbol: 2.0.1 3633 | micromark-util-types: 2.0.2 3634 | 3635 | micromark-extension-gfm-footnote@2.1.0: 3636 | dependencies: 3637 | devlop: 1.1.0 3638 | micromark-core-commonmark: 2.0.3 3639 | micromark-factory-space: 2.0.1 3640 | micromark-util-character: 2.1.1 3641 | micromark-util-normalize-identifier: 2.0.1 3642 | micromark-util-sanitize-uri: 2.0.1 3643 | micromark-util-symbol: 2.0.1 3644 | micromark-util-types: 2.0.2 3645 | 3646 | micromark-extension-gfm-strikethrough@2.1.0: 3647 | dependencies: 3648 | devlop: 1.1.0 3649 | micromark-util-chunked: 2.0.1 3650 | micromark-util-classify-character: 2.0.1 3651 | micromark-util-resolve-all: 2.0.1 3652 | micromark-util-symbol: 2.0.1 3653 | micromark-util-types: 2.0.2 3654 | 3655 | micromark-extension-gfm-table@2.1.1: 3656 | dependencies: 3657 | devlop: 1.1.0 3658 | micromark-factory-space: 2.0.1 3659 | micromark-util-character: 2.1.1 3660 | micromark-util-symbol: 2.0.1 3661 | micromark-util-types: 2.0.2 3662 | 3663 | micromark-extension-gfm-tagfilter@2.0.0: 3664 | dependencies: 3665 | micromark-util-types: 2.0.2 3666 | 3667 | micromark-extension-gfm-task-list-item@2.1.0: 3668 | dependencies: 3669 | devlop: 1.1.0 3670 | micromark-factory-space: 2.0.1 3671 | micromark-util-character: 2.1.1 3672 | micromark-util-symbol: 2.0.1 3673 | micromark-util-types: 2.0.2 3674 | 3675 | micromark-extension-gfm@3.0.0: 3676 | dependencies: 3677 | micromark-extension-gfm-autolink-literal: 2.1.0 3678 | micromark-extension-gfm-footnote: 2.1.0 3679 | micromark-extension-gfm-strikethrough: 2.1.0 3680 | micromark-extension-gfm-table: 2.1.1 3681 | micromark-extension-gfm-tagfilter: 2.0.0 3682 | micromark-extension-gfm-task-list-item: 2.1.0 3683 | micromark-util-combine-extensions: 2.0.1 3684 | micromark-util-types: 2.0.2 3685 | 3686 | micromark-factory-destination@2.0.1: 3687 | dependencies: 3688 | micromark-util-character: 2.1.1 3689 | micromark-util-symbol: 2.0.1 3690 | micromark-util-types: 2.0.2 3691 | 3692 | micromark-factory-label@2.0.1: 3693 | dependencies: 3694 | devlop: 1.1.0 3695 | micromark-util-character: 2.1.1 3696 | micromark-util-symbol: 2.0.1 3697 | micromark-util-types: 2.0.2 3698 | 3699 | micromark-factory-space@2.0.1: 3700 | dependencies: 3701 | micromark-util-character: 2.1.1 3702 | micromark-util-types: 2.0.2 3703 | 3704 | micromark-factory-title@2.0.1: 3705 | dependencies: 3706 | micromark-factory-space: 2.0.1 3707 | micromark-util-character: 2.1.1 3708 | micromark-util-symbol: 2.0.1 3709 | micromark-util-types: 2.0.2 3710 | 3711 | micromark-factory-whitespace@2.0.1: 3712 | dependencies: 3713 | micromark-factory-space: 2.0.1 3714 | micromark-util-character: 2.1.1 3715 | micromark-util-symbol: 2.0.1 3716 | micromark-util-types: 2.0.2 3717 | 3718 | micromark-util-character@2.1.1: 3719 | dependencies: 3720 | micromark-util-symbol: 2.0.1 3721 | micromark-util-types: 2.0.2 3722 | 3723 | micromark-util-chunked@2.0.1: 3724 | dependencies: 3725 | micromark-util-symbol: 2.0.1 3726 | 3727 | micromark-util-classify-character@2.0.1: 3728 | dependencies: 3729 | micromark-util-character: 2.1.1 3730 | micromark-util-symbol: 2.0.1 3731 | micromark-util-types: 2.0.2 3732 | 3733 | micromark-util-combine-extensions@2.0.1: 3734 | dependencies: 3735 | micromark-util-chunked: 2.0.1 3736 | micromark-util-types: 2.0.2 3737 | 3738 | micromark-util-decode-numeric-character-reference@2.0.2: 3739 | dependencies: 3740 | micromark-util-symbol: 2.0.1 3741 | 3742 | micromark-util-decode-string@2.0.1: 3743 | dependencies: 3744 | decode-named-character-reference: 1.2.0 3745 | micromark-util-character: 2.1.1 3746 | micromark-util-decode-numeric-character-reference: 2.0.2 3747 | micromark-util-symbol: 2.0.1 3748 | 3749 | micromark-util-encode@2.0.1: {} 3750 | 3751 | micromark-util-html-tag-name@2.0.1: {} 3752 | 3753 | micromark-util-normalize-identifier@2.0.1: 3754 | dependencies: 3755 | micromark-util-symbol: 2.0.1 3756 | 3757 | micromark-util-resolve-all@2.0.1: 3758 | dependencies: 3759 | micromark-util-types: 2.0.2 3760 | 3761 | micromark-util-sanitize-uri@2.0.1: 3762 | dependencies: 3763 | micromark-util-character: 2.1.1 3764 | micromark-util-encode: 2.0.1 3765 | micromark-util-symbol: 2.0.1 3766 | 3767 | micromark-util-subtokenize@2.1.0: 3768 | dependencies: 3769 | devlop: 1.1.0 3770 | micromark-util-chunked: 2.0.1 3771 | micromark-util-symbol: 2.0.1 3772 | micromark-util-types: 2.0.2 3773 | 3774 | micromark-util-symbol@2.0.1: {} 3775 | 3776 | micromark-util-types@2.0.2: {} 3777 | 3778 | micromark@4.0.2: 3779 | dependencies: 3780 | '@types/debug': 4.1.12 3781 | debug: 4.4.3 3782 | decode-named-character-reference: 1.2.0 3783 | devlop: 1.1.0 3784 | micromark-core-commonmark: 2.0.3 3785 | micromark-factory-space: 2.0.1 3786 | micromark-util-character: 2.1.1 3787 | micromark-util-chunked: 2.0.1 3788 | micromark-util-combine-extensions: 2.0.1 3789 | micromark-util-decode-numeric-character-reference: 2.0.2 3790 | micromark-util-encode: 2.0.1 3791 | micromark-util-normalize-identifier: 2.0.1 3792 | micromark-util-resolve-all: 2.0.1 3793 | micromark-util-sanitize-uri: 2.0.1 3794 | micromark-util-subtokenize: 2.1.0 3795 | micromark-util-symbol: 2.0.1 3796 | micromark-util-types: 2.0.2 3797 | transitivePeerDependencies: 3798 | - supports-color 3799 | 3800 | mime@3.0.0: {} 3801 | 3802 | miniflare@4.20251125.0: 3803 | dependencies: 3804 | '@cspotcode/source-map-support': 0.8.1 3805 | acorn: 8.14.0 3806 | acorn-walk: 8.3.2 3807 | exit-hook: 2.2.1 3808 | glob-to-regexp: 0.4.1 3809 | sharp: 0.33.5 3810 | stoppable: 1.1.0 3811 | undici: 7.14.0 3812 | workerd: 1.20251125.0 3813 | ws: 8.18.0 3814 | youch: 4.1.0-beta.10 3815 | zod: 3.22.3 3816 | transitivePeerDependencies: 3817 | - bufferutil 3818 | - utf-8-validate 3819 | 3820 | mrmime@2.0.1: {} 3821 | 3822 | ms@2.1.3: {} 3823 | 3824 | nanoid@3.3.11: {} 3825 | 3826 | neotraverse@0.6.18: {} 3827 | 3828 | nlcst-to-string@4.0.0: 3829 | dependencies: 3830 | '@types/nlcst': 2.0.3 3831 | 3832 | node-fetch-native@1.6.7: {} 3833 | 3834 | node-mock-http@1.0.3: {} 3835 | 3836 | normalize-path@3.0.0: {} 3837 | 3838 | nth-check@2.1.1: 3839 | dependencies: 3840 | boolbase: 1.0.0 3841 | 3842 | ofetch@1.5.1: 3843 | dependencies: 3844 | destr: 2.0.5 3845 | node-fetch-native: 1.6.7 3846 | ufo: 1.6.1 3847 | 3848 | ohash@2.0.11: {} 3849 | 3850 | oniguruma-parser@0.12.1: {} 3851 | 3852 | oniguruma-to-es@4.3.4: 3853 | dependencies: 3854 | oniguruma-parser: 0.12.1 3855 | regex: 6.0.1 3856 | regex-recursion: 6.0.2 3857 | 3858 | p-limit@6.2.0: 3859 | dependencies: 3860 | yocto-queue: 1.2.2 3861 | 3862 | p-queue@8.1.1: 3863 | dependencies: 3864 | eventemitter3: 5.0.1 3865 | p-timeout: 6.1.4 3866 | 3867 | p-timeout@6.1.4: {} 3868 | 3869 | package-manager-detector@1.6.0: {} 3870 | 3871 | pako@0.2.9: {} 3872 | 3873 | parse-latin@7.0.0: 3874 | dependencies: 3875 | '@types/nlcst': 2.0.3 3876 | '@types/unist': 3.0.3 3877 | nlcst-to-string: 4.0.0 3878 | unist-util-modify-children: 4.0.0 3879 | unist-util-visit-children: 3.0.0 3880 | vfile: 6.0.3 3881 | 3882 | parse5@7.3.0: 3883 | dependencies: 3884 | entities: 6.0.1 3885 | 3886 | path-to-regexp@6.3.0: {} 3887 | 3888 | pathe@2.0.3: {} 3889 | 3890 | piccolore@0.1.3: {} 3891 | 3892 | picocolors@1.1.1: {} 3893 | 3894 | picomatch@2.3.1: {} 3895 | 3896 | picomatch@4.0.3: {} 3897 | 3898 | postcss@8.5.6: 3899 | dependencies: 3900 | nanoid: 3.3.11 3901 | picocolors: 1.1.1 3902 | source-map-js: 1.2.1 3903 | 3904 | prismjs@1.30.0: {} 3905 | 3906 | prompts@2.4.2: 3907 | dependencies: 3908 | kleur: 3.0.3 3909 | sisteransi: 1.0.5 3910 | 3911 | property-information@6.5.0: {} 3912 | 3913 | property-information@7.1.0: {} 3914 | 3915 | radix3@1.1.2: {} 3916 | 3917 | readdirp@4.1.2: {} 3918 | 3919 | regex-recursion@6.0.2: 3920 | dependencies: 3921 | regex-utilities: 2.3.0 3922 | 3923 | regex-utilities@2.3.0: {} 3924 | 3925 | regex@6.0.1: 3926 | dependencies: 3927 | regex-utilities: 2.3.0 3928 | 3929 | rehype-parse@9.0.1: 3930 | dependencies: 3931 | '@types/hast': 3.0.4 3932 | hast-util-from-html: 2.0.3 3933 | unified: 11.0.5 3934 | 3935 | rehype-raw@7.0.0: 3936 | dependencies: 3937 | '@types/hast': 3.0.4 3938 | hast-util-raw: 9.1.0 3939 | vfile: 6.0.3 3940 | 3941 | rehype-stringify@10.0.1: 3942 | dependencies: 3943 | '@types/hast': 3.0.4 3944 | hast-util-to-html: 9.0.5 3945 | unified: 11.0.5 3946 | 3947 | rehype@13.0.2: 3948 | dependencies: 3949 | '@types/hast': 3.0.4 3950 | rehype-parse: 9.0.1 3951 | rehype-stringify: 10.0.1 3952 | unified: 11.0.5 3953 | 3954 | remark-gfm@4.0.1: 3955 | dependencies: 3956 | '@types/mdast': 4.0.4 3957 | mdast-util-gfm: 3.1.0 3958 | micromark-extension-gfm: 3.0.0 3959 | remark-parse: 11.0.0 3960 | remark-stringify: 11.0.0 3961 | unified: 11.0.5 3962 | transitivePeerDependencies: 3963 | - supports-color 3964 | 3965 | remark-parse@11.0.0: 3966 | dependencies: 3967 | '@types/mdast': 4.0.4 3968 | mdast-util-from-markdown: 2.0.2 3969 | micromark-util-types: 2.0.2 3970 | unified: 11.0.5 3971 | transitivePeerDependencies: 3972 | - supports-color 3973 | 3974 | remark-rehype@11.1.2: 3975 | dependencies: 3976 | '@types/hast': 3.0.4 3977 | '@types/mdast': 4.0.4 3978 | mdast-util-to-hast: 13.2.1 3979 | unified: 11.0.5 3980 | vfile: 6.0.3 3981 | 3982 | remark-smartypants@3.0.2: 3983 | dependencies: 3984 | retext: 9.0.0 3985 | retext-smartypants: 6.2.0 3986 | unified: 11.0.5 3987 | unist-util-visit: 5.0.0 3988 | 3989 | remark-stringify@11.0.0: 3990 | dependencies: 3991 | '@types/mdast': 4.0.4 3992 | mdast-util-to-markdown: 2.1.2 3993 | unified: 11.0.5 3994 | 3995 | restructure@3.0.2: {} 3996 | 3997 | retext-latin@4.0.0: 3998 | dependencies: 3999 | '@types/nlcst': 2.0.3 4000 | parse-latin: 7.0.0 4001 | unified: 11.0.5 4002 | 4003 | retext-smartypants@6.2.0: 4004 | dependencies: 4005 | '@types/nlcst': 2.0.3 4006 | nlcst-to-string: 4.0.0 4007 | unist-util-visit: 5.0.0 4008 | 4009 | retext-stringify@4.0.0: 4010 | dependencies: 4011 | '@types/nlcst': 2.0.3 4012 | nlcst-to-string: 4.0.0 4013 | unified: 11.0.5 4014 | 4015 | retext@9.0.0: 4016 | dependencies: 4017 | '@types/nlcst': 2.0.3 4018 | retext-latin: 4.0.0 4019 | retext-stringify: 4.0.0 4020 | unified: 11.0.5 4021 | 4022 | rollup@4.53.3: 4023 | dependencies: 4024 | '@types/estree': 1.0.8 4025 | optionalDependencies: 4026 | '@rollup/rollup-android-arm-eabi': 4.53.3 4027 | '@rollup/rollup-android-arm64': 4.53.3 4028 | '@rollup/rollup-darwin-arm64': 4.53.3 4029 | '@rollup/rollup-darwin-x64': 4.53.3 4030 | '@rollup/rollup-freebsd-arm64': 4.53.3 4031 | '@rollup/rollup-freebsd-x64': 4.53.3 4032 | '@rollup/rollup-linux-arm-gnueabihf': 4.53.3 4033 | '@rollup/rollup-linux-arm-musleabihf': 4.53.3 4034 | '@rollup/rollup-linux-arm64-gnu': 4.53.3 4035 | '@rollup/rollup-linux-arm64-musl': 4.53.3 4036 | '@rollup/rollup-linux-loong64-gnu': 4.53.3 4037 | '@rollup/rollup-linux-ppc64-gnu': 4.53.3 4038 | '@rollup/rollup-linux-riscv64-gnu': 4.53.3 4039 | '@rollup/rollup-linux-riscv64-musl': 4.53.3 4040 | '@rollup/rollup-linux-s390x-gnu': 4.53.3 4041 | '@rollup/rollup-linux-x64-gnu': 4.53.3 4042 | '@rollup/rollup-linux-x64-musl': 4.53.3 4043 | '@rollup/rollup-openharmony-arm64': 4.53.3 4044 | '@rollup/rollup-win32-arm64-msvc': 4.53.3 4045 | '@rollup/rollup-win32-ia32-msvc': 4.53.3 4046 | '@rollup/rollup-win32-x64-gnu': 4.53.3 4047 | '@rollup/rollup-win32-x64-msvc': 4.53.3 4048 | fsevents: 2.3.3 4049 | 4050 | sax@1.4.3: {} 4051 | 4052 | semver@7.7.3: {} 4053 | 4054 | sharp@0.33.5: 4055 | dependencies: 4056 | color: 4.2.3 4057 | detect-libc: 2.1.2 4058 | semver: 7.7.3 4059 | optionalDependencies: 4060 | '@img/sharp-darwin-arm64': 0.33.5 4061 | '@img/sharp-darwin-x64': 0.33.5 4062 | '@img/sharp-libvips-darwin-arm64': 1.0.4 4063 | '@img/sharp-libvips-darwin-x64': 1.0.4 4064 | '@img/sharp-libvips-linux-arm': 1.0.5 4065 | '@img/sharp-libvips-linux-arm64': 1.0.4 4066 | '@img/sharp-libvips-linux-s390x': 1.0.4 4067 | '@img/sharp-libvips-linux-x64': 1.0.4 4068 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 4069 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4 4070 | '@img/sharp-linux-arm': 0.33.5 4071 | '@img/sharp-linux-arm64': 0.33.5 4072 | '@img/sharp-linux-s390x': 0.33.5 4073 | '@img/sharp-linux-x64': 0.33.5 4074 | '@img/sharp-linuxmusl-arm64': 0.33.5 4075 | '@img/sharp-linuxmusl-x64': 0.33.5 4076 | '@img/sharp-wasm32': 0.33.5 4077 | '@img/sharp-win32-ia32': 0.33.5 4078 | '@img/sharp-win32-x64': 0.33.5 4079 | 4080 | sharp@0.34.5: 4081 | dependencies: 4082 | '@img/colour': 1.0.0 4083 | detect-libc: 2.1.2 4084 | semver: 7.7.3 4085 | optionalDependencies: 4086 | '@img/sharp-darwin-arm64': 0.34.5 4087 | '@img/sharp-darwin-x64': 0.34.5 4088 | '@img/sharp-libvips-darwin-arm64': 1.2.4 4089 | '@img/sharp-libvips-darwin-x64': 1.2.4 4090 | '@img/sharp-libvips-linux-arm': 1.2.4 4091 | '@img/sharp-libvips-linux-arm64': 1.2.4 4092 | '@img/sharp-libvips-linux-ppc64': 1.2.4 4093 | '@img/sharp-libvips-linux-riscv64': 1.2.4 4094 | '@img/sharp-libvips-linux-s390x': 1.2.4 4095 | '@img/sharp-libvips-linux-x64': 1.2.4 4096 | '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 4097 | '@img/sharp-libvips-linuxmusl-x64': 1.2.4 4098 | '@img/sharp-linux-arm': 0.34.5 4099 | '@img/sharp-linux-arm64': 0.34.5 4100 | '@img/sharp-linux-ppc64': 0.34.5 4101 | '@img/sharp-linux-riscv64': 0.34.5 4102 | '@img/sharp-linux-s390x': 0.34.5 4103 | '@img/sharp-linux-x64': 0.34.5 4104 | '@img/sharp-linuxmusl-arm64': 0.34.5 4105 | '@img/sharp-linuxmusl-x64': 0.34.5 4106 | '@img/sharp-wasm32': 0.34.5 4107 | '@img/sharp-win32-arm64': 0.34.5 4108 | '@img/sharp-win32-ia32': 0.34.5 4109 | '@img/sharp-win32-x64': 0.34.5 4110 | optional: true 4111 | 4112 | shiki@3.19.0: 4113 | dependencies: 4114 | '@shikijs/core': 3.19.0 4115 | '@shikijs/engine-javascript': 3.19.0 4116 | '@shikijs/engine-oniguruma': 3.19.0 4117 | '@shikijs/langs': 3.19.0 4118 | '@shikijs/themes': 3.19.0 4119 | '@shikijs/types': 3.19.0 4120 | '@shikijs/vscode-textmate': 10.0.2 4121 | '@types/hast': 3.0.4 4122 | 4123 | simple-swizzle@0.2.4: 4124 | dependencies: 4125 | is-arrayish: 0.3.4 4126 | 4127 | sisteransi@1.0.5: {} 4128 | 4129 | sitemap@8.0.2: 4130 | dependencies: 4131 | '@types/node': 17.0.45 4132 | '@types/sax': 1.2.7 4133 | arg: 5.0.2 4134 | sax: 1.4.3 4135 | 4136 | smol-toml@1.5.2: {} 4137 | 4138 | source-map-js@1.2.1: {} 4139 | 4140 | space-separated-tokens@2.0.2: {} 4141 | 4142 | stoppable@1.1.0: {} 4143 | 4144 | stream-replace-string@2.0.0: {} 4145 | 4146 | string-width@4.2.3: 4147 | dependencies: 4148 | emoji-regex: 8.0.0 4149 | is-fullwidth-code-point: 3.0.0 4150 | strip-ansi: 6.0.1 4151 | 4152 | string-width@7.2.0: 4153 | dependencies: 4154 | emoji-regex: 10.6.0 4155 | get-east-asian-width: 1.4.0 4156 | strip-ansi: 7.1.2 4157 | 4158 | stringify-entities@4.0.4: 4159 | dependencies: 4160 | character-entities-html4: 2.1.0 4161 | character-entities-legacy: 3.0.0 4162 | 4163 | strip-ansi@6.0.1: 4164 | dependencies: 4165 | ansi-regex: 5.0.1 4166 | 4167 | strip-ansi@7.1.2: 4168 | dependencies: 4169 | ansi-regex: 6.2.2 4170 | 4171 | supports-color@10.2.2: {} 4172 | 4173 | svgo@4.0.0: 4174 | dependencies: 4175 | commander: 11.1.0 4176 | css-select: 5.2.2 4177 | css-tree: 3.1.0 4178 | css-what: 6.2.2 4179 | csso: 5.0.5 4180 | picocolors: 1.1.1 4181 | sax: 1.4.3 4182 | 4183 | tailwindcss@4.1.17: {} 4184 | 4185 | tapable@2.3.0: {} 4186 | 4187 | tiny-inflate@1.0.3: {} 4188 | 4189 | tinyexec@1.0.2: {} 4190 | 4191 | tinyglobby@0.2.15: 4192 | dependencies: 4193 | fdir: 6.5.0(picomatch@4.0.3) 4194 | picomatch: 4.0.3 4195 | 4196 | trim-lines@3.0.1: {} 4197 | 4198 | trough@2.2.0: {} 4199 | 4200 | tsconfck@3.1.6(typescript@5.9.3): 4201 | optionalDependencies: 4202 | typescript: 5.9.3 4203 | 4204 | tslib@2.8.1: {} 4205 | 4206 | type-fest@4.41.0: {} 4207 | 4208 | typescript@5.9.3: {} 4209 | 4210 | ufo@1.6.1: {} 4211 | 4212 | ultrahtml@1.6.0: {} 4213 | 4214 | uncrypto@0.1.3: {} 4215 | 4216 | undici-types@7.16.0: {} 4217 | 4218 | undici@7.14.0: {} 4219 | 4220 | unenv@2.0.0-rc.24: 4221 | dependencies: 4222 | pathe: 2.0.3 4223 | 4224 | unicode-properties@1.4.1: 4225 | dependencies: 4226 | base64-js: 1.5.1 4227 | unicode-trie: 2.0.0 4228 | 4229 | unicode-trie@2.0.0: 4230 | dependencies: 4231 | pako: 0.2.9 4232 | tiny-inflate: 1.0.3 4233 | 4234 | unified@11.0.5: 4235 | dependencies: 4236 | '@types/unist': 3.0.3 4237 | bail: 2.0.2 4238 | devlop: 1.1.0 4239 | extend: 3.0.2 4240 | is-plain-obj: 4.1.0 4241 | trough: 2.2.0 4242 | vfile: 6.0.3 4243 | 4244 | unifont@0.6.0: 4245 | dependencies: 4246 | css-tree: 3.1.0 4247 | ofetch: 1.5.1 4248 | ohash: 2.0.11 4249 | 4250 | unist-util-find-after@5.0.0: 4251 | dependencies: 4252 | '@types/unist': 3.0.3 4253 | unist-util-is: 6.0.1 4254 | 4255 | unist-util-is@6.0.1: 4256 | dependencies: 4257 | '@types/unist': 3.0.3 4258 | 4259 | unist-util-modify-children@4.0.0: 4260 | dependencies: 4261 | '@types/unist': 3.0.3 4262 | array-iterate: 2.0.1 4263 | 4264 | unist-util-position@5.0.0: 4265 | dependencies: 4266 | '@types/unist': 3.0.3 4267 | 4268 | unist-util-remove-position@5.0.0: 4269 | dependencies: 4270 | '@types/unist': 3.0.3 4271 | unist-util-visit: 5.0.0 4272 | 4273 | unist-util-stringify-position@4.0.0: 4274 | dependencies: 4275 | '@types/unist': 3.0.3 4276 | 4277 | unist-util-visit-children@3.0.0: 4278 | dependencies: 4279 | '@types/unist': 3.0.3 4280 | 4281 | unist-util-visit-parents@6.0.2: 4282 | dependencies: 4283 | '@types/unist': 3.0.3 4284 | unist-util-is: 6.0.1 4285 | 4286 | unist-util-visit@5.0.0: 4287 | dependencies: 4288 | '@types/unist': 3.0.3 4289 | unist-util-is: 6.0.1 4290 | unist-util-visit-parents: 6.0.2 4291 | 4292 | unstorage@1.17.3: 4293 | dependencies: 4294 | anymatch: 3.1.3 4295 | chokidar: 4.0.3 4296 | destr: 2.0.5 4297 | h3: 1.15.4 4298 | lru-cache: 10.4.3 4299 | node-fetch-native: 1.6.7 4300 | ofetch: 1.5.1 4301 | ufo: 1.6.1 4302 | 4303 | vfile-location@5.0.3: 4304 | dependencies: 4305 | '@types/unist': 3.0.3 4306 | vfile: 6.0.3 4307 | 4308 | vfile-message@4.0.3: 4309 | dependencies: 4310 | '@types/unist': 3.0.3 4311 | unist-util-stringify-position: 4.0.0 4312 | 4313 | vfile@6.0.3: 4314 | dependencies: 4315 | '@types/unist': 3.0.3 4316 | vfile-message: 4.0.3 4317 | 4318 | vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2): 4319 | dependencies: 4320 | esbuild: 0.25.12 4321 | fdir: 6.5.0(picomatch@4.0.3) 4322 | picomatch: 4.0.3 4323 | postcss: 8.5.6 4324 | rollup: 4.53.3 4325 | tinyglobby: 0.2.15 4326 | optionalDependencies: 4327 | '@types/node': 24.10.1 4328 | fsevents: 2.3.3 4329 | jiti: 2.6.1 4330 | lightningcss: 1.30.2 4331 | yaml: 2.8.2 4332 | 4333 | vitefu@1.1.1(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2)): 4334 | optionalDependencies: 4335 | vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2) 4336 | 4337 | web-namespaces@2.0.1: {} 4338 | 4339 | which-pm-runs@1.1.0: {} 4340 | 4341 | widest-line@5.0.0: 4342 | dependencies: 4343 | string-width: 7.2.0 4344 | 4345 | workerd@1.20251125.0: 4346 | optionalDependencies: 4347 | '@cloudflare/workerd-darwin-64': 1.20251125.0 4348 | '@cloudflare/workerd-darwin-arm64': 1.20251125.0 4349 | '@cloudflare/workerd-linux-64': 1.20251125.0 4350 | '@cloudflare/workerd-linux-arm64': 1.20251125.0 4351 | '@cloudflare/workerd-windows-64': 1.20251125.0 4352 | 4353 | wrangler@4.51.0: 4354 | dependencies: 4355 | '@cloudflare/kv-asset-handler': 0.4.1 4356 | '@cloudflare/unenv-preset': 2.7.11(unenv@2.0.0-rc.24)(workerd@1.20251125.0) 4357 | blake3-wasm: 2.1.5 4358 | esbuild: 0.25.4 4359 | miniflare: 4.20251125.0 4360 | path-to-regexp: 6.3.0 4361 | unenv: 2.0.0-rc.24 4362 | workerd: 1.20251125.0 4363 | optionalDependencies: 4364 | fsevents: 2.3.3 4365 | transitivePeerDependencies: 4366 | - bufferutil 4367 | - utf-8-validate 4368 | 4369 | wrap-ansi@9.0.2: 4370 | dependencies: 4371 | ansi-styles: 6.2.3 4372 | string-width: 7.2.0 4373 | strip-ansi: 7.1.2 4374 | 4375 | ws@8.18.0: {} 4376 | 4377 | xxhash-wasm@1.1.0: {} 4378 | 4379 | yaml@2.8.2: 4380 | optional: true 4381 | 4382 | yargs-parser@21.1.1: {} 4383 | 4384 | yocto-queue@1.2.2: {} 4385 | 4386 | yocto-spinner@0.2.3: 4387 | dependencies: 4388 | yoctocolors: 2.1.2 4389 | 4390 | yoctocolors@2.1.2: {} 4391 | 4392 | youch-core@0.3.3: 4393 | dependencies: 4394 | '@poppinss/exception': 1.2.2 4395 | error-stack-parser-es: 1.0.5 4396 | 4397 | youch@4.1.0-beta.10: 4398 | dependencies: 4399 | '@poppinss/colors': 4.1.5 4400 | '@poppinss/dumper': 0.6.5 4401 | '@speed-highlight/core': 1.2.12 4402 | cookie: 1.1.1 4403 | youch-core: 0.3.3 4404 | 4405 | zod-to-json-schema@3.25.0(zod@3.25.76): 4406 | dependencies: 4407 | zod: 3.25.76 4408 | 4409 | zod-to-ts@1.2.0(typescript@5.9.3)(zod@3.25.76): 4410 | dependencies: 4411 | typescript: 5.9.3 4412 | zod: 3.25.76 4413 | 4414 | zod@3.22.3: {} 4415 | 4416 | zod@3.25.76: {} 4417 | 4418 | zwitch@2.0.4: {} 4419 | --------------------------------------------------------------------------------