Openstatus www.openstatus.dev

✏️ docs (#1349)

* ✏️

* docs

* image

* ci: apply automated fixes

* improve content

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>

authored by

Thibault Le Ouay
autofix-ci[bot]
and committed by
GitHub
da45f857 b34387ed

+623 -835
+3 -1
apps/dashboard/src/components/nav/nav-user.tsx
··· 96 96 </Avatar> 97 97 <div className="grid flex-1 text-left text-sm leading-tight"> 98 98 <span className="truncate font-medium">{userName}</span> 99 - <span className="truncate text-xs">{user?.email}</span> 99 + <span className="truncate font-commit-mono text-xs"> 100 + {user?.email} 101 + </span> 100 102 </div> 101 103 </div> 102 104 </DropdownMenuLabel>
+3
apps/docs/astro.config.mjs
··· 2 2 import starlight from "@astrojs/starlight"; 3 3 import tailwindcss from "@tailwindcss/vite"; 4 4 import { defineConfig, envField } from "astro/config"; 5 + import starlightImageZoom from "starlight-image-zoom"; 5 6 import starlightLlmsTxt from "starlight-llms-txt"; 6 7 import starlightSidebarTopics from "starlight-sidebar-topics"; 8 + 7 9 import Icons from "unplugin-icons/vite"; 8 10 9 11 // https://astro.build/config ··· 272 274 description: 273 275 "OpenStatus is an open-source global uptime monitoring platform that offers a status page and monitoring as code.", 274 276 }), 277 + starlightImageZoom(), 275 278 ], 276 279 }), 277 280 ],
+5 -4
apps/docs/package.json
··· 11 11 }, 12 12 "dependencies": { 13 13 "@astrojs/check": "0.9.4", 14 - "@astrojs/react": "4.2.3", 15 - "@astrojs/sitemap": "3.4.1", 16 - "@astrojs/starlight": "0.35.1", 14 + "@astrojs/react": "4.3.1", 15 + "@astrojs/sitemap": "3.5.1", 16 + "@astrojs/starlight": "0.35.2", 17 17 "@astrojs/starlight-tailwind": "4.0.1", 18 18 "@openpanel/astro": "1.0.1", 19 19 "@tailwindcss/vite": "4.1.8", 20 - "astro": "5.12.2", 20 + "astro": "5.13.7", 21 21 "sharp": "0.33.5", 22 + "starlight-image-zoom": "0.13.0", 22 23 "starlight-llms-txt": "0.5.1", 23 24 "starlight-showcases": "0.3.0", 24 25 "starlight-sidebar-topics": "0.6.0",
apps/docs/src/assets/monitor/create-monitor/create-monitor-1.png

This is a binary file and will not be displayed.

apps/docs/src/assets/monitor/create-monitor/create-monitor-2.png

This is a binary file and will not be displayed.

apps/docs/src/assets/monitor/create-monitor/monitor-overview.png

This is a binary file and will not be displayed.

apps/docs/src/assets/monitor/overview/dashboard.png

This is a binary file and will not be displayed.

+11 -17
apps/docs/src/content/docs/getting-started/introduction.mdx
··· 1 1 --- 2 - title: Getting Started 2 + title: Getting Started with openstatus 3 3 description: "How to get started with OpenStatus?" 4 4 topic: docs 5 5 next: 'Start Monitoring' ··· 8 8 import { Aside } from '@astrojs/starlight/components'; 9 9 10 10 11 - ## How to get started with OpenStatus? 11 + You can use OpenStatus by either signing up for our **cloud version** or by **self-hosting** the application on your own infrastructure. 12 12 13 - You can either use the cloud version of OpenStatus or self-host it. 14 13 15 - 16 - ### Cloud version 14 + ## Cloud Version 17 15 18 - You can [sign up](https://www.openstatus.dev/app/login?ref=docs) for a free account and begin monitoring your services in seconds. 16 + The easiest way to get started is with our cloud version. You can [sign up for a free account](https://www.openstatus.dev/app/login?ref=docs) 17 + and begin monitoring your services in seconds. 19 18 20 - ### Self Hosted version 21 - 22 - All our code is open-source and you can host it on your own infrastructure. 23 19 24 - <Aside> 25 - It is not easy to self-host OpenStatus on your own at the moment. We will be working on community version to make it easier in the future. 26 - </Aside> 20 + ## Self-Hosted Version 27 21 28 - ### Commmunity version 22 + For users who want to host OpenStatus on their own infrastructure, all our code is [open source](https://github.com/openstatushq/openstatus) 29 23 30 - We are working on a multiple community version of OpenStatus that will be easier to self-host. 24 + While we are working on making the self-hosted version easier to deploy, you can start with a community-maintained option like the **Vercel Edge Checker**. 31 25 32 - #### Vercel Edge Checker 26 + ### Vercel Edge Checker 33 27 34 - You can use our [Vercel Edge Checker](https://github.com/openstatusHQ/vercel-edge-ping) version of OpenStatus. It is a simple version of OpenStatus that can be deployed to Vercel with one click. 28 + The Vercel Edge Checker is a lightweight version of OpenStatus that you can deploy to Vercel with a single click. It's a great way to get familiar with self-hosting OpenStatus. 35 29 36 30 37 31 <Aside> 38 - More version will be available in the future. 🚧 32 + We are actively working to simplify self-hosting and have an open [issue](https://github.com/openstatusHQ/openstatus/issues/322) on GitHub regarding this. Stay tuned! 39 33 </Aside>
+41 -31
apps/docs/src/content/docs/monitoring/create-monitor.mdx
··· 1 1 --- 2 - title: How to create your first monitor? 2 + title: Creating Your First Monitor 3 3 description: "How to create your first monitor with OpenStatus" 4 4 --- 5 5 6 6 import { Image } from 'astro:assets'; 7 7 import { Aside, CardGrid, LinkCard } from '@astrojs/starlight/components'; 8 - import monitorDetail from '../../../assets/monitor/monitor-detail.png'; 9 - import createMonitor from '../../../assets/monitor/create-monitor.png'; 8 + import monitorOverview from '../../../assets/monitor/create-monitor/monitor-overview.png'; 9 + import createMonitor from '../../../assets/monitor/create-monitor/create-monitor-1.png'; 10 + import createMonitor2 from '../../../assets/monitor/create-monitor/create-monitor-2.png'; 10 11 11 12 import { ShowcaseYouTube } from 'starlight-showcases' 12 13 13 - <Image 14 - src={createMonitor} 15 - alt="Charts with status code and response time" 16 - /> 17 14 18 15 19 - ## Creating Your First Monitor 20 - 21 - A monitor is your automated watchdog for your services. 🕵️‍♀️ It periodically checks your endpoints to ensure they are up, performant, and returning the correct data. Think of it as a curl command that runs 24/7. 22 - 23 - This guide will walk you through creating and configuring your first HTTP monitor. 16 + This guide will walk you through the process of creating your first monitor, your automated watchdog for your services. A monitor periodically checks your endpoints to ensure they are available, performant, and returning the correct data. Think of it as a `curl` command that runs 24/7, providing continuous insights into the health of your application. 24 17 25 18 26 19 ## Get Started in 1 Minute 27 20 28 - Let's get your first endpoint check up and running. 21 + Let's get your first uptime check up and running. 29 22 30 23 ### 1. Create the Monitor 31 24 32 - Navigate to the Monitors page from the sidebar and click the + Create Monitor button. 25 + <Image 26 + src={createMonitor} 27 + alt="Charts with status code and response time" 28 + /> 29 + 30 + Navigate to the **Monitors** page from the sidebar and click the **Create Monitor** button. This will open a new configuration screen. 31 + 33 32 34 33 ### 2. Configure the Basics 35 34 36 - To get started, you only need two things: 37 - - **Name** : A descriptive name so you can easily identify it (e.g., "API - Production Health Check"). 38 - - **URL** : The full URL of the endpoint you want to test (e.g., https://openstat.us). 35 + <Image 36 + src={createMonitor2} 37 + alt="Charts with status code and response time" 38 + /> 39 39 40 - Once you've set the URL, we'll automatically begin tracking key metrics for every check: 41 - - **Response Time** 42 - - **Status Code** 43 - - **Response Headers** 44 - - **Detailed Timing Metrics** (DNS lookup, TCP connection, TLS handshake, etc.) 40 + To get your monitor started, you only need to provide two essential pieces of information: 41 + - **Name:** A clear, descriptive name for your monitor (e.g., "Production API Health Check" or "Homepage Uptime"). 42 + - **URL:** The full URL of the endpoint you want to test (e.g., `https://openstat.us`). 43 + 44 + As soon as you enter the URL, our monitoring tool will automatically begin tracking key performance metrics for every check, including: 45 + - **Response Time:** The total time it takes for the request to complete. 46 + - **Status Code:** The HTTP status code returned by the server (e.g., 200, 404, 500). 47 + - **Response Headers:** A detailed view of the headers returned by the server. 48 + - **Detailed Timing Metrics:** A breakdown of the time spent on each phase of the request (DNS lookup, TCP connection, TLS handshake, etc.) 45 49 46 50 47 51 <Image 48 - src={monitorDetail} 52 + src={monitorOverview} 49 53 alt="Charts with status code and response time" 50 54 /> 51 55 52 56 53 57 ### 3. Customizing the HTTP Request 54 58 55 - You can customize the HTTP request to simulate real user traffic or test specific scenarios. 59 + Your monitor doesn't just have to be a simple `GET` request. You can customize the HTTP request to simulate real-world traffic and test specific scenarios. 56 60 57 61 #### HTTP Method 58 62 59 - Choose the HTTP method for your check. While `GET` is the default, you can also use `POST` or `HEAD` or any other HTTP method. 63 + Choose the appropriate HTTP method for your check. While `GET` is the default and most common for simple health checks, you can also select `POST`, `HEAD`, `OPTIONS`, `PUT`, `PATCH`, `DELETE`, `TRACE`. `OPTIONS` 60 64 61 65 - `GET`: Retrieve data from an endpoint. The most common choice for health checks. 62 66 - `POST`: Send data to an endpoint, for example, to test a form submission or API creation endpoint. 63 67 - `HEAD`: Same as `GET`, but without the response body. Useful for quickly checking if a resource exists. 68 + - `OPTIONS`: Retrieve the supported HTTP methods for a resource. 69 + - `PUT`: Update an existing resource. 70 + - `PATCH`: Partially update an existing resource. 71 + - `DELETE`: Delete a resource. 72 + - `TRACE`: Echo the request back to the client. 64 73 65 74 #### Request Body 66 75 67 - If you select the `POST` method, you can specify a Body to send with your request. This is perfect for testing API endpoints that require a JSON payload. 76 + If you select the `POST` method, you can add a Request Body to your monitor's configuration. This is essential for testing API endpoints that require a JSON, form-encoded, or other data payload. Simply enter the data you want to send in the provided text area. 68 77 69 78 #### Custom Headers 70 79 71 - You can add any number of custom HTTP headers to your request. This is useful for: 80 + You can add any number of custom HTTP headers to your request. This is particularly useful for: 72 81 73 - - Sending an `Authorization` token to test a protected endpoint. 74 - - Setting an `Accept` header to request a specific content type (e.g., `application/json`). 75 - - Simulating a request from a specific device or client. 82 + - **Authentication:**: Sending an Authorization token (e.g., a Bearer token) to test a protected endpoint. 83 + - **Content Type:**: Setting an `content-type` header to specify a content type (e.g., `application/json`). 84 + - **Content Negotiation:** Setting an Accept header to request a specific content type from the server (e.g., `application/json`). 85 + - **Simulating Clients:** Adding a User-Agent header to simulate traffic from a specific browser or device. 76 86 77 87 Heads Up: We've got your User-Agent covered! 78 88 OpenStatus automatically includes the `"User-Agent": "OpenStatus/1.0"` header in every request. This makes it easy to identify and filter out our monitoring traffic from your server logs or analytics. ··· 81 91 82 92 ## Fine-Tuning Your Monitor ⚙️ 83 93 84 - Once you've set up the basics, you can further refine your monitor's behavior with these advanced options: 94 + Once you've configured the basics, you can further refine your monitor's behavior with these advanced options: 85 95 86 96 <CardGrid> 87 97 <LinkCard
+13 -13
apps/docs/src/content/docs/monitoring/overview.mdx
··· 5 5 6 6 import { CardGrid, LinkCard } from '@astrojs/starlight/components'; 7 7 import { Image } from 'astro:assets'; 8 - import overview from '../../../assets/monitor/overview.png'; 8 + import overview from '../../../assets/monitor/overview/dashboard.png'; 9 + 10 + With openstatus, you can simulate user requests to check the availability and performance of your website, API, or server from different locations around the globe. This proactive approach helps you find issues before your users do. 9 11 10 12 <Image 11 13 src={overview} 12 14 alt="Charts with status code and response time" 13 15 /> 14 16 15 - With synthetic monitoring, you can simulated requests to monitor the availability and performance of 16 - your website, API, or server from various locations around the world. 17 17 18 - We will make a request to your website or API on a regular schedule and record the 19 - responses. 20 18 21 - We will alert you if your website or API is down, is timing out or does not return the expected response. 22 19 23 - You can create monitors in our dashboard, with the [API](https://api.openstatus.dev/v1#tag/monitor/POST/monitor) or with our [Terraform provider](/tools/terraform). 20 + ## How it works 24 21 22 + We send a request to your specified endpoint on a regular schedule and record the response. If your website or API is down, timing out, or doesn't return the expected response, we'll alert you right away. 25 23 26 - ### What is synthetic monitoring? 24 + ## What is a monitor? 27 25 28 - Synthetic monitoring is a type of monitoring that simulates user interactions with your website or API. It is used to monitor the availability and performance of your website or API from various locations around the world to ensure that it is working as expected. 26 + A **monitor** is a job that runs periodically to check the status of a service. This could be a website, an API, or any other service that can be automatically checked. Each monitor you create runs a request to your endpoint and records the results for you to review. 29 27 30 - ### What is a monitor? 28 + ## Creating a Monitor 31 29 32 - A monitor is a job that runs periodically or on-demand and checks the status of a service. It 33 - can be a website, an API, or anything else that can be checked automatically. 30 + You can create a new monitor in one of four ways: 34 31 35 - We will make a request to your endpoint and record the results. 32 + - Dashboard: Use our intuitive dashboard to quickly set up and manage your monitors. 33 + - API: Integrate monitor creation into your workflow using our [API](https://api.openstatus.dev/v1#tag/monitor/POST/monitor). 34 + - CLI: Use our command-line interface to create and manage monitors with [YAML configuration files](https://github.com/openstatusHQ/cli-template). 35 + - Terraform: Automate the process with our [Terraform provider](/tools/terraform). 36 36 37 37 ### Monitor types 38 38
+547 -769
pnpm-lock.yaml
··· 181 181 version: 1.2.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1) 182 182 '@sentry/nextjs': 183 183 specifier: 8.46.0 184 - version: 8.46.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.4.7(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)(webpack@5.97.1) 184 + version: 8.46.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.4.7(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)(webpack@5.97.1) 185 185 '@stripe/stripe-js': 186 186 specifier: 2.1.6 187 187 version: 2.1.6 ··· 196 196 version: 11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2) 197 197 '@trpc/next': 198 198 specifier: 11.4.4 199 - version: 11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/react-query@11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(next@15.4.7(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2) 199 + version: 11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/react-query@11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(next@15.4.7(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2) 200 200 '@trpc/react-query': 201 201 specifier: 11.4.4 202 202 version: 11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2) ··· 316 316 specifier: 0.9.4 317 317 version: 0.9.4(prettier@3.6.2)(typescript@5.7.2) 318 318 '@astrojs/react': 319 - specifier: 4.2.3 320 - version: 4.2.3(@types/node@24.0.8)(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(jiti@2.4.2)(lightningcss@1.30.1)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(terser@5.43.1)(yaml@2.6.1) 319 + specifier: 4.3.1 320 + version: 4.3.1(@types/node@24.0.8)(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(jiti@2.4.2)(lightningcss@1.30.1)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(terser@5.43.1)(yaml@2.6.1) 321 321 '@astrojs/sitemap': 322 - specifier: 3.4.1 323 - version: 3.4.1 322 + specifier: 3.5.1 323 + version: 3.5.1 324 324 '@astrojs/starlight': 325 - specifier: 0.35.1 326 - version: 0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 325 + specifier: 0.35.2 326 + version: 0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 327 327 '@astrojs/starlight-tailwind': 328 328 specifier: 4.0.1 329 - version: 4.0.1(@astrojs/starlight@0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)))(tailwindcss@4.1.8) 329 + version: 4.0.1(@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)))(tailwindcss@4.1.8) 330 330 '@openpanel/astro': 331 331 specifier: 1.0.1 332 - version: 1.0.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 332 + version: 1.0.1(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 333 333 '@tailwindcss/vite': 334 334 specifier: 4.1.8 335 - version: 4.1.8(vite@6.3.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1)) 335 + version: 4.1.8(vite@6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1)) 336 336 astro: 337 - specifier: 5.12.2 338 - version: 5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 337 + specifier: 5.13.7 338 + version: 5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 339 339 sharp: 340 340 specifier: 0.33.5 341 341 version: 0.33.5 342 + starlight-image-zoom: 343 + specifier: 0.13.0 344 + version: 0.13.0(@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))) 342 345 starlight-llms-txt: 343 346 specifier: 0.5.1 344 - version: 0.5.1(@astrojs/starlight@0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)))(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 347 + version: 0.5.1(@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)))(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 345 348 starlight-showcases: 346 349 specifier: 0.3.0 347 - version: 0.3.0(@astrojs/starlight@0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)))(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 350 + version: 0.3.0(@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)))(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 348 351 starlight-sidebar-topics: 349 352 specifier: 0.6.0 350 - version: 0.6.0(@astrojs/starlight@0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))) 353 + version: 0.6.0(@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))) 351 354 tailwindcss: 352 355 specifier: 4.1.8 353 356 version: 4.1.8 ··· 632 635 version: 1.2.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1) 633 636 '@sentry/nextjs': 634 637 specifier: 8.46.0 635 - version: 8.46.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.4.7(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)(webpack@5.97.1) 638 + version: 8.46.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.4.7(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)(webpack@5.97.1) 636 639 '@stripe/stripe-js': 637 640 specifier: 2.1.6 638 641 version: 2.1.6 ··· 647 650 version: 11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2) 648 651 '@trpc/next': 649 652 specifier: 11.4.4 650 - version: 11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/react-query@11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(next@15.4.7(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2) 653 + version: 11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/react-query@11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(next@15.4.7(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2) 651 654 '@trpc/react-query': 652 655 specifier: 11.4.4 653 656 version: 11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2) ··· 1109 1112 version: link:../../packages/tsconfig 1110 1113 '@types/bun': 1111 1114 specifier: latest 1112 - version: 1.2.20(@types/react@19.1.10) 1115 + version: 1.2.21(@types/react@19.1.10) 1113 1116 typescript: 1114 1117 specifier: 5.7.2 1115 1118 version: 5.7.2 ··· 1238 1241 version: 0.7.1(typescript@5.7.2)(zod@3.24.1) 1239 1242 drizzle-orm: 1240 1243 specifier: 0.44.4 1241 - version: 0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.20(@types/react@19.1.10)) 1244 + version: 0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.21(@types/react@19.1.10)) 1242 1245 drizzle-zod: 1243 1246 specifier: 0.5.1 1244 - version: 0.5.1(drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.20(@types/react@19.1.10)))(zod@3.24.1) 1247 + version: 0.5.1(drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.21(@types/react@19.1.10)))(zod@3.24.1) 1245 1248 zod: 1246 1249 specifier: 3.24.1 1247 1250 version: 3.24.1 ··· 1878 1881 '@astrojs/internal-helpers@0.6.1': 1879 1882 resolution: {integrity: sha512-l5Pqf6uZu31aG+3Lv8nl/3s4DbUzdlxTWDof4pEpto6GUJNhhCbelVi9dEyurOVyqaelwmS9oSyOWOENSfgo9A==} 1880 1883 1884 + '@astrojs/internal-helpers@0.7.2': 1885 + resolution: {integrity: sha512-KCkCqR3Goym79soqEtbtLzJfqhTWMyVaizUi35FLzgGSzBotSw8DB1qwsu7U96ihOJgYhDk2nVPz+3LnXPeX6g==} 1886 + 1881 1887 '@astrojs/language-server@2.15.4': 1882 1888 resolution: {integrity: sha512-JivzASqTPR2bao9BWsSc/woPHH7OGSGc9aMxXL4U6egVTqBycB3ZHdBJPuOCVtcGLrzdWTosAqVPz1BVoxE0+A==} 1883 1889 hasBin: true ··· 1896 1902 '@astrojs/markdown-remark@6.3.3': 1897 1903 resolution: {integrity: sha512-DDRtD1sPvAuA7ms2btc9A7/7DApKqgLMNrE6kh5tmkfy8utD0Z738gqd3p5aViYYdUtHIyEJ1X4mCMxfCfu15w==} 1898 1904 1905 + '@astrojs/markdown-remark@6.3.6': 1906 + resolution: {integrity: sha512-bwylYktCTsLMVoCOEHbn2GSUA3c5KT/qilekBKA3CBng0bo1TYjNZPr761vxumRk9kJGqTOtU+fgCAp5Vwokug==} 1907 + 1899 1908 '@astrojs/mdx@4.3.0': 1900 1909 resolution: {integrity: sha512-OGX2KvPeBzjSSKhkCqrUoDMyzFcjKt5nTE5SFw3RdoLf0nrhyCXBQcCyclzWy1+P+XpOamn+p+hm1EhpCRyPxw==} 1901 1910 engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} ··· 1906 1915 resolution: {integrity: sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==} 1907 1916 engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} 1908 1917 1909 - '@astrojs/react@4.2.3': 1910 - resolution: {integrity: sha512-icL1hCnW1v+w+NCAz8REfsh9R1aGMW75fYBoeLjyhrVDxXQHiFbTfyBIHkgH79qqID7SM81+hPxHlqcgCuBP8w==} 1911 - engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0} 1918 + '@astrojs/react@4.3.1': 1919 + resolution: {integrity: sha512-Jhv35TsDHuQLvwof2z10P3g1s9wIR4UN9jE7O4NZBJNXOt/+qk+L0rY9th4SX7VzccKmRltUGxAhI1cXH52gXw==} 1920 + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} 1912 1921 peerDependencies: 1913 1922 '@types/react': ^17.0.50 || ^18.0.21 || ^19.0.0 1914 1923 '@types/react-dom': ^17.0.17 || ^18.0.6 || ^19.0.0 1915 1924 react: ^17.0.2 || ^18.0.0 || ^19.0.0 1916 1925 react-dom: ^17.0.2 || ^18.0.0 || ^19.0.0 1917 1926 1918 - '@astrojs/sitemap@3.4.1': 1919 - resolution: {integrity: sha512-VjZvr1e4FH6NHyyHXOiQgLiw94LnCVY4v06wN/D0gZKchTMkg71GrAHJz81/huafcmavtLkIv26HnpfDq6/h/Q==} 1927 + '@astrojs/sitemap@3.5.1': 1928 + resolution: {integrity: sha512-uX5z52GLtQTgOe8r3jeGmFRYrFe52mdpLYJzqjvL1cdy5Kg3MLOZEvaZ/OCH0fSq0t7e50uJQ6oBMZG0ffszBg==} 1920 1929 1921 1930 '@astrojs/starlight-tailwind@4.0.1': 1922 1931 resolution: {integrity: sha512-AOOEWTGqJ7fG66U04xTmZQZ40oZnUYe4Qljpr+No88ozKywtsD1DiXOrGTeHCnZu0hRtMbRtBGB1fZsf0L62iw==} ··· 1924 1933 '@astrojs/starlight': '>=0.34.0' 1925 1934 tailwindcss: ^4.0.0 1926 1935 1927 - '@astrojs/starlight@0.35.1': 1928 - resolution: {integrity: sha512-/hshlAayMd3B+E+h8wY6JWT1lNmX/K1+ugiZPirW5XFo5QUcNMk/Bsa4oHgg+TFoU6kbxPtijo0VppATfD9XuA==} 1936 + '@astrojs/starlight@0.35.2': 1937 + resolution: {integrity: sha512-curGghoW4s5pCbW2tINsJPoxEYPan87ptCOv7GZ+S24N3J6AyaOu/OsjZDEMaIpo3ZlObM5DQn+w7iXl3drDhQ==} 1929 1938 peerDependencies: 1930 1939 astro: ^5.5.0 1931 1940 ··· 2128 2137 resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==} 2129 2138 engines: {node: '>=6.9.0'} 2130 2139 2140 + '@babel/compat-data@7.28.4': 2141 + resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==} 2142 + engines: {node: '>=6.9.0'} 2143 + 2131 2144 '@babel/core@7.26.0': 2132 2145 resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} 2133 2146 engines: {node: '>=6.9.0'} 2134 2147 2148 + '@babel/core@7.28.4': 2149 + resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==} 2150 + engines: {node: '>=6.9.0'} 2151 + 2135 2152 '@babel/generator@7.27.5': 2136 2153 resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==} 2137 2154 engines: {node: '>=6.9.0'} 2138 2155 2156 + '@babel/generator@7.28.3': 2157 + resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} 2158 + engines: {node: '>=6.9.0'} 2159 + 2139 2160 '@babel/helper-annotate-as-pure@7.27.3': 2140 2161 resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} 2141 2162 engines: {node: '>=6.9.0'} ··· 2144 2165 resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} 2145 2166 engines: {node: '>=6.9.0'} 2146 2167 2168 + '@babel/helper-compilation-targets@7.27.2': 2169 + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} 2170 + engines: {node: '>=6.9.0'} 2171 + 2147 2172 '@babel/helper-create-class-features-plugin@7.27.1': 2148 2173 resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==} 2149 2174 engines: {node: '>=6.9.0'} 2150 2175 peerDependencies: 2151 2176 '@babel/core': ^7.0.0 2152 2177 2178 + '@babel/helper-globals@7.28.0': 2179 + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} 2180 + engines: {node: '>=6.9.0'} 2181 + 2153 2182 '@babel/helper-member-expression-to-functions@7.27.1': 2154 2183 resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==} 2155 2184 engines: {node: '>=6.9.0'} ··· 2158 2187 resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} 2159 2188 engines: {node: '>=6.9.0'} 2160 2189 2190 + '@babel/helper-module-imports@7.27.1': 2191 + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} 2192 + engines: {node: '>=6.9.0'} 2193 + 2161 2194 '@babel/helper-module-transforms@7.26.0': 2162 2195 resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} 2163 2196 engines: {node: '>=6.9.0'} 2164 2197 peerDependencies: 2165 2198 '@babel/core': ^7.0.0 2166 2199 2167 - '@babel/helper-optimise-call-expression@7.27.1': 2168 - resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} 2200 + '@babel/helper-module-transforms@7.28.3': 2201 + resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} 2169 2202 engines: {node: '>=6.9.0'} 2203 + peerDependencies: 2204 + '@babel/core': ^7.0.0 2170 2205 2171 - '@babel/helper-plugin-utils@7.26.5': 2172 - resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==} 2206 + '@babel/helper-optimise-call-expression@7.27.1': 2207 + resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} 2173 2208 engines: {node: '>=6.9.0'} 2174 2209 2175 2210 '@babel/helper-plugin-utils@7.27.1': ··· 2186 2221 resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} 2187 2222 engines: {node: '>=6.9.0'} 2188 2223 2189 - '@babel/helper-string-parser@7.25.9': 2190 - resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 2191 - engines: {node: '>=6.9.0'} 2192 - 2193 2224 '@babel/helper-string-parser@7.27.1': 2194 2225 resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 2195 2226 engines: {node: '>=6.9.0'} 2196 2227 2197 - '@babel/helper-validator-identifier@7.25.9': 2198 - resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 2199 - engines: {node: '>=6.9.0'} 2200 - 2201 2228 '@babel/helper-validator-identifier@7.27.1': 2202 2229 resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} 2203 2230 engines: {node: '>=6.9.0'} 2204 2231 2205 2232 '@babel/helper-validator-option@7.25.9': 2206 2233 resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} 2234 + engines: {node: '>=6.9.0'} 2235 + 2236 + '@babel/helper-validator-option@7.27.1': 2237 + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} 2207 2238 engines: {node: '>=6.9.0'} 2208 2239 2209 2240 '@babel/helpers@7.26.0': 2210 2241 resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} 2211 2242 engines: {node: '>=6.9.0'} 2212 2243 2213 - '@babel/parser@7.26.3': 2214 - resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} 2215 - engines: {node: '>=6.0.0'} 2216 - hasBin: true 2244 + '@babel/helpers@7.28.4': 2245 + resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} 2246 + engines: {node: '>=6.9.0'} 2217 2247 2218 2248 '@babel/parser@7.27.7': 2219 2249 resolution: {integrity: sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==} 2220 2250 engines: {node: '>=6.0.0'} 2221 2251 hasBin: true 2222 2252 2253 + '@babel/parser@7.28.4': 2254 + resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} 2255 + engines: {node: '>=6.0.0'} 2256 + hasBin: true 2257 + 2223 2258 '@babel/plugin-syntax-typescript@7.27.1': 2224 2259 resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} 2225 2260 engines: {node: '>=6.9.0'} 2226 2261 peerDependencies: 2227 2262 '@babel/core': ^7.0.0-0 2228 2263 2229 - '@babel/plugin-transform-react-jsx-self@7.25.9': 2230 - resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==} 2264 + '@babel/plugin-transform-react-jsx-self@7.27.1': 2265 + resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} 2231 2266 engines: {node: '>=6.9.0'} 2232 2267 peerDependencies: 2233 2268 '@babel/core': ^7.0.0-0 2234 2269 2235 - '@babel/plugin-transform-react-jsx-source@7.25.9': 2236 - resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==} 2270 + '@babel/plugin-transform-react-jsx-source@7.27.1': 2271 + resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} 2237 2272 engines: {node: '>=6.9.0'} 2238 2273 peerDependencies: 2239 2274 '@babel/core': ^7.0.0-0 ··· 2260 2295 resolution: {integrity: sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw==} 2261 2296 engines: {node: '>=6.9.0'} 2262 2297 2263 - '@babel/types@7.26.3': 2264 - resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} 2298 + '@babel/traverse@7.28.4': 2299 + resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==} 2265 2300 engines: {node: '>=6.9.0'} 2266 2301 2267 2302 '@babel/types@7.27.7': 2268 2303 resolution: {integrity: sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw==} 2304 + engines: {node: '>=6.9.0'} 2305 + 2306 + '@babel/types@7.28.4': 2307 + resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} 2269 2308 engines: {node: '>=6.9.0'} 2270 2309 2271 2310 '@biomejs/biome@1.8.3': ··· 2564 2603 cpu: [ppc64] 2565 2604 os: [aix] 2566 2605 2567 - '@esbuild/aix-ppc64@0.25.2': 2568 - resolution: {integrity: sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==} 2569 - engines: {node: '>=18'} 2570 - cpu: [ppc64] 2571 - os: [aix] 2572 - 2573 2606 '@esbuild/aix-ppc64@0.25.5': 2574 2607 resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==} 2575 2608 engines: {node: '>=18'} ··· 2588 2621 cpu: [arm64] 2589 2622 os: [android] 2590 2623 2591 - '@esbuild/android-arm64@0.25.2': 2592 - resolution: {integrity: sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==} 2593 - engines: {node: '>=18'} 2594 - cpu: [arm64] 2595 - os: [android] 2596 - 2597 2624 '@esbuild/android-arm64@0.25.5': 2598 2625 resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==} 2599 2626 engines: {node: '>=18'} ··· 2612 2639 cpu: [arm] 2613 2640 os: [android] 2614 2641 2615 - '@esbuild/android-arm@0.25.2': 2616 - resolution: {integrity: sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==} 2617 - engines: {node: '>=18'} 2618 - cpu: [arm] 2619 - os: [android] 2620 - 2621 2642 '@esbuild/android-arm@0.25.5': 2622 2643 resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==} 2623 2644 engines: {node: '>=18'} ··· 2636 2657 cpu: [x64] 2637 2658 os: [android] 2638 2659 2639 - '@esbuild/android-x64@0.25.2': 2640 - resolution: {integrity: sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==} 2641 - engines: {node: '>=18'} 2642 - cpu: [x64] 2643 - os: [android] 2644 - 2645 2660 '@esbuild/android-x64@0.25.5': 2646 2661 resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==} 2647 2662 engines: {node: '>=18'} ··· 2660 2675 cpu: [arm64] 2661 2676 os: [darwin] 2662 2677 2663 - '@esbuild/darwin-arm64@0.25.2': 2664 - resolution: {integrity: sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==} 2665 - engines: {node: '>=18'} 2666 - cpu: [arm64] 2667 - os: [darwin] 2668 - 2669 2678 '@esbuild/darwin-arm64@0.25.5': 2670 2679 resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==} 2671 2680 engines: {node: '>=18'} ··· 2684 2693 cpu: [x64] 2685 2694 os: [darwin] 2686 2695 2687 - '@esbuild/darwin-x64@0.25.2': 2688 - resolution: {integrity: sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==} 2689 - engines: {node: '>=18'} 2690 - cpu: [x64] 2691 - os: [darwin] 2692 - 2693 2696 '@esbuild/darwin-x64@0.25.5': 2694 2697 resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==} 2695 2698 engines: {node: '>=18'} ··· 2708 2711 cpu: [arm64] 2709 2712 os: [freebsd] 2710 2713 2711 - '@esbuild/freebsd-arm64@0.25.2': 2712 - resolution: {integrity: sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==} 2713 - engines: {node: '>=18'} 2714 - cpu: [arm64] 2715 - os: [freebsd] 2716 - 2717 2714 '@esbuild/freebsd-arm64@0.25.5': 2718 2715 resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==} 2719 2716 engines: {node: '>=18'} ··· 2732 2729 cpu: [x64] 2733 2730 os: [freebsd] 2734 2731 2735 - '@esbuild/freebsd-x64@0.25.2': 2736 - resolution: {integrity: sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==} 2737 - engines: {node: '>=18'} 2738 - cpu: [x64] 2739 - os: [freebsd] 2740 - 2741 2732 '@esbuild/freebsd-x64@0.25.5': 2742 2733 resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==} 2743 2734 engines: {node: '>=18'} ··· 2756 2747 cpu: [arm64] 2757 2748 os: [linux] 2758 2749 2759 - '@esbuild/linux-arm64@0.25.2': 2760 - resolution: {integrity: sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==} 2761 - engines: {node: '>=18'} 2762 - cpu: [arm64] 2763 - os: [linux] 2764 - 2765 2750 '@esbuild/linux-arm64@0.25.5': 2766 2751 resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==} 2767 2752 engines: {node: '>=18'} ··· 2777 2762 '@esbuild/linux-arm@0.21.5': 2778 2763 resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 2779 2764 engines: {node: '>=12'} 2780 - cpu: [arm] 2781 - os: [linux] 2782 - 2783 - '@esbuild/linux-arm@0.25.2': 2784 - resolution: {integrity: sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==} 2785 - engines: {node: '>=18'} 2786 2765 cpu: [arm] 2787 2766 os: [linux] 2788 2767 ··· 2804 2783 cpu: [ia32] 2805 2784 os: [linux] 2806 2785 2807 - '@esbuild/linux-ia32@0.25.2': 2808 - resolution: {integrity: sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==} 2809 - engines: {node: '>=18'} 2810 - cpu: [ia32] 2811 - os: [linux] 2812 - 2813 2786 '@esbuild/linux-ia32@0.25.5': 2814 2787 resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==} 2815 2788 engines: {node: '>=18'} ··· 2828 2801 cpu: [loong64] 2829 2802 os: [linux] 2830 2803 2831 - '@esbuild/linux-loong64@0.25.2': 2832 - resolution: {integrity: sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==} 2833 - engines: {node: '>=18'} 2834 - cpu: [loong64] 2835 - os: [linux] 2836 - 2837 2804 '@esbuild/linux-loong64@0.25.5': 2838 2805 resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==} 2839 2806 engines: {node: '>=18'} ··· 2852 2819 cpu: [mips64el] 2853 2820 os: [linux] 2854 2821 2855 - '@esbuild/linux-mips64el@0.25.2': 2856 - resolution: {integrity: sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==} 2857 - engines: {node: '>=18'} 2858 - cpu: [mips64el] 2859 - os: [linux] 2860 - 2861 2822 '@esbuild/linux-mips64el@0.25.5': 2862 2823 resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==} 2863 2824 engines: {node: '>=18'} ··· 2876 2837 cpu: [ppc64] 2877 2838 os: [linux] 2878 2839 2879 - '@esbuild/linux-ppc64@0.25.2': 2880 - resolution: {integrity: sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==} 2881 - engines: {node: '>=18'} 2882 - cpu: [ppc64] 2883 - os: [linux] 2884 - 2885 2840 '@esbuild/linux-ppc64@0.25.5': 2886 2841 resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==} 2887 2842 engines: {node: '>=18'} ··· 2900 2855 cpu: [riscv64] 2901 2856 os: [linux] 2902 2857 2903 - '@esbuild/linux-riscv64@0.25.2': 2904 - resolution: {integrity: sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==} 2905 - engines: {node: '>=18'} 2906 - cpu: [riscv64] 2907 - os: [linux] 2908 - 2909 2858 '@esbuild/linux-riscv64@0.25.5': 2910 2859 resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==} 2911 2860 engines: {node: '>=18'} ··· 2924 2873 cpu: [s390x] 2925 2874 os: [linux] 2926 2875 2927 - '@esbuild/linux-s390x@0.25.2': 2928 - resolution: {integrity: sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==} 2929 - engines: {node: '>=18'} 2930 - cpu: [s390x] 2931 - os: [linux] 2932 - 2933 2876 '@esbuild/linux-s390x@0.25.5': 2934 2877 resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==} 2935 2878 engines: {node: '>=18'} ··· 2948 2891 cpu: [x64] 2949 2892 os: [linux] 2950 2893 2951 - '@esbuild/linux-x64@0.25.2': 2952 - resolution: {integrity: sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==} 2953 - engines: {node: '>=18'} 2954 - cpu: [x64] 2955 - os: [linux] 2956 - 2957 2894 '@esbuild/linux-x64@0.25.5': 2958 2895 resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==} 2959 2896 engines: {node: '>=18'} 2960 2897 cpu: [x64] 2961 2898 os: [linux] 2962 - 2963 - '@esbuild/netbsd-arm64@0.25.2': 2964 - resolution: {integrity: sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==} 2965 - engines: {node: '>=18'} 2966 - cpu: [arm64] 2967 - os: [netbsd] 2968 2899 2969 2900 '@esbuild/netbsd-arm64@0.25.5': 2970 2901 resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==} ··· 2984 2915 cpu: [x64] 2985 2916 os: [netbsd] 2986 2917 2987 - '@esbuild/netbsd-x64@0.25.2': 2988 - resolution: {integrity: sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==} 2989 - engines: {node: '>=18'} 2990 - cpu: [x64] 2991 - os: [netbsd] 2992 - 2993 2918 '@esbuild/netbsd-x64@0.25.5': 2994 2919 resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==} 2995 2920 engines: {node: '>=18'} 2996 2921 cpu: [x64] 2997 2922 os: [netbsd] 2998 - 2999 - '@esbuild/openbsd-arm64@0.25.2': 3000 - resolution: {integrity: sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==} 3001 - engines: {node: '>=18'} 3002 - cpu: [arm64] 3003 - os: [openbsd] 3004 2923 3005 2924 '@esbuild/openbsd-arm64@0.25.5': 3006 2925 resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==} ··· 3020 2939 cpu: [x64] 3021 2940 os: [openbsd] 3022 2941 3023 - '@esbuild/openbsd-x64@0.25.2': 3024 - resolution: {integrity: sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==} 3025 - engines: {node: '>=18'} 3026 - cpu: [x64] 3027 - os: [openbsd] 3028 - 3029 2942 '@esbuild/openbsd-x64@0.25.5': 3030 2943 resolution: {integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==} 3031 2944 engines: {node: '>=18'} ··· 3044 2957 cpu: [x64] 3045 2958 os: [sunos] 3046 2959 3047 - '@esbuild/sunos-x64@0.25.2': 3048 - resolution: {integrity: sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==} 3049 - engines: {node: '>=18'} 3050 - cpu: [x64] 3051 - os: [sunos] 3052 - 3053 2960 '@esbuild/sunos-x64@0.25.5': 3054 2961 resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==} 3055 2962 engines: {node: '>=18'} ··· 3068 2975 cpu: [arm64] 3069 2976 os: [win32] 3070 2977 3071 - '@esbuild/win32-arm64@0.25.2': 3072 - resolution: {integrity: sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==} 3073 - engines: {node: '>=18'} 3074 - cpu: [arm64] 3075 - os: [win32] 3076 - 3077 2978 '@esbuild/win32-arm64@0.25.5': 3078 2979 resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==} 3079 2980 engines: {node: '>=18'} ··· 3092 2993 cpu: [ia32] 3093 2994 os: [win32] 3094 2995 3095 - '@esbuild/win32-ia32@0.25.2': 3096 - resolution: {integrity: sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==} 3097 - engines: {node: '>=18'} 3098 - cpu: [ia32] 3099 - os: [win32] 3100 - 3101 2996 '@esbuild/win32-ia32@0.25.5': 3102 2997 resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==} 3103 2998 engines: {node: '>=18'} ··· 3113 3008 '@esbuild/win32-x64@0.21.5': 3114 3009 resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 3115 3010 engines: {node: '>=12'} 3116 - cpu: [x64] 3117 - os: [win32] 3118 - 3119 - '@esbuild/win32-x64@0.25.2': 3120 - resolution: {integrity: sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==} 3121 - engines: {node: '>=18'} 3122 3011 cpu: [x64] 3123 3012 os: [win32] 3124 3013 ··· 3516 3405 '@jridgewell/gen-mapping@0.3.11': 3517 3406 resolution: {integrity: sha512-C512c1ytBTio4MrpWKlJpyFHT6+qfFL8SZ58zBzJ1OOzUEjHeF1BtjY2fH7n4x/g2OV/KiiMLAivOp1DXmiMMw==} 3518 3407 3408 + '@jridgewell/gen-mapping@0.3.13': 3409 + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} 3410 + 3519 3411 '@jridgewell/gen-mapping@0.3.5': 3520 3412 resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 3521 3413 engines: {node: '>=6.0.0'} 3414 + 3415 + '@jridgewell/remapping@2.3.5': 3416 + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} 3522 3417 3523 3418 '@jridgewell/resolve-uri@3.1.1': 3524 3419 resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} ··· 3543 3438 3544 3439 '@jridgewell/sourcemap-codec@1.5.3': 3545 3440 resolution: {integrity: sha512-AiR5uKpFxP3PjO4R19kQGIMwxyRyPuXmKEEy301V1C0+1rVjS94EZQXf1QKZYN8Q0YM+estSPhmx5JwNftv6nw==} 3441 + 3442 + '@jridgewell/sourcemap-codec@1.5.5': 3443 + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 3546 3444 3547 3445 '@jridgewell/trace-mapping@0.3.25': 3548 3446 resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} ··· 5436 5334 peerDependencies: 5437 5335 react: ^18.0 || ^19.0 || ^19.0.0-rc 5438 5336 5337 + '@rolldown/pluginutils@1.0.0-beta.27': 5338 + resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==} 5339 + 5439 5340 '@rollup/plugin-commonjs@28.0.1': 5440 5341 resolution: {integrity: sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA==} 5441 5342 engines: {node: '>=16.0.0 || 14 >= 14.17'} ··· 5454 5355 rollup: 5455 5356 optional: true 5456 5357 5457 - '@rollup/rollup-android-arm-eabi@4.34.8': 5458 - resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==} 5459 - cpu: [arm] 5460 - os: [android] 5358 + '@rollup/pluginutils@5.3.0': 5359 + resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} 5360 + engines: {node: '>=14.0.0'} 5361 + peerDependencies: 5362 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 5363 + peerDependenciesMeta: 5364 + rollup: 5365 + optional: true 5461 5366 5462 5367 '@rollup/rollup-android-arm-eabi@4.45.1': 5463 5368 resolution: {integrity: sha512-NEySIFvMY0ZQO+utJkgoMiCAjMrGvnbDLHvcmlA33UXJpYBCvlBEbMMtV837uCkS+plG2umfhn0T5mMAxGrlRA==} 5464 5369 cpu: [arm] 5465 5370 os: [android] 5466 5371 5467 - '@rollup/rollup-android-arm64@4.34.8': 5468 - resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==} 5469 - cpu: [arm64] 5470 - os: [android] 5471 - 5472 5372 '@rollup/rollup-android-arm64@4.45.1': 5473 5373 resolution: {integrity: sha512-ujQ+sMXJkg4LRJaYreaVx7Z/VMgBBd89wGS4qMrdtfUFZ+TSY5Rs9asgjitLwzeIbhwdEhyj29zhst3L1lKsRQ==} 5474 5374 cpu: [arm64] 5475 5375 os: [android] 5476 5376 5477 - '@rollup/rollup-darwin-arm64@4.34.8': 5478 - resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==} 5479 - cpu: [arm64] 5480 - os: [darwin] 5481 - 5482 5377 '@rollup/rollup-darwin-arm64@4.45.1': 5483 5378 resolution: {integrity: sha512-FSncqHvqTm3lC6Y13xncsdOYfxGSLnP+73k815EfNmpewPs+EyM49haPS105Rh4aF5mJKywk9X0ogzLXZzN9lA==} 5484 5379 cpu: [arm64] 5485 5380 os: [darwin] 5486 5381 5487 - '@rollup/rollup-darwin-x64@4.34.8': 5488 - resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==} 5489 - cpu: [x64] 5490 - os: [darwin] 5491 - 5492 5382 '@rollup/rollup-darwin-x64@4.45.1': 5493 5383 resolution: {integrity: sha512-2/vVn/husP5XI7Fsf/RlhDaQJ7x9zjvC81anIVbr4b/f0xtSmXQTFcGIQ/B1cXIYM6h2nAhJkdMHTnD7OtQ9Og==} 5494 5384 cpu: [x64] 5495 5385 os: [darwin] 5496 5386 5497 - '@rollup/rollup-freebsd-arm64@4.34.8': 5498 - resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==} 5499 - cpu: [arm64] 5500 - os: [freebsd] 5501 - 5502 5387 '@rollup/rollup-freebsd-arm64@4.45.1': 5503 5388 resolution: {integrity: sha512-4g1kaDxQItZsrkVTdYQ0bxu4ZIQ32cotoQbmsAnW1jAE4XCMbcBPDirX5fyUzdhVCKgPcrwWuucI8yrVRBw2+g==} 5504 5389 cpu: [arm64] 5505 5390 os: [freebsd] 5506 5391 5507 - '@rollup/rollup-freebsd-x64@4.34.8': 5508 - resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==} 5509 - cpu: [x64] 5510 - os: [freebsd] 5511 - 5512 5392 '@rollup/rollup-freebsd-x64@4.45.1': 5513 5393 resolution: {integrity: sha512-L/6JsfiL74i3uK1Ti2ZFSNsp5NMiM4/kbbGEcOCps99aZx3g8SJMO1/9Y0n/qKlWZfn6sScf98lEOUe2mBvW9A==} 5514 5394 cpu: [x64] 5515 5395 os: [freebsd] 5516 5396 5517 - '@rollup/rollup-linux-arm-gnueabihf@4.34.8': 5518 - resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==} 5519 - cpu: [arm] 5520 - os: [linux] 5521 - 5522 5397 '@rollup/rollup-linux-arm-gnueabihf@4.45.1': 5523 5398 resolution: {integrity: sha512-RkdOTu2jK7brlu+ZwjMIZfdV2sSYHK2qR08FUWcIoqJC2eywHbXr0L8T/pONFwkGukQqERDheaGTeedG+rra6Q==} 5524 - cpu: [arm] 5525 - os: [linux] 5526 - 5527 - '@rollup/rollup-linux-arm-musleabihf@4.34.8': 5528 - resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==} 5529 5399 cpu: [arm] 5530 5400 os: [linux] 5531 5401 ··· 5534 5404 cpu: [arm] 5535 5405 os: [linux] 5536 5406 5537 - '@rollup/rollup-linux-arm64-gnu@4.34.8': 5538 - resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==} 5539 - cpu: [arm64] 5540 - os: [linux] 5541 - 5542 5407 '@rollup/rollup-linux-arm64-gnu@4.45.1': 5543 5408 resolution: {integrity: sha512-k3dOKCfIVixWjG7OXTCOmDfJj3vbdhN0QYEqB+OuGArOChek22hn7Uy5A/gTDNAcCy5v2YcXRJ/Qcnm4/ma1xw==} 5544 5409 cpu: [arm64] 5545 5410 os: [linux] 5546 5411 5547 - '@rollup/rollup-linux-arm64-musl@4.34.8': 5548 - resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==} 5549 - cpu: [arm64] 5550 - os: [linux] 5551 - 5552 5412 '@rollup/rollup-linux-arm64-musl@4.45.1': 5553 5413 resolution: {integrity: sha512-PmI1vxQetnM58ZmDFl9/Uk2lpBBby6B6rF4muJc65uZbxCs0EA7hhKCk2PKlmZKuyVSHAyIw3+/SiuMLxKxWog==} 5554 5414 cpu: [arm64] 5555 5415 os: [linux] 5556 5416 5557 - '@rollup/rollup-linux-loongarch64-gnu@4.34.8': 5558 - resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==} 5559 - cpu: [loong64] 5560 - os: [linux] 5561 - 5562 5417 '@rollup/rollup-linux-loongarch64-gnu@4.45.1': 5563 5418 resolution: {integrity: sha512-9UmI0VzGmNJ28ibHW2GpE2nF0PBQqsyiS4kcJ5vK+wuwGnV5RlqdczVocDSUfGX/Na7/XINRVoUgJyFIgipoRg==} 5564 5419 cpu: [loong64] 5565 5420 os: [linux] 5566 5421 5567 - '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': 5568 - resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==} 5569 - cpu: [ppc64] 5570 - os: [linux] 5571 - 5572 5422 '@rollup/rollup-linux-powerpc64le-gnu@4.45.1': 5573 5423 resolution: {integrity: sha512-7nR2KY8oEOUTD3pBAxIBBbZr0U7U+R9HDTPNy+5nVVHDXI4ikYniH1oxQz9VoB5PbBU1CZuDGHkLJkd3zLMWsg==} 5574 5424 cpu: [ppc64] 5575 5425 os: [linux] 5576 5426 5577 - '@rollup/rollup-linux-riscv64-gnu@4.34.8': 5578 - resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==} 5579 - cpu: [riscv64] 5580 - os: [linux] 5581 - 5582 5427 '@rollup/rollup-linux-riscv64-gnu@4.45.1': 5583 5428 resolution: {integrity: sha512-nlcl3jgUultKROfZijKjRQLUu9Ma0PeNv/VFHkZiKbXTBQXhpytS8CIj5/NfBeECZtY2FJQubm6ltIxm/ftxpw==} 5584 5429 cpu: [riscv64] ··· 5589 5434 cpu: [riscv64] 5590 5435 os: [linux] 5591 5436 5592 - '@rollup/rollup-linux-s390x-gnu@4.34.8': 5593 - resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==} 5594 - cpu: [s390x] 5595 - os: [linux] 5596 - 5597 5437 '@rollup/rollup-linux-s390x-gnu@4.45.1': 5598 5438 resolution: {integrity: sha512-NITBOCv3Qqc6hhwFt7jLV78VEO/il4YcBzoMGGNxznLgRQf43VQDae0aAzKiBeEPIxnDrACiMgbqjuihx08OOw==} 5599 5439 cpu: [s390x] 5600 5440 os: [linux] 5601 5441 5602 - '@rollup/rollup-linux-x64-gnu@4.34.8': 5603 - resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==} 5604 - cpu: [x64] 5605 - os: [linux] 5606 - 5607 5442 '@rollup/rollup-linux-x64-gnu@4.45.1': 5608 5443 resolution: {integrity: sha512-+E/lYl6qu1zqgPEnTrs4WysQtvc/Sh4fC2nByfFExqgYrqkKWp1tWIbe+ELhixnenSpBbLXNi6vbEEJ8M7fiHw==} 5609 5444 cpu: [x64] 5610 5445 os: [linux] 5611 5446 5612 - '@rollup/rollup-linux-x64-musl@4.34.8': 5613 - resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==} 5614 - cpu: [x64] 5615 - os: [linux] 5616 - 5617 5447 '@rollup/rollup-linux-x64-musl@4.45.1': 5618 5448 resolution: {integrity: sha512-a6WIAp89p3kpNoYStITT9RbTbTnqarU7D8N8F2CV+4Cl9fwCOZraLVuVFvlpsW0SbIiYtEnhCZBPLoNdRkjQFw==} 5619 5449 cpu: [x64] 5620 5450 os: [linux] 5621 5451 5622 - '@rollup/rollup-win32-arm64-msvc@4.34.8': 5623 - resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==} 5624 - cpu: [arm64] 5625 - os: [win32] 5626 - 5627 5452 '@rollup/rollup-win32-arm64-msvc@4.45.1': 5628 5453 resolution: {integrity: sha512-T5Bi/NS3fQiJeYdGvRpTAP5P02kqSOpqiopwhj0uaXB6nzs5JVi2XMJb18JUSKhCOX8+UE1UKQufyD6Or48dJg==} 5629 5454 cpu: [arm64] 5630 5455 os: [win32] 5631 5456 5632 - '@rollup/rollup-win32-ia32-msvc@4.34.8': 5633 - resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==} 5634 - cpu: [ia32] 5635 - os: [win32] 5636 - 5637 5457 '@rollup/rollup-win32-ia32-msvc@4.45.1': 5638 5458 resolution: {integrity: sha512-lxV2Pako3ujjuUe9jiU3/s7KSrDfH6IgTSQOnDWr9aJ92YsFd7EurmClK0ly/t8dzMkDtd04g60WX6yl0sGfdw==} 5639 5459 cpu: [ia32] 5640 - os: [win32] 5641 - 5642 - '@rollup/rollup-win32-x64-msvc@4.34.8': 5643 - resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==} 5644 - cpu: [x64] 5645 5460 os: [win32] 5646 5461 5647 5462 '@rollup/rollup-win32-x64-msvc@4.45.1': ··· 5796 5611 peerDependencies: 5797 5612 webpack: '>=4.40.0' 5798 5613 5614 + '@shikijs/core@3.12.2': 5615 + resolution: {integrity: sha512-L1Safnhra3tX/oJK5kYHaWmLEBJi1irASwewzY3taX5ibyXyMkkSDZlq01qigjryOBwrXSdFgTiZ3ryzSNeu7Q==} 5616 + 5799 5617 '@shikijs/core@3.6.0': 5800 5618 resolution: {integrity: sha512-9By7Xb3olEX0o6UeJyPLI1PE1scC4d3wcVepvtv2xbuN9/IThYN4Wcwh24rcFeASzPam11MCq8yQpwwzCgSBRw==} 5801 5619 5620 + '@shikijs/engine-javascript@3.12.2': 5621 + resolution: {integrity: sha512-Nm3/azSsaVS7hk6EwtHEnTythjQfwvrO5tKqMlaH9TwG1P+PNaR8M0EAKZ+GaH2DFwvcr4iSfTveyxMIvXEHMw==} 5622 + 5802 5623 '@shikijs/engine-javascript@3.6.0': 5803 5624 resolution: {integrity: sha512-7YnLhZG/TU05IHMG14QaLvTW/9WiK8SEYafceccHUSXs2Qr5vJibUwsDfXDLmRi0zHdzsxrGKpSX6hnqe0k8nA==} 5625 + 5626 + '@shikijs/engine-oniguruma@3.12.2': 5627 + resolution: {integrity: sha512-hozwnFHsLvujK4/CPVHNo3Bcg2EsnG8krI/ZQ2FlBlCRpPZW4XAEQmEwqegJsypsTAN9ehu2tEYe30lYKSZW/w==} 5804 5628 5805 5629 '@shikijs/engine-oniguruma@3.6.0': 5806 5630 resolution: {integrity: sha512-nmOhIZ9yT3Grd+2plmW/d8+vZ2pcQmo/UnVwXMUXAKTXdi+LK0S08Ancrz5tQQPkxvjBalpMW2aKvwXfelauvA==} 5807 5631 5632 + '@shikijs/langs@3.12.2': 5633 + resolution: {integrity: sha512-bVx5PfuZHDSHoBal+KzJZGheFuyH4qwwcwG/n+MsWno5cTlKmaNtTsGzJpHYQ8YPbB5BdEdKU1rga5/6JGY8ww==} 5634 + 5808 5635 '@shikijs/langs@3.6.0': 5809 5636 resolution: {integrity: sha512-IdZkQJaLBu1LCYCwkr30hNuSDfllOT8RWYVZK1tD2J03DkiagYKRxj/pDSl8Didml3xxuyzUjgtioInwEQM/TA==} 5810 5637 5638 + '@shikijs/themes@3.12.2': 5639 + resolution: {integrity: sha512-fTR3QAgnwYpfGczpIbzPjlRnxyONJOerguQv1iwpyQZ9QXX4qy/XFQqXlf17XTsorxnHoJGbH/LXBvwtqDsF5A==} 5640 + 5811 5641 '@shikijs/themes@3.6.0': 5812 5642 resolution: {integrity: sha512-Fq2j4nWr1DF4drvmhqKq8x5vVQ27VncF8XZMBuHuQMZvUSS3NBgpqfwz/FoGe36+W6PvniZ1yDlg2d4kmYDU6w==} 5643 + 5644 + '@shikijs/types@3.12.2': 5645 + resolution: {integrity: sha512-K5UIBzxCyv0YoxN3LMrKB9zuhp1bV+LgewxuVwHdl4Gz5oePoUFrr9EfgJlGlDeXCU1b/yhdnXeuRvAnz8HN8Q==} 5813 5646 5814 5647 '@shikijs/types@3.6.0': 5815 5648 resolution: {integrity: sha512-cLWFiToxYu0aAzJqhXTQsFiJRTFDAGl93IrMSBNaGSzs7ixkLfdG6pH11HipuWFGW5vyx4X47W8HDQ7eSrmBUg==} ··· 6384 6217 '@types/braces@3.0.5': 6385 6218 resolution: {integrity: sha512-SQFof9H+LXeWNz8wDe7oN5zu7ket0qwMu5vZubW4GCJ8Kkeh6nBWUz87+KTz/G3Kqsrp0j/W253XJb3KMEeg3w==} 6386 6219 6387 - '@types/bun@1.2.20': 6388 - resolution: {integrity: sha512-dX3RGzQ8+KgmMw7CsW4xT5ITBSCrSbfHc36SNT31EOUg/LA9JWq0VDdEXDRSe1InVWpd2yLUM1FUF/kEOyTzYA==} 6220 + '@types/bun@1.2.21': 6221 + resolution: {integrity: sha512-NiDnvEqmbfQ6dmZ3EeUO577s4P5bf4HCTXtI6trMc6f6RzirY5IrF3aIookuSpyslFzrnvv2lmEWv5HyC1X79A==} 6389 6222 6390 6223 '@types/caseless@0.12.4': 6391 6224 resolution: {integrity: sha512-2in/lrHRNmDvHPgyormtEralhPcN3An1gLjJzj2Bw145VBxkQ75JEXW6CTdMAwShiHQcYsl2d10IjQSdJSJz4g==} ··· 6441 6274 '@types/eslint@9.6.1': 6442 6275 resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} 6443 6276 6444 - '@types/estree-jsx@1.0.2': 6445 - resolution: {integrity: sha512-GNBWlGBMjiiiL5TSkvPtOteuXsiVitw5MYGY1UYlrAq0SKyczsls6sCD7TZ8fsjRsvCVxml7EbyjJezPb3DrSA==} 6446 - 6447 6277 '@types/estree-jsx@1.0.5': 6448 6278 resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} 6449 - 6450 - '@types/estree@1.0.6': 6451 - resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 6452 6279 6453 6280 '@types/estree@1.0.8': 6454 6281 resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} ··· 6638 6465 resolution: {integrity: sha512-6Zr/9twzWpMJp4ap1fwLIcKkehju6UR8D1BK2+QUfGPxlXQBusxwBJzf3TqATCSceeShaJsALHaSDwuKDFpoTw==} 6639 6466 engines: {node: '>=16.14'} 6640 6467 6641 - '@vitejs/plugin-react@4.3.4': 6642 - resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==} 6468 + '@vitejs/plugin-react@4.7.0': 6469 + resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==} 6643 6470 engines: {node: ^14.18.0 || >=16.0.0} 6644 6471 peerDependencies: 6645 - vite: ^4.2.0 || ^5.0.0 || ^6.0.0 6472 + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 6646 6473 6647 6474 '@volar/kit@2.4.10': 6648 6475 resolution: {integrity: sha512-ul+rLeO9RlFDgkY/FhPWMnpFqAsjvjkKz8VZeOY5YCJMwTblmmSBlNJtFNxSBx9t/k1q80nEthLyxiJ50ZbIAg==} ··· 6909 6736 peerDependencies: 6910 6737 astro: ^4.0.0-beta || ^5.0.0-beta || ^3.3.0 6911 6738 6912 - astro@5.12.2: 6913 - resolution: {integrity: sha512-/qTPSD8bSxjsh5KNXvOsf6Md7dqNuH3WSx6KLa1YbxPR2JZDgPWEKEyulS3/9L5h5aP0SkjONrqwOGdgWw97fg==} 6739 + astro@5.13.7: 6740 + resolution: {integrity: sha512-Of2tST7ErbE4y1dVb4aWDXaQSIRBAfraJ4jDqaA3PzPRJOn6Ina36+tQ+8BezjYqiWwRRJdOEE07PRAJXnsddw==} 6914 6741 engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} 6915 6742 hasBin: true 6916 6743 ··· 7044 6871 bun-types@1.0.8: 7045 6872 resolution: {integrity: sha512-2dNB+dBwAcFW7RSd4y5vKycRjouKVklSwPk4EjBKWvcMYUBOqZGGNzV7+b2tfKBG3BeRXnozbnegVKR1azuATg==} 7046 6873 7047 - bun-types@1.2.20: 7048 - resolution: {integrity: sha512-pxTnQYOrKvdOwyiyd/7sMt9yFOenN004Y6O4lCcCUoKVej48FS5cvTw9geRaEcB9TsDZaJKAxPTVvi8tFsVuXA==} 6874 + bun-types@1.2.21: 6875 + resolution: {integrity: sha512-sa2Tj77Ijc/NTLS0/Odjq/qngmEPZfbfnOERi0KRUYhT9R8M4VBioWVmMWE5GrYbKMc+5lVybXygLdibHaqVqw==} 7049 6876 peerDependencies: 7050 6877 '@types/react': ^19 7051 6878 ··· 7149 6976 resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} 7150 6977 engines: {node: '>=6.0'} 7151 6978 7152 - ci-info@4.2.0: 7153 - resolution: {integrity: sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==} 6979 + ci-info@4.3.0: 6980 + resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} 7154 6981 engines: {node: '>=8'} 7155 6982 7156 6983 cjs-module-lexer@1.4.1: ··· 7372 7199 resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 7373 7200 engines: {node: '>= 8'} 7374 7201 7375 - crossws@0.3.4: 7376 - resolution: {integrity: sha512-uj0O1ETYX1Bh6uSgktfPvwDiPYGQ3aI4qVsaC/LWpkIzGj1nUYm5FK3K+t11oOlpN01lGbprFCH4wBlKdJjVgw==} 7202 + crossws@0.3.5: 7203 + resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} 7377 7204 7378 7205 crypto-js@4.2.0: 7379 7206 resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} ··· 7560 7387 destr@2.0.3: 7561 7388 resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} 7562 7389 7390 + destr@2.0.5: 7391 + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} 7392 + 7563 7393 detect-libc@1.0.3: 7564 7394 resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} 7565 7395 engines: {node: '>=0.10'} ··· 7850 7680 esbuild@0.21.5: 7851 7681 resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 7852 7682 engines: {node: '>=12'} 7853 - hasBin: true 7854 - 7855 - esbuild@0.25.2: 7856 - resolution: {integrity: sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==} 7857 - engines: {node: '>=18'} 7858 7683 hasBin: true 7859 7684 7860 7685 esbuild@0.25.5: ··· 8302 8127 resolution: {integrity: sha512-KcFVtoP1CVFtQu0aSk3AyAt2og66PFhZAlkUOuWKwzMLoulHXG5W5wE5xAnHb+yl3/wEFoqGW7/cDGMU8igDZQ==} 8303 8128 engines: {node: '>=14.0.0'} 8304 8129 8305 - h3@1.15.0: 8306 - resolution: {integrity: sha512-OsjX4JW8J4XGgCgEcad20pepFQWnuKH+OwkCJjogF3C+9AZ1iYdtB4hX6vAb5DskBiu5ljEXqApINjR8CqoCMQ==} 8130 + h3@1.15.4: 8131 + resolution: {integrity: sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==} 8307 8132 8308 8133 handlebars@4.7.8: 8309 8134 resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} ··· 8443 8268 htmlparser2@8.0.2: 8444 8269 resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} 8445 8270 8446 - http-cache-semantics@4.1.1: 8447 - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} 8271 + http-cache-semantics@4.2.0: 8272 + resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} 8448 8273 8449 8274 http-errors@2.0.0: 8450 8275 resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} ··· 8508 8333 8509 8334 import-meta-resolve@4.1.0: 8510 8335 resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} 8336 + 8337 + import-meta-resolve@4.2.0: 8338 + resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==} 8511 8339 8512 8340 indent-string@4.0.0: 8513 8341 resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} ··· 9044 8872 magic-string@0.30.17: 9045 8873 resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} 9046 8874 8875 + magic-string@0.30.19: 8876 + resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} 8877 + 9047 8878 magic-string@0.30.8: 9048 8879 resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==} 9049 8880 engines: {node: '>=12'} ··· 9660 9491 node-fetch-native@1.6.6: 9661 9492 resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==} 9662 9493 9494 + node-fetch-native@1.6.7: 9495 + resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} 9496 + 9663 9497 node-fetch@2.7.0: 9664 9498 resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} 9665 9499 engines: {node: 4.x || >=6.0.0} ··· 9677 9511 resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} 9678 9512 hasBin: true 9679 9513 9680 - node-mock-http@1.0.0: 9681 - resolution: {integrity: sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ==} 9514 + node-mock-http@1.0.3: 9515 + resolution: {integrity: sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==} 9682 9516 9683 9517 node-plop@0.26.3: 9684 9518 resolution: {integrity: sha512-Cov028YhBZ5aB7MdMWJEmwyBig43aGL5WT4vdoB28Oitau1zZAcHUn8Sgfk9HM33TqhtLJ9PlM/O0Mv+QpV/4Q==} ··· 9767 9601 9768 9602 ofetch@1.4.1: 9769 9603 resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} 9770 - 9771 - ohash@1.1.4: 9772 - resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==} 9773 9604 9774 9605 ohash@2.0.11: 9775 9606 resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} ··· 9871 9702 package-manager-detector@0.2.9: 9872 9703 resolution: {integrity: sha512-+vYvA/Y31l8Zk8dwxHhL3JfTuHPm6tlxM2A3GeQyl7ovYnSp1+mzAxClxaOr0qO1TtPxbQxetI7v5XqKLJZk7Q==} 9873 9704 9874 - package-manager-detector@1.1.0: 9875 - resolution: {integrity: sha512-Y8f9qUlBzW8qauJjd/eu6jlpJZsuPJm2ZAV0cDVd420o4EdpH5RPdoCv+60/TdJflGatr4sDfpAL6ArWZbM5tA==} 9705 + package-manager-detector@1.3.0: 9706 + resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==} 9876 9707 9877 9708 pagefind@1.3.0: 9878 9709 resolution: {integrity: sha512-8KPLGT5g9s+olKMRTU9LFekLizkVIu9tes90O1/aigJ0T5LmyPqTzGJrETnSw3meSYg58YH7JTzhTTW/3z6VAw==} ··· 10008 9839 10009 9840 picomatch@4.0.2: 10010 9841 resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 9842 + engines: {node: '>=12'} 9843 + 9844 + picomatch@4.0.3: 9845 + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 10011 9846 engines: {node: '>=12'} 10012 9847 10013 9848 pirates@4.0.6: ··· 10265 10100 react-promise-suspense@0.3.4: 10266 10101 resolution: {integrity: sha512-I42jl7L3Ze6kZaq+7zXWSunBa3b1on5yfvUW6Eo/3fFOj6dZ5Bqmcd264nJbTK/gn1HjjILAjSwnZbV4RpSaNQ==} 10267 10102 10268 - react-refresh@0.14.2: 10269 - resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} 10103 + react-refresh@0.17.0: 10104 + resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} 10270 10105 engines: {node: '>=0.10.0'} 10271 10106 10272 10107 react-remove-scroll-bar@2.3.8: ··· 10415 10250 10416 10251 rehype-minify-whitespace@6.0.0: 10417 10252 resolution: {integrity: sha512-i9It4YHR0Sf3GsnlR5jFUKXRr9oayvEk9GKQUkwZv6hs70OH9q3OCZrq9PpLvIGKt3W+JxBOxCidNVpH/6rWdA==} 10418 - 10419 - rehype-parse@9.0.0: 10420 - resolution: {integrity: sha512-WG7nfvmWWkCR++KEkZevZb/uw41E8TsH4DsY9UxsTbIXCVGbAs4S+r8FrQ+OtH5EEQAs+5UxKC42VinkmpA1Yw==} 10421 10253 10422 10254 rehype-parse@9.0.1: 10423 10255 resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} ··· 10592 10424 rollup@3.29.5: 10593 10425 resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==} 10594 10426 engines: {node: '>=14.18.0', npm: '>=8.0.0'} 10595 - hasBin: true 10596 - 10597 - rollup@4.34.8: 10598 - resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==} 10599 - engines: {node: '>=18.0.0', npm: '>=8.0.0'} 10600 10427 hasBin: true 10601 10428 10602 10429 rollup@4.45.1: ··· 10718 10545 shiki@0.14.4: 10719 10546 resolution: {integrity: sha512-IXCRip2IQzKwxArNNq1S+On4KPML3Yyn8Zzs/xRgcgOWIr8ntIK3IKzjFPfjy/7kt9ZMjc+FItfqHRBg8b6tNQ==} 10720 10547 10548 + shiki@3.12.2: 10549 + resolution: {integrity: sha512-uIrKI+f9IPz1zDT+GMz+0RjzKJiijVr6WDWm9Pe3NNY6QigKCfifCEv9v9R2mDASKKjzjQ2QpFLcxaR3iHSnMA==} 10550 + 10721 10551 shiki@3.6.0: 10722 10552 resolution: {integrity: sha512-tKn/Y0MGBTffQoklaATXmTqDU02zx8NYBGQ+F6gy87/YjKbizcLd+Cybh/0ZtOBX9r1NEnAy/GTRDKtOsc1L9w==} 10723 10553 ··· 10776 10606 resolution: {integrity: sha512-Y0OT8HezWsTNeEOSVxDnKOW/AyNXHQ4BwJNbAXlLTF5wWsBvrcHhIkE5Rf8kQMLmgf7nDX3PVOlgC6/Aiggu3Q==} 10777 10607 engines: {node: '>= 18', pnpm: '>= 8'} 10778 10608 10779 - smol-toml@1.3.1: 10780 - resolution: {integrity: sha512-tEYNll18pPKHroYSmLLrksq233j021G0giwW7P3D24jC54pQ5W5BXMsQ/Mvw1OJCmEYDgY+lrzT+3nNUtoNfXQ==} 10609 + smol-toml@1.4.1: 10610 + resolution: {integrity: sha512-CxdwHXyYTONGHThDbq5XdwbFsuY4wlClRGejfE2NtwUtiHYsP1QtNsHb/hnj31jKYSchztJsaA8pSQoVzkfCFg==} 10781 10611 engines: {node: '>= 18'} 10782 10612 10783 - smol-toml@1.4.1: 10784 - resolution: {integrity: sha512-CxdwHXyYTONGHThDbq5XdwbFsuY4wlClRGejfE2NtwUtiHYsP1QtNsHb/hnj31jKYSchztJsaA8pSQoVzkfCFg==} 10613 + smol-toml@1.4.2: 10614 + resolution: {integrity: sha512-rInDH6lCNiEyn3+hH8KVGFdbjc099j47+OSgbMrfDYX1CmXLfdKd7qi6IfcWj2wFxvSVkuI46M+wPGYfEOEj6g==} 10785 10615 engines: {node: '>= 18'} 10786 10616 10787 10617 snake-case@2.1.0: ··· 10848 10678 source-map@0.8.0-beta.0: 10849 10679 resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} 10850 10680 engines: {node: '>= 8'} 10681 + deprecated: The work that was done in this beta branch won't be included in future versions 10851 10682 10852 10683 space-separated-tokens@2.0.2: 10853 10684 resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} ··· 10858 10689 stacktrace-parser@0.1.10: 10859 10690 resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==} 10860 10691 engines: {node: '>=6'} 10692 + 10693 + starlight-image-zoom@0.13.0: 10694 + resolution: {integrity: sha512-7K/7gshnKooYd4ePy5vtyv1jFoFVNUb8IoXWDcnY69+nxvmLATNrmOzD2M4TJ/aKynPSBSM6j9ia4s/PPy/JGA==} 10695 + engines: {node: '>=18'} 10696 + peerDependencies: 10697 + '@astrojs/starlight': '>=0.32.0' 10861 10698 10862 10699 starlight-llms-txt@0.5.1: 10863 10700 resolution: {integrity: sha512-EPhTZ7jOhMxp6BBSpYNWuaJezzI+4eRgkwlFGV/XNNGSjNibo9JHrCvCbJO6BDk4znXcTWi0x8N7FO7ckNXLGQ==} ··· 11211 11048 '@swc/wasm': 11212 11049 optional: true 11213 11050 11214 - tsconfck@3.1.5: 11215 - resolution: {integrity: sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg==} 11051 + tsconfck@3.1.6: 11052 + resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} 11216 11053 engines: {node: ^18 || >=20} 11217 11054 hasBin: true 11218 11055 peerDependencies: ··· 11329 11166 ufo@1.5.4: 11330 11167 resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} 11331 11168 11169 + ufo@1.6.1: 11170 + resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} 11171 + 11332 11172 uglify-js@3.17.4: 11333 11173 resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} 11334 11174 engines: {node: '>=0.8.0'} ··· 11336 11176 11337 11177 uhyphen@0.2.0: 11338 11178 resolution: {integrity: sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==} 11339 - 11340 - ultrahtml@1.5.3: 11341 - resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==} 11342 11179 11343 11180 ultrahtml@1.6.0: 11344 11181 resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} ··· 11483 11320 resolution: {integrity: sha512-m1ekpSwuOT5hxkJeZGRxO7gXbXT3gF26NjQ7GdVHoLoF8/nopLcd/QfPigpCy7i51oFHiRJg/CyHhj4vs2+KGw==} 11484 11321 engines: {node: '>=18.12.0'} 11485 11322 11486 - unstorage@1.15.0: 11487 - resolution: {integrity: sha512-m40eHdGY/gA6xAPqo8eaxqXgBuzQTlAKfmB1iF7oCKXE1HfwHwzDJBywK+qQGn52dta+bPlZluPF7++yR3p/bg==} 11323 + unstorage@1.17.1: 11324 + resolution: {integrity: sha512-KKGwRTT0iVBCErKemkJCLs7JdxNVfqTPc/85ae1XES0+bsHbc/sFBfVi5kJp156cc51BHinIH2l3k0EZ24vOBQ==} 11488 11325 peerDependencies: 11489 11326 '@azure/app-configuration': ^1.8.0 11490 11327 '@azure/cosmos': ^4.2.0 ··· 11492 11329 '@azure/identity': ^4.6.0 11493 11330 '@azure/keyvault-secrets': ^4.9.0 11494 11331 '@azure/storage-blob': ^12.26.0 11495 - '@capacitor/preferences': ^6.0.3 11332 + '@capacitor/preferences': ^6.0.3 || ^7.0.0 11496 11333 '@deno/kv': '>=0.9.0' 11497 - '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 11334 + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 11498 11335 '@planetscale/database': ^1.19.0 11499 11336 '@upstash/redis': ^1.34.3 11500 11337 '@vercel/blob': '>=0.27.1' 11338 + '@vercel/functions': ^2.2.12 || ^3.0.0 11501 11339 '@vercel/kv': ^1.0.1 11502 11340 aws4fetch: ^1.0.20 11503 11341 db0: '>=0.2.1' ··· 11528 11366 '@upstash/redis': 11529 11367 optional: true 11530 11368 '@vercel/blob': 11369 + optional: true 11370 + '@vercel/functions': 11531 11371 optional: true 11532 11372 '@vercel/kv': 11533 11373 optional: true ··· 11652 11492 victory-vendor@36.9.2: 11653 11493 resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==} 11654 11494 11655 - vite@6.2.5: 11656 - resolution: {integrity: sha512-j023J/hCAa4pRIUH6J9HemwYfjB5llR2Ps0CWeikOtdR8+pAURAk0DoJC5/mm9kd+UgdnIy7d6HE4EAvlYhPhA==} 11657 - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 11658 - hasBin: true 11659 - peerDependencies: 11660 - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 11661 - jiti: '>=1.21.0' 11662 - less: '*' 11663 - lightningcss: ^1.21.0 11664 - sass: '*' 11665 - sass-embedded: '*' 11666 - stylus: '*' 11667 - sugarss: '*' 11668 - terser: ^5.16.0 11669 - tsx: ^4.8.1 11670 - yaml: ^2.4.2 11671 - peerDependenciesMeta: 11672 - '@types/node': 11673 - optional: true 11674 - jiti: 11675 - optional: true 11676 - less: 11677 - optional: true 11678 - lightningcss: 11679 - optional: true 11680 - sass: 11681 - optional: true 11682 - sass-embedded: 11683 - optional: true 11684 - stylus: 11685 - optional: true 11686 - sugarss: 11687 - optional: true 11688 - terser: 11689 - optional: true 11690 - tsx: 11691 - optional: true 11692 - yaml: 11693 - optional: true 11694 - 11695 - vite@6.3.5: 11696 - resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==} 11495 + vite@6.3.6: 11496 + resolution: {integrity: sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==} 11697 11497 engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 11698 11498 hasBin: true 11699 11499 peerDependencies: ··· 11732 11532 yaml: 11733 11533 optional: true 11734 11534 11735 - vitefu@1.0.6: 11736 - resolution: {integrity: sha512-+Rex1GlappUyNN6UfwbVZne/9cYC4+R2XDk9xkNXBKMw6HQagdX9PgZ8V2v1WUSK1wfBLp7qbI1+XSNIlB1xmA==} 11535 + vitefu@1.1.1: 11536 + resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} 11737 11537 peerDependencies: 11738 - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 11538 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 11739 11539 peerDependenciesMeta: 11740 11540 vite: 11741 11541 optional: true ··· 12029 11829 resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} 12030 11830 engines: {node: '>=12.20'} 12031 11831 12032 - yocto-spinner@0.2.1: 12033 - resolution: {integrity: sha512-lHHxjh0bXaLgdJy3cNnVb/F9myx3CkhrvSOEVTkaUgNMXnYFa2xYPVhtGnqhh3jErY2gParBOHallCbc7NrlZQ==} 11832 + yocto-spinner@0.2.3: 11833 + resolution: {integrity: sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==} 12034 11834 engines: {node: '>=18.19'} 12035 11835 12036 11836 yoctocolors-cjs@2.1.2: ··· 12049 11849 peerDependencies: 12050 11850 zod: ^3.24.1 12051 11851 11852 + zod-to-json-schema@3.24.6: 11853 + resolution: {integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==} 11854 + peerDependencies: 11855 + zod: ^3.24.1 11856 + 12052 11857 zod-to-ts@1.2.0: 12053 11858 resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} 12054 11859 peerDependencies: ··· 12066 11871 12067 11872 zod@3.25.67: 12068 11873 resolution: {integrity: sha512-idA2YXwpCdqUSKRCACDE6ItZD9TZzy3OZMtpfLoh6oPR47lipysRrJfjzMqFxQ3uJuUPyUeWe1r9vLH33xO/Qw==} 11874 + 11875 + zod@3.25.76: 11876 + resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} 12069 11877 12070 11878 zwitch@2.0.4: 12071 11879 resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} ··· 12093 11901 openapi3-ts: 4.1.2 12094 11902 zod: 3.24.1 12095 11903 12096 - '@astro-community/astro-embed-twitter@0.5.8(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))': 11904 + '@astro-community/astro-embed-twitter@0.5.8(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))': 12097 11905 dependencies: 12098 11906 '@astro-community/astro-embed-utils': 0.1.3 12099 - astro: 5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 11907 + astro: 5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 12100 11908 12101 11909 '@astro-community/astro-embed-utils@0.1.3': 12102 11910 dependencies: 12103 11911 linkedom: 0.14.26 12104 11912 12105 - '@astro-community/astro-embed-youtube@0.5.6(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))': 11913 + '@astro-community/astro-embed-youtube@0.5.6(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))': 12106 11914 dependencies: 12107 - astro: 5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 11915 + astro: 5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 12108 11916 lite-youtube-embed: 0.3.3 12109 11917 12110 11918 '@astrojs/check@0.9.4(prettier@3.6.2)(typescript@5.7.2)': ··· 12123 11931 '@astrojs/compiler@2.12.2': {} 12124 11932 12125 11933 '@astrojs/internal-helpers@0.6.1': {} 11934 + 11935 + '@astrojs/internal-helpers@0.7.2': {} 12126 11936 12127 11937 '@astrojs/language-server@2.15.4(prettier@3.6.2)(typescript@5.7.2)': 12128 11938 dependencies: ··· 12166 11976 remark-rehype: 11.1.2 12167 11977 remark-smartypants: 3.0.2 12168 11978 shiki: 3.6.0 12169 - smol-toml: 1.3.1 11979 + smol-toml: 1.4.1 12170 11980 unified: 11.0.5 12171 11981 unist-util-remove-position: 5.0.0 12172 11982 unist-util-visit: 5.0.0 ··· 12201 12011 transitivePeerDependencies: 12202 12012 - supports-color 12203 12013 12204 - '@astrojs/mdx@4.3.0(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))': 12014 + '@astrojs/markdown-remark@6.3.6': 12015 + dependencies: 12016 + '@astrojs/internal-helpers': 0.7.2 12017 + '@astrojs/prism': 3.3.0 12018 + github-slugger: 2.0.0 12019 + hast-util-from-html: 2.0.3 12020 + hast-util-to-text: 4.0.2 12021 + import-meta-resolve: 4.2.0 12022 + js-yaml: 4.1.0 12023 + mdast-util-definitions: 6.0.0 12024 + rehype-raw: 7.0.0 12025 + rehype-stringify: 10.0.1 12026 + remark-gfm: 4.0.1 12027 + remark-parse: 11.0.0 12028 + remark-rehype: 11.1.2 12029 + remark-smartypants: 3.0.2 12030 + shiki: 3.12.2 12031 + smol-toml: 1.4.2 12032 + unified: 11.0.5 12033 + unist-util-remove-position: 5.0.0 12034 + unist-util-visit: 5.0.0 12035 + unist-util-visit-parents: 6.0.1 12036 + vfile: 6.0.3 12037 + transitivePeerDependencies: 12038 + - supports-color 12039 + 12040 + '@astrojs/mdx@4.3.0(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))': 12205 12041 dependencies: 12206 12042 '@astrojs/markdown-remark': 6.3.2 12207 12043 '@mdx-js/mdx': 3.1.0(acorn@8.15.0) 12208 12044 acorn: 8.15.0 12209 - astro: 5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 12045 + astro: 5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 12210 12046 es-module-lexer: 1.7.0 12211 12047 estree-util-visit: 2.0.0 12212 12048 hast-util-to-html: 9.0.5 ··· 12224 12060 dependencies: 12225 12061 prismjs: 1.30.0 12226 12062 12227 - '@astrojs/react@4.2.3(@types/node@24.0.8)(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(jiti@2.4.2)(lightningcss@1.30.1)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(terser@5.43.1)(yaml@2.6.1)': 12063 + '@astrojs/react@4.3.1(@types/node@24.0.8)(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(jiti@2.4.2)(lightningcss@1.30.1)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(terser@5.43.1)(yaml@2.6.1)': 12228 12064 dependencies: 12229 12065 '@types/react': 19.1.10 12230 12066 '@types/react-dom': 19.1.7(@types/react@19.1.10) 12231 - '@vitejs/plugin-react': 4.3.4(vite@6.2.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1)) 12067 + '@vitejs/plugin-react': 4.7.0(vite@6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1)) 12232 12068 react: 19.1.1 12233 12069 react-dom: 19.1.1(react@19.1.1) 12234 - ultrahtml: 1.5.3 12235 - vite: 6.2.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1) 12070 + ultrahtml: 1.6.0 12071 + vite: 6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1) 12236 12072 transitivePeerDependencies: 12237 12073 - '@types/node' 12238 12074 - jiti ··· 12247 12083 - tsx 12248 12084 - yaml 12249 12085 12250 - '@astrojs/sitemap@3.4.1': 12086 + '@astrojs/sitemap@3.5.1': 12251 12087 dependencies: 12252 12088 sitemap: 8.0.0 12253 12089 stream-replace-string: 2.0.0 12254 12090 zod: 3.25.67 12255 12091 12256 - '@astrojs/starlight-tailwind@4.0.1(@astrojs/starlight@0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)))(tailwindcss@4.1.8)': 12092 + '@astrojs/starlight-tailwind@4.0.1(@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)))(tailwindcss@4.1.8)': 12257 12093 dependencies: 12258 - '@astrojs/starlight': 0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 12094 + '@astrojs/starlight': 0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 12259 12095 tailwindcss: 4.1.8 12260 12096 12261 - '@astrojs/starlight@0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))': 12097 + '@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))': 12262 12098 dependencies: 12263 - '@astrojs/markdown-remark': 6.3.2 12264 - '@astrojs/mdx': 4.3.0(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 12265 - '@astrojs/sitemap': 3.4.1 12099 + '@astrojs/markdown-remark': 6.3.3 12100 + '@astrojs/mdx': 4.3.0(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 12101 + '@astrojs/sitemap': 3.5.1 12266 12102 '@pagefind/default-ui': 1.3.0 12267 12103 '@types/hast': 3.0.4 12268 12104 '@types/js-yaml': 4.0.9 12269 12105 '@types/mdast': 4.0.4 12270 - astro: 5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 12271 - astro-expressive-code: 0.41.2(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 12106 + astro: 5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 12107 + astro-expressive-code: 0.41.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 12272 12108 bcp-47: 2.1.0 12273 12109 hast-util-from-html: 2.0.3 12274 12110 hast-util-select: 6.0.3 ··· 12293 12129 12294 12130 '@astrojs/telemetry@3.3.0': 12295 12131 dependencies: 12296 - ci-info: 4.2.0 12132 + ci-info: 4.3.0 12297 12133 debug: 4.4.1 12298 12134 dlv: 1.1.3 12299 12135 dset: 3.1.4 ··· 12836 12672 12837 12673 '@babel/compat-data@7.26.2': {} 12838 12674 12675 + '@babel/compat-data@7.28.4': {} 12676 + 12839 12677 '@babel/core@7.26.0': 12840 12678 dependencies: 12841 12679 '@ampproject/remapping': 2.3.0 ··· 12856 12694 transitivePeerDependencies: 12857 12695 - supports-color 12858 12696 12697 + '@babel/core@7.28.4': 12698 + dependencies: 12699 + '@babel/code-frame': 7.27.1 12700 + '@babel/generator': 7.28.3 12701 + '@babel/helper-compilation-targets': 7.27.2 12702 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) 12703 + '@babel/helpers': 7.28.4 12704 + '@babel/parser': 7.28.4 12705 + '@babel/template': 7.27.2 12706 + '@babel/traverse': 7.28.4 12707 + '@babel/types': 7.28.4 12708 + '@jridgewell/remapping': 2.3.5 12709 + convert-source-map: 2.0.0 12710 + debug: 4.4.1 12711 + gensync: 1.0.0-beta.2 12712 + json5: 2.2.3 12713 + semver: 6.3.1 12714 + transitivePeerDependencies: 12715 + - supports-color 12716 + 12859 12717 '@babel/generator@7.27.5': 12860 12718 dependencies: 12861 12719 '@babel/parser': 7.27.7 ··· 12864 12722 '@jridgewell/trace-mapping': 0.3.28 12865 12723 jsesc: 3.0.2 12866 12724 12725 + '@babel/generator@7.28.3': 12726 + dependencies: 12727 + '@babel/parser': 7.28.4 12728 + '@babel/types': 7.28.4 12729 + '@jridgewell/gen-mapping': 0.3.13 12730 + '@jridgewell/trace-mapping': 0.3.28 12731 + jsesc: 3.0.2 12732 + 12867 12733 '@babel/helper-annotate-as-pure@7.27.3': 12868 12734 dependencies: 12869 12735 '@babel/types': 7.27.7 ··· 12876 12742 lru-cache: 5.1.1 12877 12743 semver: 6.3.1 12878 12744 12745 + '@babel/helper-compilation-targets@7.27.2': 12746 + dependencies: 12747 + '@babel/compat-data': 7.28.4 12748 + '@babel/helper-validator-option': 7.27.1 12749 + browserslist: 4.25.1 12750 + lru-cache: 5.1.1 12751 + semver: 6.3.1 12752 + 12879 12753 '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.26.0)': 12880 12754 dependencies: 12881 12755 '@babel/core': 7.26.0 ··· 12889 12763 transitivePeerDependencies: 12890 12764 - supports-color 12891 12765 12766 + '@babel/helper-globals@7.28.0': {} 12767 + 12892 12768 '@babel/helper-member-expression-to-functions@7.27.1': 12893 12769 dependencies: 12894 12770 '@babel/traverse': 7.27.7 ··· 12903 12779 transitivePeerDependencies: 12904 12780 - supports-color 12905 12781 12782 + '@babel/helper-module-imports@7.27.1': 12783 + dependencies: 12784 + '@babel/traverse': 7.28.4 12785 + '@babel/types': 7.28.4 12786 + transitivePeerDependencies: 12787 + - supports-color 12788 + 12906 12789 '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': 12907 12790 dependencies: 12908 12791 '@babel/core': 7.26.0 ··· 12912 12795 transitivePeerDependencies: 12913 12796 - supports-color 12914 12797 12798 + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)': 12799 + dependencies: 12800 + '@babel/core': 7.28.4 12801 + '@babel/helper-module-imports': 7.27.1 12802 + '@babel/helper-validator-identifier': 7.27.1 12803 + '@babel/traverse': 7.28.4 12804 + transitivePeerDependencies: 12805 + - supports-color 12806 + 12915 12807 '@babel/helper-optimise-call-expression@7.27.1': 12916 12808 dependencies: 12917 12809 '@babel/types': 7.27.7 12918 12810 12919 - '@babel/helper-plugin-utils@7.26.5': {} 12920 - 12921 12811 '@babel/helper-plugin-utils@7.27.1': {} 12922 12812 12923 12813 '@babel/helper-replace-supers@7.27.1(@babel/core@7.26.0)': ··· 12936 12826 transitivePeerDependencies: 12937 12827 - supports-color 12938 12828 12939 - '@babel/helper-string-parser@7.25.9': {} 12940 - 12941 12829 '@babel/helper-string-parser@7.27.1': {} 12942 - 12943 - '@babel/helper-validator-identifier@7.25.9': {} 12944 12830 12945 12831 '@babel/helper-validator-identifier@7.27.1': {} 12946 12832 12947 12833 '@babel/helper-validator-option@7.25.9': {} 12948 12834 12835 + '@babel/helper-validator-option@7.27.1': {} 12836 + 12949 12837 '@babel/helpers@7.26.0': 12950 12838 dependencies: 12951 12839 '@babel/template': 7.27.2 12952 12840 '@babel/types': 7.27.7 12953 12841 12954 - '@babel/parser@7.26.3': 12842 + '@babel/helpers@7.28.4': 12955 12843 dependencies: 12956 - '@babel/types': 7.26.3 12844 + '@babel/template': 7.27.2 12845 + '@babel/types': 7.28.4 12957 12846 12958 12847 '@babel/parser@7.27.7': 12959 12848 dependencies: 12960 12849 '@babel/types': 7.27.7 12961 12850 12851 + '@babel/parser@7.28.4': 12852 + dependencies: 12853 + '@babel/types': 7.28.4 12854 + 12962 12855 '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.26.0)': 12963 12856 dependencies: 12964 12857 '@babel/core': 7.26.0 12965 12858 '@babel/helper-plugin-utils': 7.27.1 12966 12859 12967 - '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)': 12860 + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)': 12968 12861 dependencies: 12969 - '@babel/core': 7.26.0 12970 - '@babel/helper-plugin-utils': 7.26.5 12862 + '@babel/core': 7.28.4 12863 + '@babel/helper-plugin-utils': 7.27.1 12971 12864 12972 - '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)': 12865 + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.4)': 12973 12866 dependencies: 12974 - '@babel/core': 7.26.0 12975 - '@babel/helper-plugin-utils': 7.26.5 12867 + '@babel/core': 7.28.4 12868 + '@babel/helper-plugin-utils': 7.27.1 12976 12869 12977 12870 '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.26.0)': 12978 12871 dependencies: ··· 13012 12905 transitivePeerDependencies: 13013 12906 - supports-color 13014 12907 13015 - '@babel/types@7.26.3': 12908 + '@babel/traverse@7.28.4': 13016 12909 dependencies: 13017 - '@babel/helper-string-parser': 7.25.9 13018 - '@babel/helper-validator-identifier': 7.25.9 12910 + '@babel/code-frame': 7.27.1 12911 + '@babel/generator': 7.28.3 12912 + '@babel/helper-globals': 7.28.0 12913 + '@babel/parser': 7.28.4 12914 + '@babel/template': 7.27.2 12915 + '@babel/types': 7.28.4 12916 + debug: 4.4.1 12917 + transitivePeerDependencies: 12918 + - supports-color 13019 12919 13020 12920 '@babel/types@7.27.7': 12921 + dependencies: 12922 + '@babel/helper-string-parser': 7.27.1 12923 + '@babel/helper-validator-identifier': 7.27.1 12924 + 12925 + '@babel/types@7.28.4': 13021 12926 dependencies: 13022 12927 '@babel/helper-string-parser': 7.27.1 13023 12928 '@babel/helper-validator-identifier': 7.27.1 ··· 13362 13267 '@esbuild/aix-ppc64@0.21.5': 13363 13268 optional: true 13364 13269 13365 - '@esbuild/aix-ppc64@0.25.2': 13366 - optional: true 13367 - 13368 13270 '@esbuild/aix-ppc64@0.25.5': 13369 13271 optional: true 13370 13272 ··· 13372 13274 optional: true 13373 13275 13374 13276 '@esbuild/android-arm64@0.21.5': 13375 - optional: true 13376 - 13377 - '@esbuild/android-arm64@0.25.2': 13378 13277 optional: true 13379 13278 13380 13279 '@esbuild/android-arm64@0.25.5': ··· 13386 13285 '@esbuild/android-arm@0.21.5': 13387 13286 optional: true 13388 13287 13389 - '@esbuild/android-arm@0.25.2': 13390 - optional: true 13391 - 13392 13288 '@esbuild/android-arm@0.25.5': 13393 13289 optional: true 13394 13290 ··· 13398 13294 '@esbuild/android-x64@0.21.5': 13399 13295 optional: true 13400 13296 13401 - '@esbuild/android-x64@0.25.2': 13402 - optional: true 13403 - 13404 13297 '@esbuild/android-x64@0.25.5': 13405 13298 optional: true 13406 13299 ··· 13410 13303 '@esbuild/darwin-arm64@0.21.5': 13411 13304 optional: true 13412 13305 13413 - '@esbuild/darwin-arm64@0.25.2': 13414 - optional: true 13415 - 13416 13306 '@esbuild/darwin-arm64@0.25.5': 13417 13307 optional: true 13418 13308 ··· 13422 13312 '@esbuild/darwin-x64@0.21.5': 13423 13313 optional: true 13424 13314 13425 - '@esbuild/darwin-x64@0.25.2': 13426 - optional: true 13427 - 13428 13315 '@esbuild/darwin-x64@0.25.5': 13429 13316 optional: true 13430 13317 ··· 13434 13321 '@esbuild/freebsd-arm64@0.21.5': 13435 13322 optional: true 13436 13323 13437 - '@esbuild/freebsd-arm64@0.25.2': 13438 - optional: true 13439 - 13440 13324 '@esbuild/freebsd-arm64@0.25.5': 13441 13325 optional: true 13442 13326 ··· 13446 13330 '@esbuild/freebsd-x64@0.21.5': 13447 13331 optional: true 13448 13332 13449 - '@esbuild/freebsd-x64@0.25.2': 13450 - optional: true 13451 - 13452 13333 '@esbuild/freebsd-x64@0.25.5': 13453 13334 optional: true 13454 13335 ··· 13458 13339 '@esbuild/linux-arm64@0.21.5': 13459 13340 optional: true 13460 13341 13461 - '@esbuild/linux-arm64@0.25.2': 13462 - optional: true 13463 - 13464 13342 '@esbuild/linux-arm64@0.25.5': 13465 13343 optional: true 13466 13344 ··· 13470 13348 '@esbuild/linux-arm@0.21.5': 13471 13349 optional: true 13472 13350 13473 - '@esbuild/linux-arm@0.25.2': 13474 - optional: true 13475 - 13476 13351 '@esbuild/linux-arm@0.25.5': 13477 13352 optional: true 13478 13353 ··· 13480 13355 optional: true 13481 13356 13482 13357 '@esbuild/linux-ia32@0.21.5': 13483 - optional: true 13484 - 13485 - '@esbuild/linux-ia32@0.25.2': 13486 13358 optional: true 13487 13359 13488 13360 '@esbuild/linux-ia32@0.25.5': ··· 13494 13366 '@esbuild/linux-loong64@0.21.5': 13495 13367 optional: true 13496 13368 13497 - '@esbuild/linux-loong64@0.25.2': 13498 - optional: true 13499 - 13500 13369 '@esbuild/linux-loong64@0.25.5': 13501 13370 optional: true 13502 13371 ··· 13504 13373 optional: true 13505 13374 13506 13375 '@esbuild/linux-mips64el@0.21.5': 13507 - optional: true 13508 - 13509 - '@esbuild/linux-mips64el@0.25.2': 13510 13376 optional: true 13511 13377 13512 13378 '@esbuild/linux-mips64el@0.25.5': ··· 13518 13384 '@esbuild/linux-ppc64@0.21.5': 13519 13385 optional: true 13520 13386 13521 - '@esbuild/linux-ppc64@0.25.2': 13522 - optional: true 13523 - 13524 13387 '@esbuild/linux-ppc64@0.25.5': 13525 13388 optional: true 13526 13389 ··· 13530 13393 '@esbuild/linux-riscv64@0.21.5': 13531 13394 optional: true 13532 13395 13533 - '@esbuild/linux-riscv64@0.25.2': 13534 - optional: true 13535 - 13536 13396 '@esbuild/linux-riscv64@0.25.5': 13537 13397 optional: true 13538 13398 ··· 13540 13400 optional: true 13541 13401 13542 13402 '@esbuild/linux-s390x@0.21.5': 13543 - optional: true 13544 - 13545 - '@esbuild/linux-s390x@0.25.2': 13546 13403 optional: true 13547 13404 13548 13405 '@esbuild/linux-s390x@0.25.5': ··· 13552 13409 optional: true 13553 13410 13554 13411 '@esbuild/linux-x64@0.21.5': 13555 - optional: true 13556 - 13557 - '@esbuild/linux-x64@0.25.2': 13558 13412 optional: true 13559 13413 13560 13414 '@esbuild/linux-x64@0.25.5': 13561 13415 optional: true 13562 13416 13563 - '@esbuild/netbsd-arm64@0.25.2': 13564 - optional: true 13565 - 13566 13417 '@esbuild/netbsd-arm64@0.25.5': 13567 13418 optional: true 13568 13419 ··· 13570 13421 optional: true 13571 13422 13572 13423 '@esbuild/netbsd-x64@0.21.5': 13573 - optional: true 13574 - 13575 - '@esbuild/netbsd-x64@0.25.2': 13576 13424 optional: true 13577 13425 13578 13426 '@esbuild/netbsd-x64@0.25.5': 13579 13427 optional: true 13580 13428 13581 - '@esbuild/openbsd-arm64@0.25.2': 13582 - optional: true 13583 - 13584 13429 '@esbuild/openbsd-arm64@0.25.5': 13585 13430 optional: true 13586 13431 ··· 13590 13435 '@esbuild/openbsd-x64@0.21.5': 13591 13436 optional: true 13592 13437 13593 - '@esbuild/openbsd-x64@0.25.2': 13594 - optional: true 13595 - 13596 13438 '@esbuild/openbsd-x64@0.25.5': 13597 13439 optional: true 13598 13440 ··· 13602 13444 '@esbuild/sunos-x64@0.21.5': 13603 13445 optional: true 13604 13446 13605 - '@esbuild/sunos-x64@0.25.2': 13606 - optional: true 13607 - 13608 13447 '@esbuild/sunos-x64@0.25.5': 13609 13448 optional: true 13610 13449 ··· 13614 13453 '@esbuild/win32-arm64@0.21.5': 13615 13454 optional: true 13616 13455 13617 - '@esbuild/win32-arm64@0.25.2': 13618 - optional: true 13619 - 13620 13456 '@esbuild/win32-arm64@0.25.5': 13621 13457 optional: true 13622 13458 ··· 13626 13462 '@esbuild/win32-ia32@0.21.5': 13627 13463 optional: true 13628 13464 13629 - '@esbuild/win32-ia32@0.25.2': 13630 - optional: true 13631 - 13632 13465 '@esbuild/win32-ia32@0.25.5': 13633 13466 optional: true 13634 13467 ··· 13636 13469 optional: true 13637 13470 13638 13471 '@esbuild/win32-x64@0.21.5': 13639 - optional: true 13640 - 13641 - '@esbuild/win32-x64@0.25.2': 13642 13472 optional: true 13643 13473 13644 13474 '@esbuild/win32-x64@0.25.5': ··· 14003 13833 '@jridgewell/sourcemap-codec': 1.5.3 14004 13834 '@jridgewell/trace-mapping': 0.3.28 14005 13835 13836 + '@jridgewell/gen-mapping@0.3.13': 13837 + dependencies: 13838 + '@jridgewell/sourcemap-codec': 1.5.3 13839 + '@jridgewell/trace-mapping': 0.3.28 13840 + 14006 13841 '@jridgewell/gen-mapping@0.3.5': 14007 13842 dependencies: 14008 13843 '@jridgewell/set-array': 1.2.1 14009 13844 '@jridgewell/sourcemap-codec': 1.5.3 14010 13845 '@jridgewell/trace-mapping': 0.3.25 13846 + 13847 + '@jridgewell/remapping@2.3.5': 13848 + dependencies: 13849 + '@jridgewell/gen-mapping': 0.3.11 13850 + '@jridgewell/trace-mapping': 0.3.28 14011 13851 14012 13852 '@jridgewell/resolve-uri@3.1.1': {} 14013 13853 ··· 14017 13857 14018 13858 '@jridgewell/source-map@0.3.9': 14019 13859 dependencies: 14020 - '@jridgewell/gen-mapping': 0.3.11 13860 + '@jridgewell/gen-mapping': 0.3.13 14021 13861 '@jridgewell/trace-mapping': 0.3.28 14022 13862 14023 13863 '@jridgewell/sourcemap-codec@1.4.15': {} ··· 14025 13865 '@jridgewell/sourcemap-codec@1.5.0': {} 14026 13866 14027 13867 '@jridgewell/sourcemap-codec@1.5.3': {} 13868 + 13869 + '@jridgewell/sourcemap-codec@1.5.5': {} 14028 13870 14029 13871 '@jridgewell/trace-mapping@0.3.25': 14030 13872 dependencies: ··· 14144 13986 '@mdx-js/mdx@3.1.0(acorn@8.15.0)': 14145 13987 dependencies: 14146 13988 '@types/estree': 1.0.8 14147 - '@types/estree-jsx': 1.0.2 13989 + '@types/estree-jsx': 1.0.5 14148 13990 '@types/hast': 3.0.4 14149 13991 '@types/mdx': 2.0.9 14150 13992 collapse-white-space: 2.1.0 ··· 14259 14101 14260 14102 '@open-draft/until@2.1.0': {} 14261 14103 14262 - '@openpanel/astro@1.0.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))': 14104 + '@openpanel/astro@1.0.1(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))': 14263 14105 dependencies: 14264 14106 '@openpanel/web': 1.0.1 14265 - astro: 5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 14107 + astro: 5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 14266 14108 14267 14109 '@openpanel/nextjs@1.0.8(next@15.4.7(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)': 14268 14110 dependencies: ··· 16024 15866 dependencies: 16025 15867 react: 19.1.1 16026 15868 15869 + '@rolldown/pluginutils@1.0.0-beta.27': {} 15870 + 16027 15871 '@rollup/plugin-commonjs@28.0.1(rollup@3.29.5)': 16028 15872 dependencies: 16029 15873 '@rollup/pluginutils': 5.1.4(rollup@3.29.5) ··· 16044 15888 optionalDependencies: 16045 15889 rollup: 3.29.5 16046 15890 16047 - '@rollup/pluginutils@5.1.4(rollup@4.45.1)': 15891 + '@rollup/pluginutils@5.3.0(rollup@4.45.1)': 16048 15892 dependencies: 16049 15893 '@types/estree': 1.0.8 16050 15894 estree-walker: 2.0.2 16051 - picomatch: 4.0.2 15895 + picomatch: 4.0.3 16052 15896 optionalDependencies: 16053 15897 rollup: 4.45.1 16054 15898 16055 - '@rollup/rollup-android-arm-eabi@4.34.8': 16056 - optional: true 16057 - 16058 15899 '@rollup/rollup-android-arm-eabi@4.45.1': 16059 - optional: true 16060 - 16061 - '@rollup/rollup-android-arm64@4.34.8': 16062 15900 optional: true 16063 15901 16064 15902 '@rollup/rollup-android-arm64@4.45.1': 16065 15903 optional: true 16066 15904 16067 - '@rollup/rollup-darwin-arm64@4.34.8': 16068 - optional: true 16069 - 16070 15905 '@rollup/rollup-darwin-arm64@4.45.1': 16071 15906 optional: true 16072 15907 16073 - '@rollup/rollup-darwin-x64@4.34.8': 16074 - optional: true 16075 - 16076 15908 '@rollup/rollup-darwin-x64@4.45.1': 16077 15909 optional: true 16078 15910 16079 - '@rollup/rollup-freebsd-arm64@4.34.8': 16080 - optional: true 16081 - 16082 15911 '@rollup/rollup-freebsd-arm64@4.45.1': 16083 - optional: true 16084 - 16085 - '@rollup/rollup-freebsd-x64@4.34.8': 16086 15912 optional: true 16087 15913 16088 15914 '@rollup/rollup-freebsd-x64@4.45.1': 16089 15915 optional: true 16090 15916 16091 - '@rollup/rollup-linux-arm-gnueabihf@4.34.8': 16092 - optional: true 16093 - 16094 15917 '@rollup/rollup-linux-arm-gnueabihf@4.45.1': 16095 15918 optional: true 16096 15919 16097 - '@rollup/rollup-linux-arm-musleabihf@4.34.8': 16098 - optional: true 16099 - 16100 15920 '@rollup/rollup-linux-arm-musleabihf@4.45.1': 16101 15921 optional: true 16102 15922 16103 - '@rollup/rollup-linux-arm64-gnu@4.34.8': 16104 - optional: true 16105 - 16106 15923 '@rollup/rollup-linux-arm64-gnu@4.45.1': 16107 15924 optional: true 16108 15925 16109 - '@rollup/rollup-linux-arm64-musl@4.34.8': 16110 - optional: true 16111 - 16112 15926 '@rollup/rollup-linux-arm64-musl@4.45.1': 16113 15927 optional: true 16114 15928 16115 - '@rollup/rollup-linux-loongarch64-gnu@4.34.8': 16116 - optional: true 16117 - 16118 15929 '@rollup/rollup-linux-loongarch64-gnu@4.45.1': 16119 - optional: true 16120 - 16121 - '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': 16122 15930 optional: true 16123 15931 16124 15932 '@rollup/rollup-linux-powerpc64le-gnu@4.45.1': 16125 15933 optional: true 16126 15934 16127 - '@rollup/rollup-linux-riscv64-gnu@4.34.8': 16128 - optional: true 16129 - 16130 15935 '@rollup/rollup-linux-riscv64-gnu@4.45.1': 16131 15936 optional: true 16132 15937 16133 15938 '@rollup/rollup-linux-riscv64-musl@4.45.1': 16134 15939 optional: true 16135 15940 16136 - '@rollup/rollup-linux-s390x-gnu@4.34.8': 16137 - optional: true 16138 - 16139 15941 '@rollup/rollup-linux-s390x-gnu@4.45.1': 16140 15942 optional: true 16141 15943 16142 - '@rollup/rollup-linux-x64-gnu@4.34.8': 16143 - optional: true 16144 - 16145 15944 '@rollup/rollup-linux-x64-gnu@4.45.1': 16146 15945 optional: true 16147 15946 16148 - '@rollup/rollup-linux-x64-musl@4.34.8': 16149 - optional: true 16150 - 16151 15947 '@rollup/rollup-linux-x64-musl@4.45.1': 16152 - optional: true 16153 - 16154 - '@rollup/rollup-win32-arm64-msvc@4.34.8': 16155 15948 optional: true 16156 15949 16157 15950 '@rollup/rollup-win32-arm64-msvc@4.45.1': 16158 15951 optional: true 16159 15952 16160 - '@rollup/rollup-win32-ia32-msvc@4.34.8': 16161 - optional: true 16162 - 16163 15953 '@rollup/rollup-win32-ia32-msvc@4.45.1': 16164 15954 optional: true 16165 15955 16166 - '@rollup/rollup-win32-x64-msvc@4.34.8': 16167 - optional: true 16168 - 16169 15956 '@rollup/rollup-win32-x64-msvc@4.45.1': 16170 15957 optional: true 16171 15958 ··· 16284 16071 '@sentry/types': 8.9.2 16285 16072 '@sentry/utils': 8.9.2 16286 16073 16287 - '@sentry/nextjs@8.46.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.4.7(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)(webpack@5.97.1(esbuild@0.21.5))': 16074 + '@sentry/nextjs@8.46.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.4.7(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)(webpack@5.97.1)': 16288 16075 dependencies: 16289 16076 '@opentelemetry/api': 1.9.0 16290 16077 '@opentelemetry/semantic-conventions': 1.28.0 ··· 16295 16082 '@sentry/opentelemetry': 8.46.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0) 16296 16083 '@sentry/react': 8.46.0(react@19.1.1) 16297 16084 '@sentry/vercel-edge': 8.46.0 16298 - '@sentry/webpack-plugin': 2.22.7(encoding@0.1.13)(webpack@5.97.1(esbuild@0.21.5)) 16085 + '@sentry/webpack-plugin': 2.22.7(encoding@0.1.13)(webpack@5.97.1) 16299 16086 chalk: 3.0.0 16300 16087 next: 15.4.7(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1) 16301 16088 resolve: 1.22.8 ··· 16310 16097 - supports-color 16311 16098 - webpack 16312 16099 16313 - '@sentry/nextjs@8.46.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.4.7(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)(webpack@5.97.1)': 16100 + '@sentry/nextjs@8.46.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.4.7(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)(webpack@5.97.1(esbuild@0.21.5))': 16314 16101 dependencies: 16315 16102 '@opentelemetry/api': 1.9.0 16316 16103 '@opentelemetry/semantic-conventions': 1.28.0 ··· 16321 16108 '@sentry/opentelemetry': 8.46.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0) 16322 16109 '@sentry/react': 8.46.0(react@19.1.1) 16323 16110 '@sentry/vercel-edge': 8.46.0 16324 - '@sentry/webpack-plugin': 2.22.7(encoding@0.1.13)(webpack@5.97.1) 16111 + '@sentry/webpack-plugin': 2.22.7(encoding@0.1.13)(webpack@5.97.1(esbuild@0.21.5)) 16325 16112 chalk: 3.0.0 16326 16113 next: 15.4.7(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1) 16327 16114 resolve: 1.22.8 ··· 16423 16210 - encoding 16424 16211 - supports-color 16425 16212 16213 + '@shikijs/core@3.12.2': 16214 + dependencies: 16215 + '@shikijs/types': 3.12.2 16216 + '@shikijs/vscode-textmate': 10.0.2 16217 + '@types/hast': 3.0.4 16218 + hast-util-to-html: 9.0.5 16219 + 16426 16220 '@shikijs/core@3.6.0': 16427 16221 dependencies: 16428 16222 '@shikijs/types': 3.6.0 ··· 16430 16224 '@types/hast': 3.0.4 16431 16225 hast-util-to-html: 9.0.5 16432 16226 16227 + '@shikijs/engine-javascript@3.12.2': 16228 + dependencies: 16229 + '@shikijs/types': 3.12.2 16230 + '@shikijs/vscode-textmate': 10.0.2 16231 + oniguruma-to-es: 4.3.3 16232 + 16433 16233 '@shikijs/engine-javascript@3.6.0': 16434 16234 dependencies: 16435 16235 '@shikijs/types': 3.6.0 16436 16236 '@shikijs/vscode-textmate': 10.0.2 16437 16237 oniguruma-to-es: 4.3.3 16438 16238 16239 + '@shikijs/engine-oniguruma@3.12.2': 16240 + dependencies: 16241 + '@shikijs/types': 3.12.2 16242 + '@shikijs/vscode-textmate': 10.0.2 16243 + 16439 16244 '@shikijs/engine-oniguruma@3.6.0': 16440 16245 dependencies: 16441 16246 '@shikijs/types': 3.6.0 16442 16247 '@shikijs/vscode-textmate': 10.0.2 16443 16248 16249 + '@shikijs/langs@3.12.2': 16250 + dependencies: 16251 + '@shikijs/types': 3.12.2 16252 + 16444 16253 '@shikijs/langs@3.6.0': 16445 16254 dependencies: 16446 16255 '@shikijs/types': 3.6.0 16447 16256 16257 + '@shikijs/themes@3.12.2': 16258 + dependencies: 16259 + '@shikijs/types': 3.12.2 16260 + 16448 16261 '@shikijs/themes@3.6.0': 16449 16262 dependencies: 16450 16263 '@shikijs/types': 3.6.0 16264 + 16265 + '@shikijs/types@3.12.2': 16266 + dependencies: 16267 + '@shikijs/vscode-textmate': 10.0.2 16268 + '@types/hast': 3.0.4 16451 16269 16452 16270 '@shikijs/types@3.6.0': 16453 16271 dependencies: ··· 16967 16785 postcss-selector-parser: 6.0.10 16968 16786 tailwindcss: 4.1.8 16969 16787 16970 - '@tailwindcss/vite@4.1.8(vite@6.3.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1))': 16788 + '@tailwindcss/vite@4.1.8(vite@6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1))': 16971 16789 dependencies: 16972 16790 '@tailwindcss/node': 4.1.8 16973 16791 '@tailwindcss/oxide': 4.1.8 16974 16792 tailwindcss: 4.1.8 16975 - vite: 6.3.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1) 16793 + vite: 6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1) 16976 16794 16977 16795 '@tanstack/query-core@5.80.7': {} 16978 16796 ··· 17033 16851 '@tanstack/react-query': 5.80.7(react@19.1.1) 17034 16852 '@trpc/react-query': 11.4.4(@tanstack/react-query@5.80.7(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2) 17035 16853 17036 - '@trpc/next@11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/react-query@11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(next@15.4.7(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2)': 16854 + '@trpc/next@11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/react-query@11.4.4(@tanstack/react-query@5.81.5(react@19.1.1))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(next@15.4.7(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.7.2)': 17037 16855 dependencies: 17038 16856 '@trpc/client': 11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2) 17039 16857 '@trpc/server': 11.4.4(typescript@5.7.2) ··· 17132 16950 17133 16951 '@types/babel__core@7.20.5': 17134 16952 dependencies: 17135 - '@babel/parser': 7.26.3 17136 - '@babel/types': 7.26.3 16953 + '@babel/parser': 7.27.7 16954 + '@babel/types': 7.27.7 17137 16955 '@types/babel__generator': 7.6.8 17138 16956 '@types/babel__template': 7.4.4 17139 16957 '@types/babel__traverse': 7.20.6 17140 16958 17141 16959 '@types/babel__generator@7.6.8': 17142 16960 dependencies: 17143 - '@babel/types': 7.26.3 16961 + '@babel/types': 7.27.7 17144 16962 17145 16963 '@types/babel__template@7.4.4': 17146 16964 dependencies: 17147 16965 '@babel/parser': 7.27.7 17148 - '@babel/types': 7.26.3 16966 + '@babel/types': 7.27.7 17149 16967 17150 16968 '@types/babel__traverse@7.20.6': 17151 16969 dependencies: 17152 - '@babel/types': 7.26.3 16970 + '@babel/types': 7.27.7 17153 16971 17154 16972 '@types/braces@3.0.5': {} 17155 16973 17156 - '@types/bun@1.2.20(@types/react@19.1.10)': 16974 + '@types/bun@1.2.21(@types/react@19.1.10)': 17157 16975 dependencies: 17158 - bun-types: 1.2.20(@types/react@19.1.10) 16976 + bun-types: 1.2.21(@types/react@19.1.10) 17159 16977 transitivePeerDependencies: 17160 16978 - '@types/react' 17161 16979 ··· 17215 17033 '@types/estree': 1.0.8 17216 17034 '@types/json-schema': 7.0.15 17217 17035 17218 - '@types/estree-jsx@1.0.2': 17219 - dependencies: 17220 - '@types/estree': 1.0.8 17221 - 17222 17036 '@types/estree-jsx@1.0.5': 17223 17037 dependencies: 17224 17038 '@types/estree': 1.0.8 17225 - 17226 - '@types/estree@1.0.6': {} 17227 17039 17228 17040 '@types/estree@1.0.8': {} 17229 17041 ··· 17439 17251 is-buffer: 2.0.5 17440 17252 undici: 5.28.4 17441 17253 17442 - '@vitejs/plugin-react@4.3.4(vite@6.2.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1))': 17254 + '@vitejs/plugin-react@4.7.0(vite@6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1))': 17443 17255 dependencies: 17444 - '@babel/core': 7.26.0 17445 - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) 17446 - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) 17256 + '@babel/core': 7.28.4 17257 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.4) 17258 + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.4) 17259 + '@rolldown/pluginutils': 1.0.0-beta.27 17447 17260 '@types/babel__core': 7.20.5 17448 - react-refresh: 0.14.2 17449 - vite: 6.2.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1) 17261 + react-refresh: 0.17.0 17262 + vite: 6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1) 17450 17263 transitivePeerDependencies: 17451 17264 - supports-color 17452 17265 ··· 17502 17315 17503 17316 '@vue/compiler-core@3.5.13': 17504 17317 dependencies: 17505 - '@babel/parser': 7.27.7 17318 + '@babel/parser': 7.28.4 17506 17319 '@vue/shared': 3.5.13 17507 17320 entities: 4.5.0 17508 17321 estree-walker: 2.0.2 ··· 17517 17330 17518 17331 '@vue/compiler-sfc@3.5.13': 17519 17332 dependencies: 17520 - '@babel/parser': 7.27.7 17333 + '@babel/parser': 7.28.4 17521 17334 '@vue/compiler-core': 3.5.13 17522 17335 '@vue/compiler-dom': 3.5.13 17523 17336 '@vue/compiler-ssr': 3.5.13 17524 17337 '@vue/shared': 3.5.13 17525 17338 estree-walker: 2.0.2 17526 - magic-string: 0.30.17 17339 + magic-string: 0.30.19 17527 17340 postcss: 8.5.6 17528 17341 source-map-js: 1.2.1 17529 17342 optional: true ··· 17764 17577 17765 17578 astring@1.8.6: {} 17766 17579 17767 - astro-expressive-code@0.41.2(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)): 17580 + astro-expressive-code@0.41.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)): 17768 17581 dependencies: 17769 - astro: 5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 17582 + astro: 5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 17770 17583 rehype-expressive-code: 0.41.2 17771 17584 17772 - astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1): 17585 + astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1): 17773 17586 dependencies: 17774 17587 '@astrojs/compiler': 2.12.2 17775 - '@astrojs/internal-helpers': 0.6.1 17776 - '@astrojs/markdown-remark': 6.3.3 17588 + '@astrojs/internal-helpers': 0.7.2 17589 + '@astrojs/markdown-remark': 6.3.6 17777 17590 '@astrojs/telemetry': 3.3.0 17778 17591 '@capsizecss/unpack': 2.4.0(encoding@0.1.13) 17779 17592 '@oslojs/encoding': 1.1.0 17780 - '@rollup/pluginutils': 5.1.4(rollup@4.45.1) 17593 + '@rollup/pluginutils': 5.3.0(rollup@4.45.1) 17781 17594 acorn: 8.15.0 17782 17595 aria-query: 5.3.2 17783 17596 axobject-query: 4.1.0 17784 17597 boxen: 8.0.1 17785 - ci-info: 4.2.0 17598 + ci-info: 4.3.0 17786 17599 clsx: 2.1.1 17787 17600 common-ancestor-path: 1.0.1 17788 17601 cookie: 1.0.2 ··· 17800 17613 fontace: 0.3.0 17801 17614 github-slugger: 2.0.0 17802 17615 html-escaper: 3.0.3 17803 - http-cache-semantics: 4.1.1 17804 - import-meta-resolve: 4.1.0 17616 + http-cache-semantics: 4.2.0 17617 + import-meta-resolve: 4.2.0 17805 17618 js-yaml: 4.1.0 17806 17619 kleur: 4.1.5 17807 - magic-string: 0.30.17 17620 + magic-string: 0.30.19 17808 17621 magicast: 0.3.5 17809 17622 mrmime: 2.0.1 17810 17623 neotraverse: 0.6.18 17811 17624 p-limit: 6.2.0 17812 17625 p-queue: 8.1.0 17813 - package-manager-detector: 1.1.0 17814 - picomatch: 4.0.2 17626 + package-manager-detector: 1.3.0 17627 + picomatch: 4.0.3 17815 17628 prompts: 2.4.2 17816 17629 rehype: 13.0.2 17817 17630 semver: 7.7.2 17818 - shiki: 3.6.0 17819 - smol-toml: 1.4.1 17631 + shiki: 3.12.2 17632 + smol-toml: 1.4.2 17820 17633 tinyexec: 0.3.2 17821 17634 tinyglobby: 0.2.14 17822 - tsconfck: 3.1.5(typescript@5.7.2) 17635 + tsconfck: 3.1.6(typescript@5.7.2) 17823 17636 ultrahtml: 1.6.0 17824 17637 unifont: 0.5.2 17825 17638 unist-util-visit: 5.0.0 17826 - unstorage: 1.15.0 17639 + unstorage: 1.17.1 17827 17640 vfile: 6.0.3 17828 - vite: 6.3.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1) 17829 - vitefu: 1.0.6(vite@6.3.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1)) 17641 + vite: 6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1) 17642 + vitefu: 1.1.1(vite@6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1)) 17830 17643 xxhash-wasm: 1.1.0 17831 17644 yargs-parser: 21.1.1 17832 - yocto-spinner: 0.2.1 17833 - zod: 3.25.67 17834 - zod-to-json-schema: 3.24.5(zod@3.25.67) 17835 - zod-to-ts: 1.2.0(typescript@5.7.2)(zod@3.25.67) 17645 + yocto-spinner: 0.2.3 17646 + zod: 3.25.76 17647 + zod-to-json-schema: 3.24.6(zod@3.25.76) 17648 + zod-to-ts: 1.2.0(typescript@5.7.2)(zod@3.25.76) 17836 17649 optionalDependencies: 17837 - sharp: 0.33.5 17650 + sharp: 0.34.3 17838 17651 transitivePeerDependencies: 17839 17652 - '@azure/app-configuration' 17840 17653 - '@azure/cosmos' ··· 17849 17662 - '@types/node' 17850 17663 - '@upstash/redis' 17851 17664 - '@vercel/blob' 17665 + - '@vercel/functions' 17852 17666 - '@vercel/kv' 17853 17667 - aws4fetch 17854 17668 - db0 ··· 18023 17837 18024 17838 bun-types@1.0.8: {} 18025 17839 18026 - bun-types@1.2.20(@types/react@19.1.10): 17840 + bun-types@1.2.21(@types/react@19.1.10): 18027 17841 dependencies: 18028 17842 '@types/node': 24.0.8 18029 17843 '@types/react': 19.1.10 ··· 18148 17962 18149 17963 chrome-trace-event@1.0.4: {} 18150 17964 18151 - ci-info@4.2.0: {} 17965 + ci-info@4.3.0: {} 18152 17966 18153 17967 cjs-module-lexer@1.4.1: {} 18154 17968 ··· 18356 18170 shebang-command: 2.0.0 18357 18171 which: 2.0.2 18358 18172 18359 - crossws@0.3.4: 18173 + crossws@0.3.5: 18360 18174 dependencies: 18361 18175 uncrypto: 0.1.3 18362 18176 ··· 18506 18320 dequal@2.0.3: {} 18507 18321 18508 18322 destr@2.0.3: {} 18323 + 18324 + destr@2.0.5: {} 18509 18325 18510 18326 detect-libc@1.0.3: {} 18511 18327 ··· 18579 18395 transitivePeerDependencies: 18580 18396 - supports-color 18581 18397 18582 - drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.20(@types/react@19.1.10)): 18398 + drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.21(@types/react@19.1.10)): 18583 18399 optionalDependencies: 18584 18400 '@cloudflare/workers-types': 4.20250303.0 18585 18401 '@libsql/client': 0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5) ··· 18587 18403 '@opentelemetry/api': 1.9.0 18588 18404 '@types/pg': 8.11.10 18589 18405 better-sqlite3: 11.7.0 18590 - bun-types: 1.2.20(@types/react@19.1.10) 18406 + bun-types: 1.2.21(@types/react@19.1.10) 18591 18407 18592 - drizzle-zod@0.5.1(drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.20(@types/react@19.1.10)))(zod@3.24.1): 18408 + drizzle-zod@0.5.1(drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.21(@types/react@19.1.10)))(zod@3.24.1): 18593 18409 dependencies: 18594 - drizzle-orm: 0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.20(@types/react@19.1.10)) 18410 + drizzle-orm: 0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.21(@types/react@19.1.10)) 18595 18411 zod: 3.24.1 18596 18412 18597 18413 dset@3.1.4: {} ··· 18705 18521 18706 18522 esast-util-from-estree@2.0.0: 18707 18523 dependencies: 18708 - '@types/estree-jsx': 1.0.2 18524 + '@types/estree-jsx': 1.0.5 18709 18525 devlop: 1.1.0 18710 18526 estree-util-visit: 2.0.0 18711 18527 unist-util-position-from-estree: 2.0.0 18712 18528 18713 18529 esast-util-from-js@2.0.1: 18714 18530 dependencies: 18715 - '@types/estree-jsx': 1.0.2 18531 + '@types/estree-jsx': 1.0.5 18716 18532 acorn: 8.15.0 18717 18533 esast-util-from-estree: 2.0.0 18718 18534 vfile-message: 4.0.2 ··· 18775 18591 '@esbuild/win32-ia32': 0.21.5 18776 18592 '@esbuild/win32-x64': 0.21.5 18777 18593 18778 - esbuild@0.25.2: 18779 - optionalDependencies: 18780 - '@esbuild/aix-ppc64': 0.25.2 18781 - '@esbuild/android-arm': 0.25.2 18782 - '@esbuild/android-arm64': 0.25.2 18783 - '@esbuild/android-x64': 0.25.2 18784 - '@esbuild/darwin-arm64': 0.25.2 18785 - '@esbuild/darwin-x64': 0.25.2 18786 - '@esbuild/freebsd-arm64': 0.25.2 18787 - '@esbuild/freebsd-x64': 0.25.2 18788 - '@esbuild/linux-arm': 0.25.2 18789 - '@esbuild/linux-arm64': 0.25.2 18790 - '@esbuild/linux-ia32': 0.25.2 18791 - '@esbuild/linux-loong64': 0.25.2 18792 - '@esbuild/linux-mips64el': 0.25.2 18793 - '@esbuild/linux-ppc64': 0.25.2 18794 - '@esbuild/linux-riscv64': 0.25.2 18795 - '@esbuild/linux-s390x': 0.25.2 18796 - '@esbuild/linux-x64': 0.25.2 18797 - '@esbuild/netbsd-arm64': 0.25.2 18798 - '@esbuild/netbsd-x64': 0.25.2 18799 - '@esbuild/openbsd-arm64': 0.25.2 18800 - '@esbuild/openbsd-x64': 0.25.2 18801 - '@esbuild/sunos-x64': 0.25.2 18802 - '@esbuild/win32-arm64': 0.25.2 18803 - '@esbuild/win32-ia32': 0.25.2 18804 - '@esbuild/win32-x64': 0.25.2 18805 - 18806 18594 esbuild@0.25.5: 18807 18595 optionalDependencies: 18808 18596 '@esbuild/aix-ppc64': 0.25.5 ··· 18872 18660 18873 18661 estree-util-build-jsx@3.0.1: 18874 18662 dependencies: 18875 - '@types/estree-jsx': 1.0.2 18663 + '@types/estree-jsx': 1.0.5 18876 18664 devlop: 1.1.0 18877 18665 estree-util-is-identifier-name: 3.0.0 18878 18666 estree-walker: 3.0.3 ··· 18886 18674 18887 18675 estree-util-to-js@2.0.0: 18888 18676 dependencies: 18889 - '@types/estree-jsx': 1.0.2 18677 + '@types/estree-jsx': 1.0.5 18890 18678 astring: 1.8.6 18891 18679 source-map: 0.7.4 18892 18680 ··· 18896 18684 18897 18685 estree-util-visit@2.0.0: 18898 18686 dependencies: 18899 - '@types/estree-jsx': 1.0.2 18687 + '@types/estree-jsx': 1.0.5 18900 18688 '@types/unist': 3.0.3 18901 18689 18902 18690 estree-walker@2.0.2: {} ··· 19050 18838 fdir@6.4.6(picomatch@4.0.2): 19051 18839 optionalDependencies: 19052 18840 picomatch: 4.0.2 18841 + 18842 + fdir@6.4.6(picomatch@4.0.3): 18843 + optionalDependencies: 18844 + picomatch: 4.0.3 19053 18845 19054 18846 feed@4.2.2: 19055 18847 dependencies: ··· 19377 19169 - encoding 19378 19170 - supports-color 19379 19171 19380 - h3@1.15.0: 19172 + h3@1.15.4: 19381 19173 dependencies: 19382 19174 cookie-es: 1.2.2 19383 - crossws: 0.3.4 19175 + crossws: 0.3.5 19384 19176 defu: 6.1.4 19385 - destr: 2.0.3 19177 + destr: 2.0.5 19386 19178 iron-webcrypto: 1.2.1 19387 - node-mock-http: 1.0.0 19388 - ohash: 1.1.4 19179 + node-mock-http: 1.0.3 19389 19180 radix3: 1.1.2 19390 - ufo: 1.5.4 19181 + ufo: 1.6.1 19391 19182 uncrypto: 0.1.3 19392 19183 19393 19184 handlebars@4.7.8: ··· 19522 19313 hast-util-to-estree@3.1.0: 19523 19314 dependencies: 19524 19315 '@types/estree': 1.0.8 19525 - '@types/estree-jsx': 1.0.2 19316 + '@types/estree-jsx': 1.0.5 19526 19317 '@types/hast': 3.0.4 19527 19318 comma-separated-tokens: 2.0.3 19528 19319 devlop: 1.1.0 ··· 19674 19465 domutils: 3.2.2 19675 19466 entities: 4.5.0 19676 19467 19677 - http-cache-semantics@4.1.1: {} 19468 + http-cache-semantics@4.2.0: {} 19678 19469 19679 19470 http-errors@2.0.0: 19680 19471 dependencies: ··· 19756 19547 19757 19548 import-meta-resolve@4.1.0: {} 19758 19549 19550 + import-meta-resolve@4.2.0: {} 19551 + 19759 19552 indent-string@4.0.0: {} 19760 19553 19761 19554 inflight@1.0.6: ··· 20231 20024 dependencies: 20232 20025 '@jridgewell/sourcemap-codec': 1.5.0 20233 20026 20027 + magic-string@0.30.19: 20028 + dependencies: 20029 + '@jridgewell/sourcemap-codec': 1.5.5 20030 + 20234 20031 magic-string@0.30.8: 20235 20032 dependencies: 20236 20033 '@jridgewell/sourcemap-codec': 1.5.3 ··· 20348 20145 '@types/mdast': 4.0.4 20349 20146 devlop: 1.1.0 20350 20147 mdast-util-from-markdown: 2.0.2 20351 - mdast-util-to-markdown: 2.1.0 20148 + mdast-util-to-markdown: 2.1.2 20352 20149 micromark-util-normalize-identifier: 2.0.1 20353 20150 transitivePeerDependencies: 20354 20151 - supports-color ··· 20357 20154 dependencies: 20358 20155 '@types/mdast': 4.0.4 20359 20156 mdast-util-from-markdown: 2.0.2 20360 - mdast-util-to-markdown: 2.1.0 20157 + mdast-util-to-markdown: 2.1.2 20361 20158 transitivePeerDependencies: 20362 20159 - supports-color 20363 20160 ··· 20367 20164 devlop: 1.1.0 20368 20165 markdown-table: 3.0.3 20369 20166 mdast-util-from-markdown: 2.0.2 20370 - mdast-util-to-markdown: 2.1.0 20167 + mdast-util-to-markdown: 2.1.2 20371 20168 transitivePeerDependencies: 20372 20169 - supports-color 20373 20170 ··· 20376 20173 '@types/mdast': 4.0.4 20377 20174 devlop: 1.1.0 20378 20175 mdast-util-from-markdown: 2.0.2 20379 - mdast-util-to-markdown: 2.1.0 20176 + mdast-util-to-markdown: 2.1.2 20380 20177 transitivePeerDependencies: 20381 20178 - supports-color 20382 20179 ··· 20426 20223 mdast-util-mdx-expression: 2.0.1 20427 20224 mdast-util-mdx-jsx: 3.2.0 20428 20225 mdast-util-mdxjs-esm: 2.0.1 20429 - mdast-util-to-markdown: 2.1.0 20226 + mdast-util-to-markdown: 2.1.2 20430 20227 transitivePeerDependencies: 20431 20228 - supports-color 20432 20229 ··· 20556 20353 micromark-factory-whitespace: 2.0.0 20557 20354 micromark-util-character: 2.1.0 20558 20355 micromark-util-chunked: 2.0.0 20559 - micromark-util-classify-character: 2.0.0 20356 + micromark-util-classify-character: 2.0.1 20560 20357 micromark-util-html-tag-name: 2.0.0 20561 20358 micromark-util-normalize-identifier: 2.0.1 20562 20359 micromark-util-resolve-all: 2.0.0 ··· 20718 20515 20719 20516 micromark-factory-destination@2.0.0: 20720 20517 dependencies: 20721 - micromark-util-character: 2.1.0 20518 + micromark-util-character: 2.1.1 20722 20519 micromark-util-symbol: 2.0.1 20723 20520 micromark-util-types: 2.0.2 20724 20521 ··· 20738 20535 micromark-factory-label@2.0.0: 20739 20536 dependencies: 20740 20537 devlop: 1.1.0 20741 - micromark-util-character: 2.1.0 20538 + micromark-util-character: 2.1.1 20742 20539 micromark-util-symbol: 2.0.1 20743 20540 micromark-util-types: 2.0.2 20744 20541 ··· 20785 20582 20786 20583 micromark-factory-title@2.0.0: 20787 20584 dependencies: 20788 - micromark-factory-space: 2.0.0 20789 - micromark-util-character: 2.1.0 20585 + micromark-factory-space: 2.0.1 20586 + micromark-util-character: 2.1.1 20790 20587 micromark-util-symbol: 2.0.1 20791 20588 micromark-util-types: 2.0.2 20792 20589 ··· 20806 20603 20807 20604 micromark-factory-whitespace@2.0.0: 20808 20605 dependencies: 20809 - micromark-factory-space: 2.0.0 20810 - micromark-util-character: 2.1.0 20606 + micromark-factory-space: 2.0.1 20607 + micromark-util-character: 2.1.1 20811 20608 micromark-util-symbol: 2.0.1 20812 20609 micromark-util-types: 2.0.2 20813 20610 ··· 21263 21060 node-domexception@1.0.0: {} 21264 21061 21265 21062 node-fetch-native@1.6.6: {} 21063 + 21064 + node-fetch-native@1.6.7: {} 21266 21065 21267 21066 node-fetch@2.7.0(encoding@0.1.13): 21268 21067 dependencies: ··· 21279 21078 node-gyp-build@4.8.4: 21280 21079 optional: true 21281 21080 21282 - node-mock-http@1.0.0: {} 21081 + node-mock-http@1.0.3: {} 21283 21082 21284 21083 node-plop@0.26.3: 21285 21084 dependencies: ··· 21348 21147 destr: 2.0.3 21349 21148 node-fetch-native: 1.6.6 21350 21149 ufo: 1.5.4 21351 - 21352 - ohash@1.1.4: {} 21353 21150 21354 21151 ohash@2.0.11: {} 21355 21152 ··· 21490 21287 21491 21288 package-manager-detector@0.2.9: {} 21492 21289 21493 - package-manager-detector@1.1.0: {} 21290 + package-manager-detector@1.3.0: {} 21494 21291 21495 21292 pagefind@1.3.0: 21496 21293 optionalDependencies: ··· 21629 21426 picomatch@2.3.1: {} 21630 21427 21631 21428 picomatch@4.0.2: {} 21429 + 21430 + picomatch@4.0.3: {} 21632 21431 21633 21432 pirates@4.0.6: {} 21634 21433 ··· 21921 21720 dependencies: 21922 21721 fast-deep-equal: 2.0.1 21923 21722 21924 - react-refresh@0.14.2: {} 21723 + react-refresh@0.17.0: {} 21925 21724 21926 21725 react-remove-scroll-bar@2.3.8(@types/react@19.1.10)(react@19.1.1): 21927 21726 dependencies: ··· 22120 21919 hast-util-whitespace: 3.0.0 22121 21920 unist-util-is: 6.0.0 22122 21921 22123 - rehype-parse@9.0.0: 22124 - dependencies: 22125 - '@types/hast': 3.0.4 22126 - hast-util-from-html: 2.0.3 22127 - unified: 11.0.5 22128 - 22129 21922 rehype-parse@9.0.1: 22130 21923 dependencies: 22131 21924 '@types/hast': 3.0.4 ··· 22197 21990 rehype@13.0.2: 22198 21991 dependencies: 22199 21992 '@types/hast': 3.0.4 22200 - rehype-parse: 9.0.0 21993 + rehype-parse: 9.0.1 22201 21994 rehype-stringify: 10.0.1 22202 21995 unified: 11.0.5 22203 21996 ··· 22411 22204 optionalDependencies: 22412 22205 fsevents: 2.3.3 22413 22206 22414 - rollup@4.34.8: 22415 - dependencies: 22416 - '@types/estree': 1.0.6 22417 - optionalDependencies: 22418 - '@rollup/rollup-android-arm-eabi': 4.34.8 22419 - '@rollup/rollup-android-arm64': 4.34.8 22420 - '@rollup/rollup-darwin-arm64': 4.34.8 22421 - '@rollup/rollup-darwin-x64': 4.34.8 22422 - '@rollup/rollup-freebsd-arm64': 4.34.8 22423 - '@rollup/rollup-freebsd-x64': 4.34.8 22424 - '@rollup/rollup-linux-arm-gnueabihf': 4.34.8 22425 - '@rollup/rollup-linux-arm-musleabihf': 4.34.8 22426 - '@rollup/rollup-linux-arm64-gnu': 4.34.8 22427 - '@rollup/rollup-linux-arm64-musl': 4.34.8 22428 - '@rollup/rollup-linux-loongarch64-gnu': 4.34.8 22429 - '@rollup/rollup-linux-powerpc64le-gnu': 4.34.8 22430 - '@rollup/rollup-linux-riscv64-gnu': 4.34.8 22431 - '@rollup/rollup-linux-s390x-gnu': 4.34.8 22432 - '@rollup/rollup-linux-x64-gnu': 4.34.8 22433 - '@rollup/rollup-linux-x64-musl': 4.34.8 22434 - '@rollup/rollup-win32-arm64-msvc': 4.34.8 22435 - '@rollup/rollup-win32-ia32-msvc': 4.34.8 22436 - '@rollup/rollup-win32-x64-msvc': 4.34.8 22437 - fsevents: 2.3.3 22438 - 22439 22207 rollup@4.45.1: 22440 22208 dependencies: 22441 22209 '@types/estree': 1.0.8 ··· 22671 22439 vscode-oniguruma: 1.7.0 22672 22440 vscode-textmate: 8.0.0 22673 22441 22442 + shiki@3.12.2: 22443 + dependencies: 22444 + '@shikijs/core': 3.12.2 22445 + '@shikijs/engine-javascript': 3.12.2 22446 + '@shikijs/engine-oniguruma': 3.12.2 22447 + '@shikijs/langs': 3.12.2 22448 + '@shikijs/themes': 3.12.2 22449 + '@shikijs/types': 3.12.2 22450 + '@shikijs/vscode-textmate': 10.0.2 22451 + '@types/hast': 3.0.4 22452 + 22674 22453 shiki@3.6.0: 22675 22454 dependencies: 22676 22455 '@shikijs/core': 3.6.0 ··· 22745 22524 22746 22525 smol-toml@1.1.4: {} 22747 22526 22748 - smol-toml@1.3.1: {} 22749 - 22750 22527 smol-toml@1.4.1: {} 22528 + 22529 + smol-toml@1.4.2: {} 22751 22530 22752 22531 snake-case@2.1.0: 22753 22532 dependencies: ··· 22837 22616 dependencies: 22838 22617 type-fest: 0.7.1 22839 22618 22840 - starlight-llms-txt@0.5.1(@astrojs/starlight@0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)))(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)): 22619 + starlight-image-zoom@0.13.0(@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))): 22841 22620 dependencies: 22842 - '@astrojs/mdx': 4.3.0(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22843 - '@astrojs/starlight': 0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22621 + '@astrojs/starlight': 0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22622 + mdast-util-mdx-jsx: 3.2.0 22623 + rehype-raw: 7.0.0 22624 + unist-util-visit: 5.0.0 22625 + unist-util-visit-parents: 6.0.1 22626 + transitivePeerDependencies: 22627 + - supports-color 22628 + 22629 + starlight-llms-txt@0.5.1(@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)))(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)): 22630 + dependencies: 22631 + '@astrojs/mdx': 4.3.0(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22632 + '@astrojs/starlight': 0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22844 22633 '@types/hast': 3.0.4 22845 22634 '@types/micromatch': 4.0.9 22846 - astro: 5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 22635 + astro: 5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1) 22847 22636 github-slugger: 2.0.0 22848 22637 hast-util-select: 6.0.3 22849 22638 micromatch: 4.0.8 ··· 22856 22645 transitivePeerDependencies: 22857 22646 - supports-color 22858 22647 22859 - starlight-showcases@0.3.0(@astrojs/starlight@0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)))(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)): 22648 + starlight-showcases@0.3.0(@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)))(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)): 22860 22649 dependencies: 22861 - '@astro-community/astro-embed-twitter': 0.5.8(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22862 - '@astro-community/astro-embed-youtube': 0.5.6(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22863 - '@astrojs/starlight': 0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22650 + '@astro-community/astro-embed-twitter': 0.5.8(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22651 + '@astro-community/astro-embed-youtube': 0.5.6(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22652 + '@astrojs/starlight': 0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22864 22653 transitivePeerDependencies: 22865 22654 - astro 22866 22655 22867 - starlight-sidebar-topics@0.6.0(@astrojs/starlight@0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))): 22656 + starlight-sidebar-topics@0.6.0(@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))): 22868 22657 dependencies: 22869 - '@astrojs/starlight': 0.35.1(astro@5.12.2(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22658 + '@astrojs/starlight': 0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 22870 22659 picomatch: 4.0.2 22871 22660 22872 22661 statuses@2.0.1: {} ··· 23126 22915 23127 22916 tinyglobby@0.2.14: 23128 22917 dependencies: 23129 - fdir: 6.4.6(picomatch@4.0.2) 23130 - picomatch: 4.0.2 22918 + fdir: 6.4.6(picomatch@4.0.3) 22919 + picomatch: 4.0.3 23131 22920 23132 22921 tinygradient@1.1.5: 23133 22922 dependencies: ··· 23234 23023 yn: 3.1.1 23235 23024 optional: true 23236 23025 23237 - tsconfck@3.1.5(typescript@5.7.2): 23026 + tsconfck@3.1.6(typescript@5.7.2): 23238 23027 optionalDependencies: 23239 23028 typescript: 5.7.2 23240 23029 ··· 23357 23146 23358 23147 ufo@1.5.4: {} 23359 23148 23149 + ufo@1.6.1: {} 23150 + 23360 23151 uglify-js@3.17.4: 23361 23152 optional: true 23362 23153 23363 23154 uhyphen@0.2.0: {} 23364 23155 23365 - ultrahtml@1.5.3: {} 23366 - 23367 23156 ultrahtml@1.6.0: {} 23368 23157 23369 23158 uncrypto@0.1.3: {} ··· 23465 23254 23466 23255 unist-util-stringify-position@3.0.3: 23467 23256 dependencies: 23468 - '@types/unist': 2.0.9 23257 + '@types/unist': 2.0.11 23469 23258 23470 23259 unist-util-stringify-position@4.0.0: 23471 23260 dependencies: ··· 23537 23326 acorn: 8.14.0 23538 23327 webpack-virtual-modules: 0.6.2 23539 23328 23540 - unstorage@1.15.0: 23329 + unstorage@1.17.1: 23541 23330 dependencies: 23542 23331 anymatch: 3.1.3 23543 23332 chokidar: 4.0.3 23544 - destr: 2.0.3 23545 - h3: 1.15.0 23333 + destr: 2.0.5 23334 + h3: 1.15.4 23546 23335 lru-cache: 10.4.3 23547 - node-fetch-native: 1.6.6 23336 + node-fetch-native: 1.6.7 23548 23337 ofetch: 1.4.1 23549 - ufo: 1.5.4 23338 + ufo: 1.6.1 23550 23339 23551 23340 update-browserslist-db@1.1.3(browserslist@4.25.1): 23552 23341 dependencies: ··· 23638 23427 23639 23428 vfile-message@3.1.4: 23640 23429 dependencies: 23641 - '@types/unist': 2.0.9 23430 + '@types/unist': 2.0.11 23642 23431 unist-util-stringify-position: 3.0.3 23643 23432 23644 23433 vfile-message@4.0.2: ··· 23675 23464 d3-time: 3.1.0 23676 23465 d3-timer: 3.0.1 23677 23466 23678 - vite@6.2.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1): 23679 - dependencies: 23680 - esbuild: 0.25.2 23681 - postcss: 8.5.6 23682 - rollup: 4.34.8 23683 - optionalDependencies: 23684 - '@types/node': 24.0.8 23685 - fsevents: 2.3.3 23686 - jiti: 2.4.2 23687 - lightningcss: 1.30.1 23688 - terser: 5.43.1 23689 - yaml: 2.6.1 23690 - 23691 - vite@6.3.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1): 23467 + vite@6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1): 23692 23468 dependencies: 23693 23469 esbuild: 0.25.5 23694 23470 fdir: 6.4.6(picomatch@4.0.2) ··· 23704 23480 terser: 5.43.1 23705 23481 yaml: 2.6.1 23706 23482 23707 - vitefu@1.0.6(vite@6.3.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1)): 23483 + vitefu@1.1.1(vite@6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1)): 23708 23484 optionalDependencies: 23709 - vite: 6.3.5(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1) 23485 + vite: 6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1) 23710 23486 23711 23487 vlq@0.2.3: {} 23712 23488 ··· 24025 23801 24026 23802 yocto-queue@1.1.1: {} 24027 23803 24028 - yocto-spinner@0.2.1: 23804 + yocto-spinner@0.2.3: 24029 23805 dependencies: 24030 23806 yoctocolors: 2.1.1 24031 23807 ··· 24039 23815 dependencies: 24040 23816 zod: 3.24.1 24041 23817 24042 - zod-to-json-schema@3.24.5(zod@3.25.67): 23818 + zod-to-json-schema@3.24.6(zod@3.25.76): 24043 23819 dependencies: 24044 - zod: 3.25.67 23820 + zod: 3.25.76 24045 23821 24046 - zod-to-ts@1.2.0(typescript@5.7.2)(zod@3.25.67): 23822 + zod-to-ts@1.2.0(typescript@5.7.2)(zod@3.25.76): 24047 23823 dependencies: 24048 23824 typescript: 5.7.2 24049 - zod: 3.25.67 23825 + zod: 3.25.76 24050 23826 24051 23827 zod-validation-error@3.3.0(zod@3.24.1): 24052 23828 dependencies: ··· 24055 23831 zod@3.24.1: {} 24056 23832 24057 23833 zod@3.25.67: {} 23834 + 23835 + zod@3.25.76: {} 24058 23836 24059 23837 zwitch@2.0.4: {}