diff --git a/apps/docs/astro.config.mjs b/apps/docs/astro.config.mjs index 0905cccdb9..3b64f7f1db 100644 --- a/apps/docs/astro.config.mjs +++ b/apps/docs/astro.config.mjs @@ -57,23 +57,23 @@ export default defineConfig({ items: [ { label: "Overview", slug: "monitoring/overview" }, { - label: "Create you first monitor", + label: "Create a synthetic check", slug: "monitoring/create-monitor", }, { - label: "View your monitor data", + label: "View your results data", slug: "monitoring/monitor-data-collected", }, { - label: "Group your monitors", + label: "Group your checks", slug: "monitoring/group-monitor-tag", }, { - label: "Clone a monitor", + label: "Clone a check", slug: "monitoring/clone-monitor", }, { - label: "Monitor Types", + label: "Check Types", collapsed: true, items: [ { @@ -103,8 +103,8 @@ export default defineConfig({ slug: "monitoring/customization/notification", }, { - label: "Regions", - slug: "monitoring/customization/regions", + label: "Locations", + slug: "monitoring/customization/locations", }, { label: "Timing", diff --git a/apps/docs/package.json b/apps/docs/package.json index d0f5958560..e7772995da 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -14,7 +14,7 @@ "@astrojs/sitemap": "3.2.1", "@astrojs/starlight": "0.29.2", "@astrojs/starlight-tailwind": "2.0.3", - "@astrojs/tailwind": "5.1.2", + "@astrojs/tailwind": "5.1.3", "astro": "4.16.14", "sharp": "0.33.5", "starlight-showcases": "0.2.0", @@ -22,7 +22,7 @@ "unplugin-icons": "0.20.1" }, "devDependencies": { - "@iconify-json/lucide": "1.2.15", - "typescript": "5.6.3" + "@iconify-json/lucide": "1.2.17", + "typescript": "5.7.2" } } diff --git a/apps/docs/src/assets/monitor/create-monitor.png b/apps/docs/src/assets/monitor/create-monitor.png new file mode 100644 index 0000000000..dcd013fe76 Binary files /dev/null and b/apps/docs/src/assets/monitor/create-monitor.png differ diff --git a/apps/docs/src/assets/monitor/overview.png b/apps/docs/src/assets/monitor/overview.png new file mode 100644 index 0000000000..eccb4cfab2 Binary files /dev/null and b/apps/docs/src/assets/monitor/overview.png differ diff --git a/apps/docs/src/content/config.ts b/apps/docs/src/content/config.ts index 51ac73deb6..ab69845960 100644 --- a/apps/docs/src/content/config.ts +++ b/apps/docs/src/content/config.ts @@ -1,7 +1,11 @@ import { defineCollection } from "astro:content"; import { docsSchema } from "@astrojs/starlight/schema"; +// import { glob } from "astro/loaders"; import { topicSchema } from "starlight-sidebar-topics/schema"; export const collections = { - docs: defineCollection({ schema: docsSchema({ extend: topicSchema }) }), + docs: defineCollection({ + // loader: glob({ pattern: "**/*.mdx", base: "./src/content/docs" }), + schema: docsSchema({ extend: topicSchema }), + }), }; diff --git a/apps/docs/src/content/docs/getting-started/introduction.mdx b/apps/docs/src/content/docs/getting-started/introduction.mdx index 3a977d350a..aebac8792e 100644 --- a/apps/docs/src/content/docs/getting-started/introduction.mdx +++ b/apps/docs/src/content/docs/getting-started/introduction.mdx @@ -22,9 +22,18 @@ You can [sign up](https://www.openstatus.dev/app/login?ref=docs) for a free acco All our code is open-source and you can host it on your own infrastructure. -### Lightweight Self hosted +### Commmunity version -If you want to self-host OpenStatus, you can use our lightweight version of OpenStatus called [Vercel Edge Checker](https://github.com/openstatusHQ/vercel-edge-ping). \ No newline at end of file +We are working on a multiple community version of OpenStatus that will be easier to self-host. + +#### Vercel Edge Checker + +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. + + + diff --git a/apps/docs/src/content/docs/guides/introduction.mdx b/apps/docs/src/content/docs/guides/introduction.mdx index dcbe363e3d..440499222e 100644 --- a/apps/docs/src/content/docs/guides/introduction.mdx +++ b/apps/docs/src/content/docs/guides/introduction.mdx @@ -1,5 +1,6 @@ --- title: Introduction +description: Guides to get started with OpenStatus sidebar: label: Introduction order: 1 diff --git a/apps/docs/src/content/docs/index.mdx b/apps/docs/src/content/docs/index.mdx index 26374d1b83..e95a13c1f8 100644 --- a/apps/docs/src/content/docs/index.mdx +++ b/apps/docs/src/content/docs/index.mdx @@ -14,7 +14,7 @@ import "../../custom.css" ### What is OpenStatus? -[OpenStatus](https://www.openstatus.dev) is an open-source synthetic monitoring tool that helps you monitor the availability and performance of your website, API, servers from various locations around the world. +[OpenStatus](https://www.openstatus.dev) is an open-source synthetic monitoring tool that helps you monitor the availability and performance of your website, API, servers, or anything that can be monitored from various locations around the world. We also provide beautiful [status pages](/status-page/overview) to keep your users informed about the status of your services. diff --git a/apps/docs/src/content/docs/monitoring/create-monitor.mdx b/apps/docs/src/content/docs/monitoring/create-monitor.mdx index b2af51e748..07d22acca5 100644 --- a/apps/docs/src/content/docs/monitoring/create-monitor.mdx +++ b/apps/docs/src/content/docs/monitoring/create-monitor.mdx @@ -1,13 +1,28 @@ --- -title: How to create a monitor? +title: How to create a synthetic check? description: "How to create your first monitor with OpenStatus" --- import { Image } from 'astro:assets'; import { Aside, CardGrid, LinkCard } from '@astrojs/starlight/components'; import monitorDetail from '../../../assets/monitor/monitor-detail.png'; +import createMonitor from '../../../assets/monitor/create-monitor.png'; + import { ShowcaseYouTube } from 'starlight-showcases' + Charts with status code and response time + +First you need to create a monitor to start monitoring your services. + +## What is a monitor? + +A monitor is a job that runs periodically or on-demand and checks the status of a service. A monitor will do some synthetic checks to ensure that your service is working as expected. + + +## Create your first monitor Go to the **Monitors** page and click on the **Create Monitor** button. diff --git a/apps/docs/src/content/docs/monitoring/customization/regions.mdx b/apps/docs/src/content/docs/monitoring/customization/locations.mdx similarity index 73% rename from apps/docs/src/content/docs/monitoring/customization/regions.mdx rename to apps/docs/src/content/docs/monitoring/customization/locations.mdx index 33e2bee336..2a186659e1 100644 --- a/apps/docs/src/content/docs/monitoring/customization/regions.mdx +++ b/apps/docs/src/content/docs/monitoring/customization/locations.mdx @@ -1,10 +1,16 @@ --- -title: Regions -description: "How to change the regions for your synthetic checks in OpenStatus" +title: Locations +description: "How to change the locations for your synthetic checks in OpenStatus" --- + +We have multiple locations around the world to monitor your services. You can choose from public locations or use private locations that you own and manage. + +## Public Locations + For free users, OpenStatus will monitor your service from six location, one on every continent. For paid users, you can choose from multiple locations around the world to monitor your service. + To change regions for your monitors: _Select a monitor → Settings → Scheduling & Regions_. Africa @@ -58,3 +64,8 @@ South America Oceania - Sydney, Australia 🇦🇺 (free) + + +## Private Locations + +You can also use private locations to monitor your services. Private locations are servers that you own and manage. If you want to use private locations, please [contact us](mailto:ping@openstatus.dev) for more information. \ No newline at end of file diff --git a/apps/docs/src/content/docs/monitoring/overview.mdx b/apps/docs/src/content/docs/monitoring/overview.mdx index 360d5a0e38..a838f89e79 100644 --- a/apps/docs/src/content/docs/monitoring/overview.mdx +++ b/apps/docs/src/content/docs/monitoring/overview.mdx @@ -1,9 +1,16 @@ --- title: Overview -description: "How to create your first monitor with OpenStatus.dev" +description: "Learn more about synthetic monitoring and how to use it with OpenStatus" --- import { CardGrid, LinkCard } from '@astrojs/starlight/components'; +import { Image } from 'astro:assets'; +import overview from '../../../assets/monitor/overview.png'; + +Charts with status code and response time With synthetic monitoring, you can simulated requests to monitor the availability and performance of your website, API, or server from various locations around the world. @@ -16,6 +23,10 @@ We will alert you if your website or API is down, is timing out or does not retu 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). +### What is synthetic monitoring? + +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. + ### What is a monitor? A monitor is a job that runs periodically or on-demand and checks the status of a service. It diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 62a2a019c0..444e527bcc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -31,41 +31,41 @@ importers: dependencies: '@astrojs/check': specifier: 0.9.4 - version: 0.9.4(prettier@3.3.2)(typescript@5.6.3) + version: 0.9.4(prettier@3.3.2)(typescript@5.7.2) '@astrojs/sitemap': specifier: 3.2.1 version: 3.2.1 '@astrojs/starlight': specifier: 0.29.2 - version: 0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)) + version: 0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)) '@astrojs/starlight-tailwind': specifier: 2.0.3 - version: 2.0.3(@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)))(@astrojs/tailwind@5.1.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)))(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3))) + version: 2.0.3(@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)))(@astrojs/tailwind@5.1.3(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2))) '@astrojs/tailwind': - specifier: 5.1.2 - version: 5.1.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)))(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)) + specifier: 5.1.3 + version: 5.1.3(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)) astro: specifier: 4.16.14 - version: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3) + version: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2) sharp: specifier: 0.33.5 version: 0.33.5 starlight-showcases: specifier: 0.2.0 - version: 0.2.0(@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)))(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)) + version: 0.2.0(@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)))(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)) starlight-sidebar-topics: specifier: 0.2.1 - version: 0.2.1(@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3))) + version: 0.2.1(@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2))) unplugin-icons: specifier: 0.20.1 version: 0.20.1(@vue/compiler-sfc@3.4.31) devDependencies: '@iconify-json/lucide': - specifier: 1.2.15 - version: 1.2.15 + specifier: 1.2.17 + version: 1.2.17 typescript: - specifier: 5.6.3 - version: 5.6.3 + specifier: 5.7.2 + version: 5.7.2 apps/screenshot-service: dependencies: @@ -92,7 +92,7 @@ importers: version: 2.6.2 drizzle-orm: specifier: 0.35.3 - version: 0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.4))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.34)(react@18.3.1) + version: 0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.4))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.37)(react@18.3.1) hono: specifier: 4.5.3 version: 4.5.3 @@ -162,10 +162,10 @@ importers: version: link:../../packages/utils '@scalar/hono-api-reference': specifier: 0.5.131 - version: 0.5.131(postcss@8.4.49)(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3)))(typescript@5.6.3) + version: 0.5.131(postcss@8.4.49)(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(typescript@5.7.2) '@t3-oss/env-core': specifier: 0.7.1 - version: 0.7.1(typescript@5.6.3)(zod@3.23.8) + version: 0.7.1(typescript@5.7.2)(zod@3.23.8) '@unkey/api': specifier: 0.23.0 version: 0.23.0 @@ -516,7 +516,7 @@ importers: version: link:../../packages/tsconfig '@types/bun': specifier: latest - version: 1.1.13 + version: 1.1.14 packages/analytics: dependencies: @@ -627,10 +627,10 @@ importers: version: 0.7.0(typescript@5.5.2)(zod@3.23.8) drizzle-orm: specifier: 0.35.3 - version: 0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.34)(react@18.3.1) + version: 0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.37)(react@18.3.1) drizzle-zod: specifier: 0.5.1 - version: 0.5.1(drizzle-orm@0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.34)(react@18.3.1))(zod@3.23.8) + version: 0.5.1(drizzle-orm@0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.37)(react@18.3.1))(zod@3.23.8) zod: specifier: 3.23.8 version: 3.23.8 @@ -1282,10 +1282,10 @@ packages: peerDependencies: astro: ^4.14.0 - '@astrojs/tailwind@5.1.2': - resolution: {integrity: sha512-IvOF0W/dtHElcXvhrPR35nHmhyV3cfz1EzPitMGtU7sYy9Hci3BNK1To6FWmVuuNKPxza1IgCGetSynJZL7fOg==} + '@astrojs/tailwind@5.1.3': + resolution: {integrity: sha512-XF7WhXRhqEHGvADqc0kDtF7Yv/g4wAWTaj91jBBTBaYnc4+MQLH94duFfFa4NlTkRG40VQd012eF3MhO3Kk+bg==} peerDependencies: - astro: ^3.0.0 || ^4.0.0 || ^5.0.0-beta.0 + astro: ^3.0.0 || ^4.0.0 || ^5.0.0 tailwindcss: ^3.0.24 '@astrojs/telemetry@3.1.0': @@ -3124,8 +3124,8 @@ packages: peerDependencies: react-hook-form: ^7.0.0 - '@iconify-json/lucide@1.2.15': - resolution: {integrity: sha512-mbHlTJRqOrqRk8E8xnpPzqZwCqsKNB9ZyITqDEYEtePEGxki9VJWJMU8JcNqRKDfPS9vlFsjwepUuOGgusmZUA==} + '@iconify-json/lucide@1.2.17': + resolution: {integrity: sha512-y+4P1DxD2h4d4fGYxikUdMf0o21DD0GIE/YIgixEBIXKbE90LTOFqmoxkGyPpaGk3vT2qE2w/28+sdmBMFsd5w==} '@iconify/types@2.0.0': resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} @@ -5364,8 +5364,8 @@ packages: '@types/body-parser@1.19.5': resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} - '@types/bun@1.1.13': - resolution: {integrity: sha512-KmQxSBgVWCl6RSuerlLGZlIWfdxkKqat0nxN61+qu4y1KDn0Ll3j7v1Pl8GnaL3a/U6GGWVTJh75ap62kR1E8Q==} + '@types/bun@1.1.14': + resolution: {integrity: sha512-opVYiFGtO2af0dnWBdZWlioLBoxSdDO5qokaazLhq8XQtGZbY4pY3/JxY8Zdf/hEwGubbp7ErZXoN1+h2yesxA==} '@types/caseless@0.12.4': resolution: {integrity: sha512-2in/lrHRNmDvHPgyormtEralhPcN3An1gLjJzj2Bw145VBxkQ75JEXW6CTdMAwShiHQcYsl2d10IjQSdJSJz4g==} @@ -6072,8 +6072,8 @@ packages: bun-types@1.0.8: resolution: {integrity: sha512-2dNB+dBwAcFW7RSd4y5vKycRjouKVklSwPk4EjBKWvcMYUBOqZGGNzV7+b2tfKBG3BeRXnozbnegVKR1azuATg==} - bun-types@1.1.34: - resolution: {integrity: sha512-br5QygTEL/TwB4uQOb96Ky22j4Gq2WxWH/8Oqv20fk5HagwKXo/akB+LiYgSfzexCt6kkcUaVm+bKiPl71xPvw==} + bun-types@1.1.37: + resolution: {integrity: sha512-C65lv6eBr3LPJWFZ2gswyrGZ82ljnH8flVE03xeXxKhi2ZGtFiO4isRKTKnitbSqtRAcaqYSR6djt1whI66AbA==} bundle-require@4.0.2: resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} @@ -7437,9 +7437,6 @@ packages: hast-util-to-estree@3.1.0: resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==} - hast-util-to-html@9.0.1: - resolution: {integrity: sha512-hZOofyZANbyWo+9RP75xIDV/gq+OUKx+T46IlwERnKmfpwp81XBFbT9mi26ws+SJchA4RVUQwIBJpqEOBhMzEQ==} - hast-util-to-html@9.0.3: resolution: {integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==} @@ -7599,6 +7596,7 @@ packages: inflight@1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} @@ -8144,8 +8142,8 @@ packages: magic-string@0.30.10: resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} - magic-string@0.30.13: - resolution: {integrity: sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g==} + magic-string@0.30.14: + resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==} magicast@0.3.5: resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} @@ -9666,9 +9664,6 @@ packages: remark-rehype@10.1.0: resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} - remark-rehype@11.1.0: - resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==} - remark-rehype@11.1.1: resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==} @@ -9750,6 +9745,7 @@ packages: rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rollup@2.78.0: @@ -10477,8 +10473,8 @@ packages: engines: {node: '>=14.17'} hasBin: true - typescript@5.6.3: - resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} + typescript@5.7.2: + resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} engines: {node: '>=14.17'} hasBin: true @@ -10787,10 +10783,10 @@ packages: terser: optional: true - vitefu@1.0.3: - resolution: {integrity: sha512-iKKfOMBHob2WxEJbqbJjHAkmYgvFDPhuqrO82om83S8RLk+17FtyMBfcyeH8GqD0ihShtkMW/zzJgiA51hCNCQ==} + vitefu@1.0.4: + resolution: {integrity: sha512-y6zEE3PQf6uu/Mt6DTJ9ih+kyJLr4XcSgHR2zUkM8SWDhuixEJxfJ6CZGMHh1Ec3vPLoEA0IHU5oWzVqw8ulow==} peerDependencies: - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0-beta.0 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 peerDependenciesMeta: vite: optional: true @@ -11208,26 +11204,26 @@ snapshots: openapi3-ts: 4.1.2 zod: 3.23.8 - '@astro-community/astro-embed-twitter@0.5.8(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3))': + '@astro-community/astro-embed-twitter@0.5.8(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2))': dependencies: '@astro-community/astro-embed-utils': 0.1.3 - astro: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3) + astro: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2) '@astro-community/astro-embed-utils@0.1.3': dependencies: linkedom: 0.14.26 - '@astro-community/astro-embed-youtube@0.5.6(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3))': + '@astro-community/astro-embed-youtube@0.5.6(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2))': dependencies: - astro: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3) + astro: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2) lite-youtube-embed: 0.3.3 - '@astrojs/check@0.9.4(prettier@3.3.2)(typescript@5.6.3)': + '@astrojs/check@0.9.4(prettier@3.3.2)(typescript@5.7.2)': dependencies: - '@astrojs/language-server': 2.15.4(prettier@3.3.2)(typescript@5.6.3) + '@astrojs/language-server': 2.15.4(prettier@3.3.2)(typescript@5.7.2) chokidar: 4.0.1 kleur: 4.1.5 - typescript: 5.6.3 + typescript: 5.7.2 yargs: 17.7.2 transitivePeerDependencies: - prettier @@ -11237,12 +11233,12 @@ snapshots: '@astrojs/internal-helpers@0.4.1': {} - '@astrojs/language-server@2.15.4(prettier@3.3.2)(typescript@5.6.3)': + '@astrojs/language-server@2.15.4(prettier@3.3.2)(typescript@5.7.2)': dependencies: '@astrojs/compiler': 2.10.3 '@astrojs/yaml2ts': 0.2.2 '@jridgewell/sourcemap-codec': 1.4.15 - '@volar/kit': 2.4.10(typescript@5.6.3) + '@volar/kit': 2.4.10(typescript@5.7.2) '@volar/language-core': 2.4.10 '@volar/language-server': 2.4.10 '@volar/language-service': 2.4.10 @@ -11285,12 +11281,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@astrojs/mdx@3.1.9(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3))': + '@astrojs/mdx@3.1.9(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2))': dependencies: '@astrojs/markdown-remark': 5.3.0 '@mdx-js/mdx': 3.1.0(acorn@8.14.0) acorn: 8.14.0 - astro: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3) + astro: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2) es-module-lexer: 1.5.4 estree-util-visit: 2.0.0 gray-matter: 4.0.3 @@ -11315,21 +11311,21 @@ snapshots: stream-replace-string: 2.0.0 zod: 3.23.8 - '@astrojs/starlight-tailwind@2.0.3(@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)))(@astrojs/tailwind@5.1.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)))(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)))': + '@astrojs/starlight-tailwind@2.0.3(@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)))(@astrojs/tailwind@5.1.3(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))': dependencies: - '@astrojs/starlight': 0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)) - '@astrojs/tailwind': 5.1.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)))(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)) - tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)) + '@astrojs/starlight': 0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)) + '@astrojs/tailwind': 5.1.3(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)) + tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)) - '@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3))': + '@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2))': dependencies: - '@astrojs/mdx': 3.1.9(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)) + '@astrojs/mdx': 3.1.9(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)) '@astrojs/sitemap': 3.2.1 '@pagefind/default-ui': 1.2.0 '@types/hast': 3.0.4 '@types/mdast': 4.0.4 - astro: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3) - astro-expressive-code: 0.38.3(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)) + astro: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2) + astro-expressive-code: 0.38.3(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)) bcp-47: 2.1.0 hast-util-from-html: 2.0.1 hast-util-select: 6.0.3 @@ -11350,13 +11346,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@astrojs/tailwind@5.1.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)))(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3))': + '@astrojs/tailwind@5.1.3(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2))': dependencies: - astro: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3) + astro: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2) autoprefixer: 10.4.20(postcss@8.4.49) postcss: 8.4.49 - postcss-load-config: 4.0.2(postcss@8.4.49)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)) - tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)) + postcss-load-config: 4.0.2(postcss@8.4.49)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)) + tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)) transitivePeerDependencies: - ts-node @@ -11937,13 +11933,13 @@ snapshots: '@babel/code-frame@7.24.7': dependencies: '@babel/highlight': 7.24.7 - picocolors: 1.0.1 + picocolors: 1.1.1 '@babel/code-frame@7.26.2': dependencies: '@babel/helper-validator-identifier': 7.25.9 js-tokens: 4.0.0 - picocolors: 1.0.1 + picocolors: 1.1.1 '@babel/compat-data@7.26.2': {} @@ -12139,10 +12135,10 @@ snapshots: '@babel/highlight@7.24.7': dependencies: - '@babel/helper-validator-identifier': 7.24.7 + '@babel/helper-validator-identifier': 7.25.9 chalk: 2.4.2 js-tokens: 4.0.0 - picocolors: 1.0.1 + picocolors: 1.1.1 '@babel/parser@7.24.8': dependencies: @@ -13401,7 +13397,7 @@ snapshots: dependencies: '@ctrl/tinycolor': 4.1.0 hast-util-select: 6.0.3 - hast-util-to-html: 9.0.1 + hast-util-to-html: 9.0.3 hast-util-to-text: 4.0.2 hastscript: 9.0.0 postcss: 8.4.38 @@ -13468,11 +13464,11 @@ snapshots: '@floating-ui/utils@0.2.4': {} - '@floating-ui/vue@1.1.1(vue@3.4.31(typescript@5.6.3))': + '@floating-ui/vue@1.1.1(vue@3.4.31(typescript@5.7.2))': dependencies: '@floating-ui/dom': 1.6.7 '@floating-ui/utils': 0.2.4 - vue-demi: 0.14.8(vue@3.4.31(typescript@5.6.3)) + vue-demi: 0.14.8(vue@3.4.31(typescript@5.7.2)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -13513,18 +13509,18 @@ snapshots: dependencies: tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.5.2)) - '@headlessui/tailwindcss@0.2.0(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3)))': + '@headlessui/tailwindcss@0.2.0(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))': dependencies: - tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3)) + tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)) '@headlessui/tailwindcss@0.2.1(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.5.2)))': dependencies: tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.5.2)) - '@headlessui/vue@1.7.22(vue@3.4.31(typescript@5.6.3))': + '@headlessui/vue@1.7.22(vue@3.4.31(typescript@5.7.2))': dependencies: - '@tanstack/vue-virtual': 3.8.3(vue@3.4.31(typescript@5.6.3)) - vue: 3.4.31(typescript@5.6.3) + '@tanstack/vue-virtual': 3.8.3(vue@3.4.31(typescript@5.7.2)) + vue: 3.4.31(typescript@5.7.2) '@hono/sentry@1.2.0(hono@4.5.3)': dependencies: @@ -13552,7 +13548,7 @@ snapshots: dependencies: react-hook-form: 7.47.0(react@18.3.1) - '@iconify-json/lucide@1.2.15': + '@iconify-json/lucide@1.2.17': dependencies: '@iconify/types': 2.0.0 @@ -13855,7 +13851,7 @@ snapshots: '@types/unist': 3.0.2 esbuild: 0.21.5 source-map: 0.7.4 - vfile: 6.0.1 + vfile: 6.0.3 vfile-message: 4.0.2 transitivePeerDependencies: - acorn @@ -13863,7 +13859,7 @@ snapshots: '@mdx-js/mdx@3.1.0(acorn@8.14.0)': dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 '@types/estree-jsx': 1.0.2 '@types/hast': 3.0.4 '@types/mdx': 2.0.9 @@ -13880,13 +13876,13 @@ snapshots: rehype-recma: 1.0.0 remark-mdx: 3.1.0 remark-parse: 11.0.0 - remark-rehype: 11.1.0 + remark-rehype: 11.1.1 source-map: 0.7.4 unified: 11.0.5 unist-util-position-from-estree: 2.0.0 unist-util-stringify-position: 4.0.0 unist-util-visit: 5.0.0 - vfile: 6.0.1 + vfile: 6.0.3 transitivePeerDependencies: - acorn - supports-color @@ -15159,7 +15155,7 @@ snapshots: '@rollup/pluginutils@5.1.3(rollup@4.27.4)': dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 estree-walker: 2.0.2 picomatch: 4.0.2 optionalDependencies: @@ -15219,29 +15215,29 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.27.4': optional: true - '@scalar/api-client@2.0.45(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3)))(typescript@5.6.3)': + '@scalar/api-client@2.0.45(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(typescript@5.7.2)': dependencies: - '@headlessui/tailwindcss': 0.2.0(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3))) - '@headlessui/vue': 1.7.22(vue@3.4.31(typescript@5.6.3)) - '@scalar/components': 0.12.28(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3) - '@scalar/draggable': 0.1.4(typescript@5.6.3) - '@scalar/oas-utils': 0.2.26(typescript@5.6.3) - '@scalar/object-utils': 1.1.5(vue@3.4.31(typescript@5.6.3)) + '@headlessui/tailwindcss': 0.2.0(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2))) + '@headlessui/vue': 1.7.22(vue@3.4.31(typescript@5.7.2)) + '@scalar/components': 0.12.28(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.7.2) + '@scalar/draggable': 0.1.4(typescript@5.7.2) + '@scalar/oas-utils': 0.2.26(typescript@5.7.2) + '@scalar/object-utils': 1.1.5(vue@3.4.31(typescript@5.7.2)) '@scalar/openapi-parser': 0.7.2 - '@scalar/themes': 0.9.21(typescript@5.6.3) - '@scalar/use-codemirror': 0.11.10(typescript@5.6.3) - '@scalar/use-toasts': 0.7.4(typescript@5.6.3) - '@scalar/use-tooltip': 1.0.2(typescript@5.6.3) - '@vueuse/core': 10.11.0(vue@3.4.31(typescript@5.6.3)) + '@scalar/themes': 0.9.21(typescript@5.7.2) + '@scalar/use-codemirror': 0.11.10(typescript@5.7.2) + '@scalar/use-toasts': 0.7.4(typescript@5.7.2) + '@scalar/use-tooltip': 1.0.2(typescript@5.7.2) + '@vueuse/core': 10.11.0(vue@3.4.31(typescript@5.7.2)) axios: 1.7.2 - cva: 1.0.0-beta.1(typescript@5.6.3) + cva: 1.0.0-beta.1(typescript@5.7.2) fuse.js: 7.0.0 js-cookie: 3.0.5 nanoid: 5.0.7 pretty-bytes: 6.1.1 pretty-ms: 8.0.0 - vue: 3.4.31(typescript@5.6.3) - vue-router: 4.4.0(vue@3.4.31(typescript@5.6.3)) + vue: 3.4.31(typescript@5.7.2) + vue-router: 4.4.0(vue@3.4.31(typescript@5.7.2)) whatwg-mimetype: 4.0.0 zod: 3.23.8 transitivePeerDependencies: @@ -15257,21 +15253,21 @@ snapshots: - typescript - vitest - '@scalar/api-reference@1.24.70(postcss@8.4.49)(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3)))(typescript@5.6.3)': + '@scalar/api-reference@1.24.70(postcss@8.4.49)(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(typescript@5.7.2)': dependencies: - '@floating-ui/vue': 1.1.1(vue@3.4.31(typescript@5.6.3)) - '@headlessui/vue': 1.7.22(vue@3.4.31(typescript@5.6.3)) - '@scalar/api-client': 2.0.45(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3)))(typescript@5.6.3) - '@scalar/components': 0.12.28(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3) - '@scalar/oas-utils': 0.2.26(typescript@5.6.3) + '@floating-ui/vue': 1.1.1(vue@3.4.31(typescript@5.7.2)) + '@headlessui/vue': 1.7.22(vue@3.4.31(typescript@5.7.2)) + '@scalar/api-client': 2.0.45(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(typescript@5.7.2) + '@scalar/components': 0.12.28(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.7.2) + '@scalar/oas-utils': 0.2.26(typescript@5.7.2) '@scalar/openapi-parser': 0.7.2 '@scalar/snippetz': 0.1.6 - '@scalar/themes': 0.9.21(typescript@5.6.3) - '@scalar/use-toasts': 0.7.4(typescript@5.6.3) - '@scalar/use-tooltip': 1.0.2(typescript@5.6.3) + '@scalar/themes': 0.9.21(typescript@5.7.2) + '@scalar/use-toasts': 0.7.4(typescript@5.7.2) + '@scalar/use-tooltip': 1.0.2(typescript@5.7.2) '@unhead/schema': 1.9.15 - '@unhead/vue': 1.9.15(vue@3.4.31(typescript@5.6.3)) - '@vueuse/core': 10.11.0(vue@3.4.31(typescript@5.6.3)) + '@unhead/vue': 1.9.15(vue@3.4.31(typescript@5.7.2)) + '@vueuse/core': 10.11.0(vue@3.4.31(typescript@5.7.2)) axios: 1.7.2 fuse.js: 7.0.0 github-slugger: 2.0.0 @@ -15280,7 +15276,7 @@ snapshots: postcss-nested: 6.0.1(postcss@8.4.49) unhead: 1.9.15 unified: 11.0.4 - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) transitivePeerDependencies: - '@jest/globals' - '@types/bun' @@ -15307,28 +15303,28 @@ snapshots: rehype-parse: 9.0.0 rehype-raw: 7.0.0 rehype-sanitize: 6.0.0 - rehype-stringify: 10.0.0 + rehype-stringify: 10.0.1 remark-gfm: 4.0.0 remark-parse: 11.0.0 - remark-rehype: 11.1.0 + remark-rehype: 11.1.1 unified: 11.0.5 unist-util-visit: 5.0.0 transitivePeerDependencies: - supports-color - '@scalar/components@0.12.28(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3)': + '@scalar/components@0.12.28(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.7.2)': dependencies: '@floating-ui/utils': 0.2.4 - '@floating-ui/vue': 1.1.1(vue@3.4.31(typescript@5.6.3)) - '@headlessui/vue': 1.7.22(vue@3.4.31(typescript@5.6.3)) + '@floating-ui/vue': 1.1.1(vue@3.4.31(typescript@5.7.2)) + '@headlessui/vue': 1.7.22(vue@3.4.31(typescript@5.7.2)) '@scalar/code-highlight': 0.0.7 '@storybook/test': 8.2.1(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4)) - '@vueuse/core': 10.11.0(vue@3.4.31(typescript@5.6.3)) - cva: 1.0.0-beta.1(typescript@5.6.3) + '@vueuse/core': 10.11.0(vue@3.4.31(typescript@5.7.2)) + cva: 1.0.0-beta.1(typescript@5.7.2) nanoid: 5.0.7 - radix-vue: 1.9.1(vue@3.4.31(typescript@5.6.3)) + radix-vue: 1.9.1(vue@3.4.31(typescript@5.7.2)) tailwind-merge: 2.4.0 - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) transitivePeerDependencies: - '@jest/globals' - '@types/bun' @@ -15340,15 +15336,15 @@ snapshots: - typescript - vitest - '@scalar/draggable@0.1.4(typescript@5.6.3)': + '@scalar/draggable@0.1.4(typescript@5.7.2)': dependencies: - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) transitivePeerDependencies: - typescript - '@scalar/hono-api-reference@0.5.131(postcss@8.4.49)(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3)))(typescript@5.6.3)': + '@scalar/hono-api-reference@0.5.131(postcss@8.4.49)(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(typescript@5.7.2)': dependencies: - '@scalar/api-reference': 1.24.70(postcss@8.4.49)(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3)))(typescript@5.6.3) + '@scalar/api-reference': 1.24.70(postcss@8.4.49)(storybook@8.2.1(@babel/preset-env@7.24.8(@babel/core@7.26.0))(bufferutil@4.0.8)(utf-8-validate@6.0.4))(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)))(typescript@5.7.2) hono: 4.5.3 transitivePeerDependencies: - '@jest/globals' @@ -15364,9 +15360,9 @@ snapshots: - typescript - vitest - '@scalar/oas-utils@0.2.26(typescript@5.6.3)': + '@scalar/oas-utils@0.2.26(typescript@5.7.2)': dependencies: - '@scalar/themes': 0.9.21(typescript@5.6.3) + '@scalar/themes': 0.9.21(typescript@5.7.2) axios: 1.7.2 nanoid: 5.0.7 yaml: 2.4.5 @@ -15375,9 +15371,9 @@ snapshots: - debug - typescript - '@scalar/object-utils@1.1.5(vue@3.4.31(typescript@5.6.3))': + '@scalar/object-utils@1.1.5(vue@3.4.31(typescript@5.7.2))': dependencies: - '@vueuse/core': 10.11.0(vue@3.4.31(typescript@5.6.3)) + '@vueuse/core': 10.11.0(vue@3.4.31(typescript@5.7.2)) just-clone: 6.2.0 transitivePeerDependencies: - '@vue/composition-api' @@ -15425,13 +15421,13 @@ snapshots: '@scalar/snippetz-plugin-node-ofetch': 0.1.1 '@scalar/snippetz-plugin-node-undici': 0.1.6 - '@scalar/themes@0.9.21(typescript@5.6.3)': + '@scalar/themes@0.9.21(typescript@5.7.2)': dependencies: - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) transitivePeerDependencies: - typescript - '@scalar/use-codemirror@0.11.10(typescript@5.6.3)': + '@scalar/use-codemirror@0.11.10(typescript@5.7.2)': dependencies: '@codemirror/autocomplete': 6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.28.4)(@lezer/common@1.2.1) '@codemirror/commands': 6.6.0 @@ -15450,25 +15446,25 @@ snapshots: '@replit/codemirror-css-color-picker': 6.1.1(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.28.4) '@uiw/codemirror-themes': 4.23.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.28.4) codemirror: 6.0.1(@lezer/common@1.2.1) - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) optionalDependencies: y-codemirror.next: 0.3.5(@codemirror/state@6.4.1)(@codemirror/view@6.28.4)(yjs@13.6.18) yjs: 13.6.18 transitivePeerDependencies: - typescript - '@scalar/use-toasts@0.7.4(typescript@5.6.3)': + '@scalar/use-toasts@0.7.4(typescript@5.7.2)': dependencies: nanoid: 5.0.7 - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) vue-sonner: 1.1.3 transitivePeerDependencies: - typescript - '@scalar/use-tooltip@1.0.2(typescript@5.6.3)': + '@scalar/use-tooltip@1.0.2(typescript@5.7.2)': dependencies: tippy.js: 6.3.7 - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) transitivePeerDependencies: - typescript @@ -16066,11 +16062,11 @@ snapshots: optionalDependencies: typescript: 5.5.2 - '@t3-oss/env-core@0.7.1(typescript@5.6.3)(zod@3.23.8)': + '@t3-oss/env-core@0.7.1(typescript@5.7.2)(zod@3.23.8)': dependencies: zod: 3.23.8 optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 '@t3-oss/env-nextjs@0.7.0(typescript@5.5.2)(zod@3.23.8)': dependencies: @@ -16124,10 +16120,10 @@ snapshots: '@tanstack/virtual-core@3.8.3': {} - '@tanstack/vue-virtual@3.8.3(vue@3.4.31(typescript@5.6.3))': + '@tanstack/vue-virtual@3.8.3(vue@3.4.31(typescript@5.7.2))': dependencies: '@tanstack/virtual-core': 3.8.3 - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) '@testing-library/dom@10.1.0': dependencies: @@ -16144,7 +16140,7 @@ snapshots: dependencies: '@adobe/css-tools': 4.4.0 '@babel/runtime': 7.23.2 - aria-query: 5.3.0 + aria-query: 5.3.2 chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 @@ -16244,13 +16240,13 @@ snapshots: '@types/acorn@4.0.6': dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 '@types/aria-query@5.0.4': {} '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.24.8 + '@babel/parser': 7.26.2 '@babel/types': 7.26.0 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 @@ -16262,7 +16258,7 @@ snapshots: '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.24.8 + '@babel/parser': 7.26.2 '@babel/types': 7.26.0 '@types/babel__traverse@7.20.6': @@ -16274,9 +16270,9 @@ snapshots: '@types/connect': 3.4.38 '@types/node': 20.14.8 - '@types/bun@1.1.13': + '@types/bun@1.1.14': dependencies: - bun-types: 1.1.34 + bun-types: 1.1.37 '@types/caseless@0.12.4': {} @@ -16324,7 +16320,7 @@ snapshots: '@types/estree-jsx@1.0.2': dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 '@types/estree@1.0.3': {} @@ -16509,13 +16505,13 @@ snapshots: dependencies: '@unhead/schema': 1.9.15 - '@unhead/vue@1.9.15(vue@3.4.31(typescript@5.6.3))': + '@unhead/vue@1.9.15(vue@3.4.31(typescript@5.7.2))': dependencies: '@unhead/schema': 1.9.15 '@unhead/shared': 1.9.15 hookable: 5.5.3 unhead: 1.9.15 - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) '@unkey/api@0.23.0': dependencies: @@ -16583,12 +16579,12 @@ snapshots: loupe: 2.3.7 pretty-format: 29.7.0 - '@volar/kit@2.4.10(typescript@5.6.3)': + '@volar/kit@2.4.10(typescript@5.7.2)': dependencies: '@volar/language-service': 2.4.10 '@volar/typescript': 2.4.10 typesafe-path: 0.2.2 - typescript: 5.6.3 + typescript: 5.7.2 vscode-languageserver-textdocument: 1.0.12 vscode-uri: 3.0.8 @@ -16639,7 +16635,7 @@ snapshots: '@vue/shared': 3.4.31 entities: 4.5.0 estree-walker: 2.0.2 - source-map-js: 1.2.0 + source-map-js: 1.2.1 '@vue/compiler-dom@3.4.31': dependencies: @@ -16681,29 +16677,29 @@ snapshots: '@vue/shared': 3.4.31 csstype: 3.1.3 - '@vue/server-renderer@3.4.31(vue@3.4.31(typescript@5.6.3))': + '@vue/server-renderer@3.4.31(vue@3.4.31(typescript@5.7.2))': dependencies: '@vue/compiler-ssr': 3.4.31 '@vue/shared': 3.4.31 - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) '@vue/shared@3.4.31': {} - '@vueuse/core@10.11.0(vue@3.4.31(typescript@5.6.3))': + '@vueuse/core@10.11.0(vue@3.4.31(typescript@5.7.2))': dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 10.11.0 - '@vueuse/shared': 10.11.0(vue@3.4.31(typescript@5.6.3)) - vue-demi: 0.14.8(vue@3.4.31(typescript@5.6.3)) + '@vueuse/shared': 10.11.0(vue@3.4.31(typescript@5.7.2)) + vue-demi: 0.14.8(vue@3.4.31(typescript@5.7.2)) transitivePeerDependencies: - '@vue/composition-api' - vue '@vueuse/metadata@10.11.0': {} - '@vueuse/shared@10.11.0(vue@3.4.31(typescript@5.6.3))': + '@vueuse/shared@10.11.0(vue@3.4.31(typescript@5.7.2))': dependencies: - vue-demi: 0.14.8(vue@3.4.31(typescript@5.6.3)) + vue-demi: 0.14.8(vue@3.4.31(typescript@5.7.2)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -16729,10 +16725,6 @@ snapshots: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-jsx@5.3.2(acorn@8.11.3): - dependencies: - acorn: 8.11.3 - acorn-jsx@5.3.2(acorn@8.14.0): dependencies: acorn: 8.14.0 @@ -16755,7 +16747,7 @@ snapshots: agent-base@6.0.2: dependencies: - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -16885,12 +16877,12 @@ snapshots: astring@1.8.6: {} - astro-expressive-code@0.38.3(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)): + astro-expressive-code@0.38.3(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)): dependencies: - astro: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3) + astro: 4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2) rehype-expressive-code: 0.38.3 - astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3): + astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2): dependencies: '@astrojs/compiler': 2.10.3 '@astrojs/internal-helpers': 0.4.1 @@ -16929,7 +16921,7 @@ snapshots: http-cache-semantics: 4.1.1 js-yaml: 4.1.0 kleur: 4.1.5 - magic-string: 0.30.13 + magic-string: 0.30.14 magicast: 0.3.5 micromatch: 4.0.8 mrmime: 2.0.0 @@ -16943,17 +16935,17 @@ snapshots: semver: 7.6.3 shiki: 1.23.1 tinyexec: 0.3.1 - tsconfck: 3.1.4(typescript@5.6.3) + tsconfck: 3.1.4(typescript@5.7.2) unist-util-visit: 5.0.0 vfile: 6.0.3 vite: 5.4.11(@types/node@20.14.8) - vitefu: 1.0.3(vite@5.4.11(@types/node@20.14.8)) + vitefu: 1.0.4(vite@5.4.11(@types/node@20.14.8)) which-pm: 3.0.0 xxhash-wasm: 1.1.0 yargs-parser: 21.1.1 zod: 3.23.8 zod-to-json-schema: 3.23.5(zod@3.23.8) - zod-to-ts: 1.2.0(typescript@5.6.3)(zod@3.23.8) + zod-to-ts: 1.2.0(typescript@5.7.2)(zod@3.23.8) optionalDependencies: sharp: 0.33.5 transitivePeerDependencies: @@ -16991,7 +16983,7 @@ snapshots: caniuse-lite: 1.0.30001684 fraction.js: 4.3.7 normalize-range: 0.1.2 - picocolors: 1.0.1 + picocolors: 1.1.1 postcss: 8.4.49 postcss-value-parser: 4.2.0 @@ -17164,7 +17156,7 @@ snapshots: bun-types@1.0.8: {} - bun-types@1.1.34: + bun-types@1.1.37: dependencies: '@types/node': 20.12.12 '@types/ws': 8.5.10 @@ -17526,11 +17518,11 @@ snapshots: csstype@3.1.3: {} - cva@1.0.0-beta.1(typescript@5.6.3): + cva@1.0.0-beta.1(typescript@5.7.2): dependencies: clsx: 2.0.0 optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 d3-array@3.2.4: dependencies: @@ -17754,7 +17746,7 @@ snapshots: transitivePeerDependencies: - supports-color - drizzle-orm@0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.34)(react@18.3.1): + drizzle-orm@0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.37)(react@18.3.1): dependencies: '@libsql/client-wasm': 0.14.0 optionalDependencies: @@ -17763,10 +17755,10 @@ snapshots: '@opentelemetry/api': 1.8.0 '@types/react': 18.3.3 better-sqlite3: 11.4.0 - bun-types: 1.1.34 + bun-types: 1.1.37 react: 18.3.1 - drizzle-orm@0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.4))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.34)(react@18.3.1): + drizzle-orm@0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.4))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.37)(react@18.3.1): dependencies: '@libsql/client-wasm': 0.14.0 optionalDependencies: @@ -17775,12 +17767,12 @@ snapshots: '@opentelemetry/api': 1.8.0 '@types/react': 18.3.3 better-sqlite3: 11.4.0 - bun-types: 1.1.34 + bun-types: 1.1.37 react: 18.3.1 - drizzle-zod@0.5.1(drizzle-orm@0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.34)(react@18.3.1))(zod@3.23.8): + drizzle-zod@0.5.1(drizzle-orm@0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.37)(react@18.3.1))(zod@3.23.8): dependencies: - drizzle-orm: 0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.34)(react@18.3.1) + drizzle-orm: 0.35.3(@cloudflare/workers-types@4.20240512.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.8.0)(@types/react@18.3.3)(better-sqlite3@11.4.0)(bun-types@1.1.37)(react@18.3.1) zod: 3.23.8 dset@3.1.4: {} @@ -17860,7 +17852,7 @@ snapshots: esast-util-from-js@2.0.1: dependencies: '@types/estree-jsx': 1.0.2 - acorn: 8.11.3 + acorn: 8.14.0 esast-util-from-estree: 2.0.0 vfile-message: 4.0.2 @@ -18008,7 +18000,7 @@ snapshots: estree-util-attach-comments@3.0.0: dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 estree-util-build-jsx@3.0.1: dependencies: @@ -18021,7 +18013,7 @@ snapshots: estree-util-scope@1.0.0: dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 devlop: 1.1.0 estree-util-to-js@2.0.0: @@ -18043,7 +18035,7 @@ snapshots: estree-walker@3.0.3: dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 esutils@2.0.3: {} @@ -18611,7 +18603,7 @@ snapshots: devlop: 1.1.0 hastscript: 8.0.0 property-information: 6.3.0 - vfile: 6.0.1 + vfile: 6.0.3 vfile-location: 5.0.2 web-namespaces: 2.0.1 @@ -18661,7 +18653,7 @@ snapshots: parse5: 7.1.2 unist-util-position: 5.0.0 unist-util-visit: 5.0.0 - vfile: 6.0.1 + vfile: 6.0.3 web-namespaces: 2.0.1 zwitch: 2.0.4 @@ -18691,7 +18683,7 @@ snapshots: hast-util-to-estree@3.1.0: dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 '@types/estree-jsx': 1.0.2 '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 @@ -18710,21 +18702,6 @@ snapshots: transitivePeerDependencies: - supports-color - hast-util-to-html@9.0.1: - dependencies: - '@types/hast': 3.0.4 - '@types/unist': 3.0.2 - ccount: 2.0.1 - comma-separated-tokens: 2.0.3 - hast-util-raw: 9.0.4 - hast-util-whitespace: 3.0.0 - html-void-elements: 3.0.0 - mdast-util-to-hast: 13.2.0 - property-information: 6.3.0 - space-separated-tokens: 2.0.2 - stringify-entities: 4.0.3 - zwitch: 2.0.4 - hast-util-to-html@9.0.3: dependencies: '@types/hast': 3.0.4 @@ -18741,7 +18718,7 @@ snapshots: hast-util-to-jsx-runtime@2.3.2: dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 '@types/hast': 3.0.4 '@types/unist': 3.0.2 comma-separated-tokens: 2.0.3 @@ -18884,7 +18861,7 @@ snapshots: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -19461,7 +19438,7 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 - magic-string@0.30.13: + magic-string@0.30.14: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 @@ -19469,7 +19446,7 @@ snapshots: dependencies: '@babel/parser': 7.26.2 '@babel/types': 7.26.0 - source-map-js: 1.2.0 + source-map-js: 1.2.1 make-dir@2.1.0: dependencies: @@ -19753,7 +19730,7 @@ snapshots: trim-lines: 3.0.1 unist-util-position: 5.0.0 unist-util-visit: 5.0.0 - vfile: 6.0.1 + vfile: 6.0.3 mdast-util-to-markdown@1.5.0: dependencies: @@ -19998,7 +19975,7 @@ snapshots: micromark-extension-mdx-expression@3.0.0: dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 devlop: 1.1.0 micromark-factory-mdx-expression: 2.0.2 micromark-factory-space: 2.0.0 @@ -20010,7 +19987,7 @@ snapshots: micromark-extension-mdx-jsx@3.0.1: dependencies: '@types/acorn': 4.0.6 - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 micromark-factory-mdx-expression: 2.0.2 @@ -20027,7 +20004,7 @@ snapshots: micromark-extension-mdxjs-esm@3.0.0: dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 devlop: 1.1.0 micromark-core-commonmark: 2.0.1 micromark-util-character: 2.1.0 @@ -20039,8 +20016,8 @@ snapshots: micromark-extension-mdxjs@3.0.0: dependencies: - acorn: 8.11.3 - acorn-jsx: 5.3.2(acorn@8.11.3) + acorn: 8.14.0 + acorn-jsx: 5.3.2(acorn@8.14.0) micromark-extension-mdx-expression: 3.0.0 micromark-extension-mdx-jsx: 3.0.1 micromark-extension-mdx-md: 2.0.0 @@ -20076,7 +20053,7 @@ snapshots: micromark-factory-mdx-expression@2.0.2: dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 devlop: 1.1.0 micromark-factory-space: 2.0.0 micromark-util-character: 2.1.0 @@ -20193,7 +20170,7 @@ snapshots: micromark-util-events-to-acorn@2.0.2: dependencies: '@types/acorn': 4.0.6 - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 '@types/unist': 3.0.2 devlop: 1.1.0 estree-util-visit: 2.0.0 @@ -20378,7 +20355,7 @@ snapshots: mlly@1.7.1: dependencies: - acorn: 8.11.3 + acorn: 8.14.0 pathe: 1.1.2 pkg-types: 1.1.3 ufo: 1.5.3 @@ -20952,13 +20929,13 @@ snapshots: postcss: 8.4.38 ts-node: 10.9.2(@types/node@20.14.8)(typescript@5.5.2) - postcss-load-config@4.0.1(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)): + postcss-load-config@4.0.1(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)): dependencies: lilconfig: 2.1.0 yaml: 2.3.3 optionalDependencies: postcss: 8.4.38 - ts-node: 10.9.2(@types/node@20.14.8)(typescript@5.6.3) + ts-node: 10.9.2(@types/node@20.14.8)(typescript@5.7.2) postcss-load-config@4.0.1(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.5.2)): dependencies: @@ -20968,29 +20945,29 @@ snapshots: postcss: 8.4.38 ts-node: 10.9.2(@types/node@20.8.0)(typescript@5.5.2) - postcss-load-config@4.0.1(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3)): + postcss-load-config@4.0.1(postcss@8.4.49)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.5.2)): dependencies: lilconfig: 2.1.0 yaml: 2.3.3 optionalDependencies: - postcss: 8.4.38 - ts-node: 10.9.2(@types/node@20.8.0)(typescript@5.6.3) + postcss: 8.4.49 + ts-node: 10.9.2(@types/node@20.8.0)(typescript@5.5.2) - postcss-load-config@4.0.1(postcss@8.4.49)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.5.2)): + postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.5.2)): dependencies: - lilconfig: 2.1.0 - yaml: 2.3.3 + lilconfig: 3.1.2 + yaml: 2.6.1 optionalDependencies: - postcss: 8.4.49 + postcss: 8.4.38 ts-node: 10.9.2(@types/node@20.8.0)(typescript@5.5.2) - postcss-load-config@4.0.2(postcss@8.4.49)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)): + postcss-load-config@4.0.2(postcss@8.4.49)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)): dependencies: lilconfig: 3.1.2 - yaml: 2.4.5 + yaml: 2.6.1 optionalDependencies: postcss: 8.4.49 - ts-node: 10.9.2(@types/node@20.14.8)(typescript@5.6.3) + ts-node: 10.9.2(@types/node@20.14.8)(typescript@5.7.2) postcss-nested@6.0.0(postcss@8.4.21): dependencies: @@ -21203,20 +21180,20 @@ snapshots: quick-lru@5.1.1: {} - radix-vue@1.9.1(vue@3.4.31(typescript@5.6.3)): + radix-vue@1.9.1(vue@3.4.31(typescript@5.7.2)): dependencies: '@floating-ui/dom': 1.6.7 - '@floating-ui/vue': 1.1.1(vue@3.4.31(typescript@5.6.3)) + '@floating-ui/vue': 1.1.1(vue@3.4.31(typescript@5.7.2)) '@internationalized/date': 3.5.4 '@internationalized/number': 3.5.3 - '@tanstack/vue-virtual': 3.8.3(vue@3.4.31(typescript@5.6.3)) - '@vueuse/core': 10.11.0(vue@3.4.31(typescript@5.6.3)) - '@vueuse/shared': 10.11.0(vue@3.4.31(typescript@5.6.3)) + '@tanstack/vue-virtual': 3.8.3(vue@3.4.31(typescript@5.7.2)) + '@vueuse/core': 10.11.0(vue@3.4.31(typescript@5.7.2)) + '@vueuse/shared': 10.11.0(vue@3.4.31(typescript@5.7.2)) aria-hidden: 1.2.4 defu: 6.1.4 fast-deep-equal: 3.1.3 nanoid: 5.0.7 - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) transitivePeerDependencies: - '@vue/composition-api' @@ -21443,9 +21420,9 @@ snapshots: recma-build-jsx@1.0.0: dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 estree-util-build-jsx: 3.0.1 - vfile: 6.0.1 + vfile: 6.0.3 recma-jsx@1.0.0(acorn@8.14.0): dependencies: @@ -21459,17 +21436,17 @@ snapshots: recma-parse@1.0.0: dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 esast-util-from-js: 2.0.1 unified: 11.0.5 - vfile: 6.0.1 + vfile: 6.0.3 recma-stringify@1.0.0: dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 estree-util-to-js: 2.0.0 unified: 11.0.5 - vfile: 6.0.1 + vfile: 6.0.3 redent@3.0.0: dependencies: @@ -21578,7 +21555,7 @@ snapshots: dependencies: '@types/hast': 3.0.4 hast-util-raw: 9.0.4 - vfile: 6.0.1 + vfile: 6.0.3 rehype-react@7.2.0(@types/react@18.3.3): dependencies: @@ -21591,7 +21568,7 @@ snapshots: rehype-recma@1.0.0: dependencies: - '@types/estree': 1.0.3 + '@types/estree': 1.0.6 '@types/hast': 3.0.4 hast-util-to-estree: 3.1.0 transitivePeerDependencies: @@ -21615,13 +21592,13 @@ snapshots: rehype-stringify@10.0.0: dependencies: '@types/hast': 3.0.4 - hast-util-to-html: 9.0.1 + hast-util-to-html: 9.0.3 unified: 11.0.5 rehype-stringify@10.0.1: dependencies: '@types/hast': 3.0.4 - hast-util-to-html: 9.0.1 + hast-util-to-html: 9.0.3 unified: 11.0.5 rehype@13.0.2: @@ -21709,14 +21686,6 @@ snapshots: mdast-util-to-hast: 12.3.0 unified: 10.1.2 - remark-rehype@11.1.0: - dependencies: - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 - mdast-util-to-hast: 13.2.0 - unified: 11.0.5 - vfile: 6.0.1 - remark-rehype@11.1.1: dependencies: '@types/hast': 3.0.4 @@ -22117,17 +22086,17 @@ snapshots: dependencies: type-fest: 0.7.1 - starlight-showcases@0.2.0(@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)))(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)): + starlight-showcases@0.2.0(@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)))(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)): dependencies: - '@astro-community/astro-embed-twitter': 0.5.8(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)) - '@astro-community/astro-embed-youtube': 0.5.6(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)) - '@astrojs/starlight': 0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)) + '@astro-community/astro-embed-twitter': 0.5.8(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)) + '@astro-community/astro-embed-youtube': 0.5.6(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)) + '@astrojs/starlight': 0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)) transitivePeerDependencies: - astro - starlight-sidebar-topics@0.2.1(@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3))): + starlight-sidebar-topics@0.2.1(@astrojs/starlight@0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2))): dependencies: - '@astrojs/starlight': 0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.6.3)) + '@astrojs/starlight': 0.29.2(astro@4.16.14(@types/node@20.14.8)(rollup@4.27.4)(typescript@5.7.2)) statuses@2.0.1: {} @@ -22372,7 +22341,7 @@ snapshots: postcss: 8.4.38 postcss-import: 15.1.0(postcss@8.4.38) postcss-js: 4.0.1(postcss@8.4.38) - postcss-load-config: 4.0.1(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.5.2)) + postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.5.2)) postcss-nested: 6.0.1(postcss@8.4.38) postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 @@ -22408,7 +22377,7 @@ snapshots: transitivePeerDependencies: - ts-node - tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)): + tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -22427,7 +22396,7 @@ snapshots: postcss: 8.4.38 postcss-import: 15.1.0(postcss@8.4.38) postcss-js: 4.0.1(postcss@8.4.38) - postcss-load-config: 4.0.1(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3)) + postcss-load-config: 4.0.1(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2)) postcss-nested: 6.0.1(postcss@8.4.38) postcss-selector-parser: 6.0.13 resolve: 1.22.8 @@ -22462,33 +22431,6 @@ snapshots: transitivePeerDependencies: - ts-node - tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3)): - dependencies: - '@alloc/quick-lru': 5.2.0 - arg: 5.0.2 - chokidar: 3.5.3 - didyoumean: 1.2.2 - dlv: 1.1.3 - fast-glob: 3.3.1 - glob-parent: 6.0.2 - is-glob: 4.0.3 - jiti: 1.21.0 - lilconfig: 2.1.0 - micromatch: 4.0.5 - normalize-path: 3.0.0 - object-hash: 3.0.0 - picocolors: 1.0.0 - postcss: 8.4.38 - postcss-import: 15.1.0(postcss@8.4.38) - postcss-js: 4.0.1(postcss@8.4.38) - postcss-load-config: 4.0.1(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3)) - postcss-nested: 6.0.1(postcss@8.4.38) - postcss-selector-parser: 6.0.13 - resolve: 1.22.8 - sucrase: 3.34.0 - transitivePeerDependencies: - - ts-node - tar-fs@2.1.1: dependencies: chownr: 1.1.4 @@ -22650,7 +22592,7 @@ snapshots: yn: 3.1.1 optional: true - ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.3): + ts-node@10.9.2(@types/node@20.14.8)(typescript@5.7.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -22664,7 +22606,7 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.6.3 + typescript: 5.7.2 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optional: true @@ -22687,28 +22629,9 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.3): - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.11 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 20.8.0 - acorn: 8.11.3 - acorn-walk: 8.3.2 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 5.6.3 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - optional: true - - tsconfck@3.1.4(typescript@5.6.3): + tsconfck@3.1.4(typescript@5.7.2): optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 tslib@1.14.1: {} @@ -22819,7 +22742,7 @@ snapshots: typescript@5.5.2: {} - typescript@5.6.3: {} + typescript@5.7.2: {} ufo@1.5.3: {} @@ -23096,7 +23019,7 @@ snapshots: vfile-location@5.0.2: dependencies: '@types/unist': 3.0.2 - vfile: 6.0.1 + vfile: 6.0.3 vfile-message@3.1.4: dependencies: @@ -23152,7 +23075,7 @@ snapshots: '@types/node': 20.14.8 fsevents: 2.3.3 - vitefu@1.0.3(vite@5.4.11(@types/node@20.14.8)): + vitefu@1.0.4(vite@5.4.11(@types/node@20.14.8)): optionalDependencies: vite: 5.4.11(@types/node@20.14.8) @@ -23272,26 +23195,26 @@ snapshots: vscode-uri@3.0.8: {} - vue-demi@0.14.8(vue@3.4.31(typescript@5.6.3)): + vue-demi@0.14.8(vue@3.4.31(typescript@5.7.2)): dependencies: - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) - vue-router@4.4.0(vue@3.4.31(typescript@5.6.3)): + vue-router@4.4.0(vue@3.4.31(typescript@5.7.2)): dependencies: '@vue/devtools-api': 6.6.3 - vue: 3.4.31(typescript@5.6.3) + vue: 3.4.31(typescript@5.7.2) vue-sonner@1.1.3: {} - vue@3.4.31(typescript@5.6.3): + vue@3.4.31(typescript@5.7.2): dependencies: '@vue/compiler-dom': 3.4.31 '@vue/compiler-sfc': 3.4.31 '@vue/runtime-dom': 3.4.31 - '@vue/server-renderer': 3.4.31(vue@3.4.31(typescript@5.6.3)) + '@vue/server-renderer': 3.4.31(vue@3.4.31(typescript@5.7.2)) '@vue/shared': 3.4.31 optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 w3c-keyname@2.2.8: {} @@ -23475,9 +23398,9 @@ snapshots: dependencies: zod: 3.23.8 - zod-to-ts@1.2.0(typescript@5.6.3)(zod@3.23.8): + zod-to-ts@1.2.0(typescript@5.7.2)(zod@3.23.8): dependencies: - typescript: 5.6.3 + typescript: 5.7.2 zod: 3.23.8 zod-validation-error@3.3.0(zod@3.23.8):