diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml
index 8024766e..3929b60d 100644
--- a/.github/workflows/deployment.yml
+++ b/.github/workflows/deployment.yml
@@ -51,6 +51,8 @@ jobs:
env:
ASTRO_STUDIO_APP_TOKEN: ${{ secrets.ASTRO_STUDIO_APP_TOKEN }}
MOONBASE_SECRET_KEY: ${{ secrets.MOONBASE_SECRET_KEY }}
+ PROTO_LOG: trace
+ PROTO_NPM_VERSION: "*"
- uses: moonrepo/run-report-action@0e591adc3fbc65a5c9b2f4738368f378c2efaa79 # v1.8.0
if: ${{ steps.moon-build.outputs.skip != 'true' }}
with:
@@ -161,13 +163,15 @@ jobs:
# If github-token is specified, this is the run that artifacts will be downloaded from.
# Optional. Default is ${{ github.run_id }}
# run-id:
- - uses: cloudflare/wrangler-action@a08dc762e87e8754e0d56a16a35a70b406bc869f # v3.6.1
+ - uses: cloudflare/wrangler-action@f84a562284fc78278ff9052435d9526f9c718361 # v3.7.0
id: wrangler
+ env:
+ PROTO_NPM_VERSION: "*"
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
# renovate: datasource=npm depName=wrangler
- wranglerVersion: "3.62.0"
+ wranglerVersion: "3.68.0"
workingDirectory: "apps/site"
packageManager: pnpm
command: pages deploy dist --project-name astrolicious
@@ -249,13 +253,15 @@ jobs:
# If github-token is specified, this is the run that artifacts will be downloaded from.
# Optional. Default is ${{ github.run_id }}
# run-id:
- - uses: cloudflare/wrangler-action@a08dc762e87e8754e0d56a16a35a70b406bc869f # v3.6.1
+ - uses: cloudflare/wrangler-action@f84a562284fc78278ff9052435d9526f9c718361 # v3.7.0
id: wrangler
+ env:
+ PROTO_NPM_VERSION: "*"
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
# renovate: datasource=npm depName=wrangler
- wranglerVersion: "3.62.0"
+ wranglerVersion: "3.68.0"
workingDirectory: "apps/site"
packageManager: pnpm
command: pages deploy dist --project-name astrolicious
diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml
index d5632597..88b4f950 100644
--- a/.moon/toolchain.yml
+++ b/.moon/toolchain.yml
@@ -1,6 +1,6 @@
node:
packageManager: pnpm
- addEnginesConstraint: true
+ addEnginesConstraint: false
dedupeOnLockfileChange: true
dependencyVersionFormat: workspace
inferTasksFromScripts: false
diff --git a/.node-version b/.node-version
index 119f15a0..593cb75b 100644
--- a/.node-version
+++ b/.node-version
@@ -1 +1 @@
-20.15.1
\ No newline at end of file
+20.16.0
\ No newline at end of file
diff --git a/.prototools b/.prototools
index 67c8aa28..366d6d77 100644
--- a/.prototools
+++ b/.prototools
@@ -1,9 +1,11 @@
# renovate: datasource=github-tags depName=moonrepo/moon
-moon = "1.26.7"
+moon = "1.27.5"
# renovate: datasource=node-version depName=node versioning=node
-node = "20.15.1"
+node = "20.16.0"
# renovate: datasource=npm depName=pnpm
-pnpm = "9.4.0"
+pnpm = "9.6.0"
+# renovate: datasource=npm depName=npm
+npm = "10.8.2"
[plugins]
moon = "source:https://raw.githubusercontent.com/moonrepo/moon/master/proto-plugin.toml"
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 6bf73314..8556970e 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -14,5 +14,11 @@
},
"[astro]": {
"editor.defaultFormatter": "astro-build.astro-vscode"
- }
+ },
+ "json.schemas": [
+ {
+ "fileMatch": ["/apps/site/src/content/friends/**"],
+ "url": "./apps/site/.astro/collections/friends.schema.json"
+ }
+ ]
}
diff --git a/apps/site/astro.config.ts b/apps/site/astro.config.ts
index bdfdc350..9d4f30fd 100644
--- a/apps/site/astro.config.ts
+++ b/apps/site/astro.config.ts
@@ -2,7 +2,6 @@ import { defineConfig } from 'astro/config';
import { resolve } from 'node:path';
import cloudflare from '@astrojs/cloudflare';
-import db from '@astrojs/db';
import starlight from '@astrojs/starlight';
import tailwind from '@astrojs/tailwind';
import icon from 'astro-icon';
@@ -27,17 +26,42 @@ export default defineConfig({
directRenderScript: true,
},
integrations: [
- db(),
starlight({
title: 'Astrolicious',
customCss: ['./src/styles/starlight.css'],
- favicon: '/favicon.png',
+ favicon: '/favicon.svg',
components: {
Head: './src/components/starlight/StarlightHead.astro',
Header: './src/components/starlight/StarlightHeader.astro',
Sidebar: './src/components/starlight/StarlightSidebar.astro',
Footer: './src/components/starlight/StarlightFooter.astro',
},
+ sidebar: [
+ { label: 'Welcome', link: '/docs' },
+ {
+ label: 'Why Astrolicious?',
+ badge: {
+ text: 'New',
+ },
+ link: '/blog/why-astrolicious',
+ },
+ // {
+ // label: 'Governance',
+ // link: '/docs/governance',
+ // },
+ // {
+ // label: 'Guidebook',
+ // autogenerate: { directory: 'docs/guidebook' },
+ // },
+ // {
+ // label: 'Workflows',
+ // autogenerate: { directory: 'docs/workflows' },
+ // },
+ // {
+ // label: 'Brand',
+ // link: '/docs/brand',
+ // },
+ ],
}),
tailwind({
applyBaseStyles: false,
diff --git a/apps/site/db/config.ts b/apps/site/db/config.ts
deleted file mode 100644
index 8ba55e92..00000000
--- a/apps/site/db/config.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import { column, defineDb, defineTable } from 'astro:db';
-
-const Submission = defineTable({
- columns: {
- id: column.number({ primaryKey: true }),
- integration_url: column.text(),
- author_url: column.text(),
- is_author: column.boolean(),
- message: column.text({ optional: true }),
- },
-});
-
-export default defineDb({
- tables: {
- Submission,
- },
-});
diff --git a/apps/site/moon.yml b/apps/site/moon.yml
index a42dfe95..4c5af0ed 100644
--- a/apps/site/moon.yml
+++ b/apps/site/moon.yml
@@ -9,6 +9,8 @@ fileGroups:
- "package.json"
- "astro.config.ts"
- "wrangler.toml"
+ - "/pnpm-lock.yaml"
+ - "/.prototools"
tests:
- "tests/**/*"
@@ -30,7 +32,7 @@ tasks:
- "@group(sources)"
imports:
- command: "biome check --apply --formatter-enabled=false --linter-enabled=false ./"
+ command: "biome check --write --formatter-enabled=false --linter-enabled=false ./"
inputs:
- "@group(sources)"
@@ -44,7 +46,7 @@ tasks:
lint:
deps:
- "~:format"
- command: "biome lint --apply ./"
+ command: "biome lint --write ./"
inputs:
- "@group(sources)"
diff --git a/apps/site/package.json b/apps/site/package.json
index f63d2251..a0e86980 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -5,9 +5,8 @@
"private": true,
"dependencies": {
"@astrojs/check": "0.7.0",
- "@astrojs/cloudflare": "11.0.1",
- "@astrojs/db": "0.11.7",
- "@astrojs/starlight": "0.24.5",
+ "@astrojs/cloudflare": "11.0.3",
+ "@astrojs/starlight": "0.25.3",
"@astrojs/starlight-tailwind": "2.0.3",
"@astrojs/tailwind": "5.1.0",
"@fontsource-variable/dosis": "5.0.20",
@@ -16,16 +15,15 @@
"@iconify-json/ri": "1.1.21",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "0.5.13",
- "astro": "4.11.6",
+ "astro": "4.13.1",
"astro-icon": "1.1.0",
"sanitize-html": "2.13.0",
- "simple-stack-form": "0.1.12",
"tailwindcss": "3.4.6",
"zod": "3.23.8"
},
"devDependencies": {
"@types/sanitize-html": "2.11.0",
- "wrangler": "3.62.0"
+ "wrangler": "3.68.0"
},
"scripts": {
"astro": "astro"
diff --git a/apps/site/public/favicon.png b/apps/site/public/favicon.png
deleted file mode 100644
index 7cefbe24..00000000
Binary files a/apps/site/public/favicon.png and /dev/null differ
diff --git a/apps/site/public/hero.png b/apps/site/public/hero.png
deleted file mode 100644
index f401d0d4..00000000
Binary files a/apps/site/public/hero.png and /dev/null differ
diff --git a/apps/site/src/components/FriendCard.astro b/apps/site/src/components/FriendCard.astro
new file mode 100644
index 00000000..9a4bb77f
--- /dev/null
+++ b/apps/site/src/components/FriendCard.astro
@@ -0,0 +1,32 @@
+---
+import type { CollectionEntry } from "astro:content";
+
+interface Props {
+ friend: CollectionEntry<"friends">;
+ class?: string;
+}
+
+const { friend, class: className } = Astro.props;
+const { name, logo, url, slogan } = friend.data;
+---
+
+
diff --git a/apps/site/src/content/config.ts b/apps/site/src/content/config.ts
index 0901f263..fdf460d0 100644
--- a/apps/site/src/content/config.ts
+++ b/apps/site/src/content/config.ts
@@ -37,8 +37,19 @@ const projectsCollection = defineCollection({
}),
});
+const friendsCollection = defineCollection({
+ type: 'data',
+ schema: z.object({
+ name: z.string(),
+ logo: z.string().url(),
+ url: z.string().url(),
+ slogan: z.string().optional(),
+ }),
+});
+
export const collections = {
blog: blogCollection,
docs: docsCollection,
projects: projectsCollection,
+ friends: friendsCollection,
};
diff --git a/apps/site/src/content/docs/docs/brand.mdx b/apps/site/src/content/docs/docs/brand.mdx
new file mode 100644
index 00000000..45ea2964
--- /dev/null
+++ b/apps/site/src/content/docs/docs/brand.mdx
@@ -0,0 +1,3 @@
+---
+title: Brand Guidelines
+---
diff --git a/apps/site/src/content/docs/docs/governance.mdx b/apps/site/src/content/docs/docs/governance.mdx
new file mode 100644
index 00000000..22ad9512
--- /dev/null
+++ b/apps/site/src/content/docs/docs/governance.mdx
@@ -0,0 +1,69 @@
+---
+title: Governance
+---
+
+This document outlines the governance structure for _**Astrolicious**_.
+
+**All community members must follow the [Code of Conduct (CoC)](https://github.com/astrolicious/.github/blob/main/.github/CODE_OF_CONDUCT.md).**
+Consequences for CoC violations are detailed in [Moderation](#moderation).
+
+**Want to trigger a vote, nomiation, or perform some other action?**
+Scroll down to [Playbook](#playbook).
+
+## Mission
+
+_**Astrolicious**_ is an independent community organization, unaffiliated with the official Astro project or its maintainers. Our mission is to harness the collective power and creativity of our community to build and maintain a suite of resources, tools, and extensions that complement and enhance the wider ecosystem surrounding Astro. By bringing together community-driven contributions, we aim to facilitate a collaborative environment where individuals can contribute, learn, and benefit from a larger pool of shared knowledge and tools. Our goal is to foster innovation, support the growth of all contributors, and create a robust foundation that enables our community to thrive alongside the evolving landscape of web development. We are committed to inclusivity, open collaboration, and the shared success of our members, independent of, yet respectful to, the Astro project and its goals.
+
+## Roles
+
+We recognize different levels of contribution as roles within the community. Each level comes with a new set of privileges and responsibilities.
+
+All roles are available to all members of the Astrolicious community, regardless of coding skill or experience.
+
+### Contributor
+
+Have you done something (big or small) to contribute to the health, success, or growth of Astrolicious? Congratulations, you're officially recognized as a contributor to the project!
+
+### Triage
+
+Triage roles
+
+### Maintainer
+
+## Special Roles
+
+### Enthusiasts
+
+Engaged members passionate about the project, acting as community ambassadors without participating in decision-making. They represent the community externally. Enthusiast' responsibilities are not funded, though they may receive funding for other roles.
+
+### Masterminds
+
+Known also as the "Board" or "Technical Steering Committee," they are the decision-making core, ensuring the project's and community's health. Masterminds oversee organizational decisions, affecting integrated projects but not standalone ones due to their independent nature. Mastermind' responsibilities are not funded, though they may receive funding for other roles.
+
+### Stewards
+
+The pinnacle role overseeing the project's overall well-being, inclusivity, and sustainability. They prevent the project from being dominated by single entities. Stewards' responsibilities are not funded, though they may receive funding for other roles.
+
+## Standalone Project' Roles
+Project maintainers with autonomy to maintain projects in line with established decisions and directions. They are eligible for optional funding based on time, activity commitments and fund availability.
+
+## Retiring a Role (Alumni)
+
+Roles are granted for as long as the person wishes to engage with the project. However, over time an active community member may choose to step away from the project to work on other things. Moving on from a project is a natural and well-understood part of any open source community, and we celebrate it!
+
+**Alumni** is a special designation and role for any person who had once an role assigned but is now no longer actively involved. By retiring and joining Alumni you trade-in your current set of roles, privileges, and responsibilities for a new, special Alumni role (which comes with its own set of Privileges, as described above).
+
+You can retire your role at any time and requesting Alumni status. You can initiate this action yourself if you know ahead-of-time that you need to step away from the project. Or, if you have gone several months without interacting with the community, the project may actively reach out to you to discuss retiring as a way to make room for new members.
+
+As an Alumni member, you are still a part of the community. You may also request to have your old roles reinstated at any time through the normal process for that role.
+
+## Moderation
+
+## Our Playbook
+Anything that supports the Astrolicious or Astro community is a valubale contribution.
+
+All types of contribution are meaningful. This can include code, Design, Documentation, Discord activity, and even posting about Astrolicious. No contribution is too small!
+
+Anyone can become an Astrolicious contributor (yes, even you!). Engineering ability is not required. Our goal is to recognize all contributeors to the project regardless of skill, experience, or background.
+
+_Our governance document is inspired by [Astro](https://github.com/withastro/.github/blob/main/GOVERNANCE.md)._
diff --git a/apps/site/src/content/docs/docs/guidebook/community-content.mdx b/apps/site/src/content/docs/docs/guidebook/community-content.mdx
new file mode 100644
index 00000000..7f58c2b5
--- /dev/null
+++ b/apps/site/src/content/docs/docs/guidebook/community-content.mdx
@@ -0,0 +1,5 @@
+---
+title: Community Content
+---
+
+add a new json file to astro tips community content collection, which will be automaticly pushed to astro docs, to be visible in the community section of the astro docs.
diff --git a/apps/site/src/content/docs/docs/guidebook/cross-posting.mdx b/apps/site/src/content/docs/docs/guidebook/cross-posting.mdx
new file mode 100644
index 00000000..a74f200e
--- /dev/null
+++ b/apps/site/src/content/docs/docs/guidebook/cross-posting.mdx
@@ -0,0 +1,6 @@
+---
+title: Cross-Posting
+---
+
+
+people can cross-post their content to astrolicious blog or astro tips community section, as long as they reference their own blog adress here and backlink fromt their blog us.
diff --git a/apps/site/src/content/docs/docs/guidebook/recipes.mdx b/apps/site/src/content/docs/docs/guidebook/recipes.mdx
new file mode 100644
index 00000000..c89c714f
--- /dev/null
+++ b/apps/site/src/content/docs/docs/guidebook/recipes.mdx
@@ -0,0 +1,9 @@
+---
+title: Astro Tips Recipes
+---
+
+have explanation about recipe and how to create one
+
+inspo:
+https://contribute.docs.astro.build/guides/recipe-writing/
+https://contribute.docs.astro.build/guides/new-third-party-stub/
diff --git a/apps/site/src/content/docs/docs/guidebook/tips.mdx b/apps/site/src/content/docs/docs/guidebook/tips.mdx
new file mode 100644
index 00000000..dea28186
--- /dev/null
+++ b/apps/site/src/content/docs/docs/guidebook/tips.mdx
@@ -0,0 +1,5 @@
+---
+title: Astro Tips Tips
+---
+
+snippets, very short tutorials, etc.
diff --git a/apps/site/src/content/docs/docs/index.mdx b/apps/site/src/content/docs/docs/index.mdx
index 711931be..326a6890 100644
--- a/apps/site/src/content/docs/docs/index.mdx
+++ b/apps/site/src/content/docs/docs/index.mdx
@@ -1,6 +1,27 @@
---
-title: Astrolicious docs
-description: Learn more about my project in this docs site built with Starlight.
+title: Contributing to Astrolicious
---
-Welcome to Astrolicious!
+## IMPORTANT
+**Read First:** [About Astrolicious](/blog/why-astrolicious/)
+
+## Other
+
+We welcome contributions of any size and contributors of any skill level. As an open-source project, we believe in giving back to our contributors. We are happy to help with guidance on PRs, technical writing, and turning any feature idea into a reality.
+
+On this site, you will find several guides and resources for contributing to Astrolicious.
+
+## Types of contributions
+
+There are lots of ways to contribute to the Astrolicious! In addition to contributing code or content, you can also make a huge contribution by getting involved with the community. For example you can leave review comments on PRs, adding ideas in existing GitHub Issues and Discussions!
+
+We also have a very active Discord community! We value the contributions of those who welcome new members, answer support questions, and share what they have built with and for Astrolicious and the Astro ecosysmte! Beyond traditional GitHub contributions, Astrolicious recognizes and supports community members who engage with our community, share Astrolicious in blog posts, videos and conference talks, and help maintain the health of our community.
+
+Thank you for wanting to contribute to the Astro Docs!
+
+We welcome contributions of all types and sizes from people of all experience levels. We think Astro Docs is a great place to make your first contribution to open-source!
+
+Please read this entire section to learn more about contributing. And when you do make your first contribution, be sure to visit Astro Badges to get your very own Astro Badge! 🚀
+
+{/* INSPO
+https://contribute.docs.astro.build/welcome/ */}
diff --git a/apps/site/src/content/docs/docs/me.mdx b/apps/site/src/content/docs/docs/me.mdx
deleted file mode 100644
index 711931be..00000000
--- a/apps/site/src/content/docs/docs/me.mdx
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: Astrolicious docs
-description: Learn more about my project in this docs site built with Starlight.
----
-
-Welcome to Astrolicious!
diff --git a/apps/site/src/content/docs/docs/test.mdx b/apps/site/src/content/docs/docs/test.mdx
deleted file mode 100644
index 4a079764..00000000
--- a/apps/site/src/content/docs/docs/test.mdx
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: Test
-description: Learn more about my project in this docs site built with Starlight.
----
-
-Test to Astrolicious!
diff --git a/apps/site/src/content/docs/docs/workflows/maintainers.mdx b/apps/site/src/content/docs/docs/workflows/maintainers.mdx
new file mode 100644
index 00000000..aac19b30
--- /dev/null
+++ b/apps/site/src/content/docs/docs/workflows/maintainers.mdx
@@ -0,0 +1,12 @@
+---
+title: Maintainers duties
+---
+INSPO:
+https://contribute.docs.astro.build/roles/support-squad/
+https://contribute.docs.astro.build/roles/maintainers/#merging-community-submitted-prs
+
+Enter the PRs GitHub URL into https://coauthor.kevinzunigacuellar.com/ to ensure that every reviewer and commenter will receive coauthor credit on this PR.
+
+Check to see whether this is a first-time contributor, because you know that means… (only until we have a bot that does this for us)
+
+Wait for checks to pass before merging.
diff --git a/apps/site/src/content/docs/docs/workflows/onboarding.mdx b/apps/site/src/content/docs/docs/workflows/onboarding.mdx
new file mode 100644
index 00000000..6663b705
--- /dev/null
+++ b/apps/site/src/content/docs/docs/workflows/onboarding.mdx
@@ -0,0 +1,5 @@
+---
+title: Project onboarding
+---
+
+describe options + submission process
diff --git a/apps/site/src/content/docs/docs/workflows/reviewing.mdx b/apps/site/src/content/docs/docs/workflows/reviewing.mdx
new file mode 100644
index 00000000..bd07a652
--- /dev/null
+++ b/apps/site/src/content/docs/docs/workflows/reviewing.mdx
@@ -0,0 +1,11 @@
+---
+title: How to review a PR
+---
+
+how to review a PR.. (nitpicking, being friendly)
+content vs code
+
+INSPO!
+https://contribute.docs.astro.build/reviewers/0-reviewing-prs/
+https://contribute.docs.astro.build/reviewers/1-reviewing-prs/
+https://nebulab.com/blog/a-guide-to-effective-pull-request-reviews
diff --git a/apps/site/src/content/docs/docs/workflows/rfc.mdx b/apps/site/src/content/docs/docs/workflows/rfc.mdx
new file mode 100644
index 00000000..d57d88bb
--- /dev/null
+++ b/apps/site/src/content/docs/docs/workflows/rfc.mdx
@@ -0,0 +1,5 @@
+---
+title: RFC/Vision
+---
+
+How does it work.
diff --git a/apps/site/src/content/docs/docs/workflows/setup.mdx b/apps/site/src/content/docs/docs/workflows/setup.mdx
new file mode 100644
index 00000000..8dd5e841
--- /dev/null
+++ b/apps/site/src/content/docs/docs/workflows/setup.mdx
@@ -0,0 +1,5 @@
+---
+title: How to setup your local environment
+---
+
+pnpm, biome, e.g. vscode, moonrepo, testing, benchmarks
diff --git a/apps/site/src/content/docs/docs/workflows/submit.mdx b/apps/site/src/content/docs/docs/workflows/submit.mdx
new file mode 100644
index 00000000..36816892
--- /dev/null
+++ b/apps/site/src/content/docs/docs/workflows/submit.mdx
@@ -0,0 +1,13 @@
+---
+title: submit PR
+---
+
+INSPO:
+https://contribute.docs.astro.build/roles/maintainers/#submitting-your-own-prs
+https://contribute.docs.astro.build/guides/new-feature-docs/#how-pull-requests-work
+https://contribute.docs.astro.build/first-time/6-pr-review-process/
+https://contribute.docs.astro.build/first-time/5-larger-contributions/
+https://contribute.docs.astro.build/first-time/4-edit-single-page/
+https://contribute.docs.astro.build/first-time/3-file-an-issue/
+https://contribute.docs.astro.build/first-time/2-good-first-contributions/
+https://contribute.docs.astro.build/first-time/1-about/
diff --git a/apps/site/src/content/docs/docs/workflows/triaging.mdx b/apps/site/src/content/docs/docs/workflows/triaging.mdx
new file mode 100644
index 00000000..c11b19aa
--- /dev/null
+++ b/apps/site/src/content/docs/docs/workflows/triaging.mdx
@@ -0,0 +1,8 @@
+---
+title: Issue Triage
+---
+
+how to label issues
+
+INSPO
+https://contribute.docs.astro.build/roles/maintainers/#triaging-issues-and-prs
diff --git a/apps/site/src/content/friends/aik.json b/apps/site/src/content/friends/aik.json
new file mode 100644
index 00000000..fe6ddaf4
--- /dev/null
+++ b/apps/site/src/content/friends/aik.json
@@ -0,0 +1,6 @@
+{
+ "name": "Astro Integration Kit",
+ "logo": "https://astro-integration-kit.netlify.app/_astro/houston.CZZyCf7p_oSNf9.webp",
+ "url": "https://astro-integration-kit.netlify.app/",
+ "slogan": "A package that contains utilities to help you build Astro integrations."
+}
diff --git a/apps/site/src/content/friends/inox.json b/apps/site/src/content/friends/inox.json
new file mode 100644
index 00000000..9ab0220a
--- /dev/null
+++ b/apps/site/src/content/friends/inox.json
@@ -0,0 +1,6 @@
+{
+ "name": "Inox Tools",
+ "logo": "https://inox-tools.fryuni.dev/_astro/shield.FOC531WK_Z23FUGT.webp",
+ "url": "https://inox-tools.fryuni.dev/",
+ "slogan": "A collection of oxygen-free tools for Astronauts"
+}
diff --git a/apps/site/src/env.d.ts b/apps/site/src/env.d.ts
index f2c92a40..a584cb73 100644
--- a/apps/site/src/env.d.ts
+++ b/apps/site/src/env.d.ts
@@ -1,18 +1,4 @@
-///
///
///
-declare namespace App {
- type FormValidator = import('simple-stack-form/module').FormValidator;
- type GetDataResult =
- | {
- data: import('zod').output>;
- fieldErrors: undefined;
- }
- | {
- data: undefined;
- fieldErrors: import('zod').ZodError<
- import('zod').output>
- >['formErrors']['fieldErrors'];
- };
-}
+declare namespace App {}
diff --git a/apps/site/src/pages/index.astro b/apps/site/src/pages/index.astro
index 3a1e7196..6093eb50 100644
--- a/apps/site/src/pages/index.astro
+++ b/apps/site/src/pages/index.astro
@@ -1,9 +1,11 @@
---
-import { getCollection } from 'astro:content';
-import ProjectCard from '~/components/ProjectCard.astro';
-import Layout from '~/layouts/Layout.astro';
+import { getCollection } from "astro:content";
+import FriendsCard from "~/components/FriendCard.astro";
+import ProjectCard from "~/components/ProjectCard.astro";
+import Layout from "~/layouts/Layout.astro";
-const projects = await getCollection('projects');
+const projects = await getCollection("projects");
+const friends = await getCollection("friends");
---
@@ -27,12 +29,6 @@ const projects = await getCollection('projects');
>
Explore projects
-
- Submit a project
-
@@ -45,18 +41,33 @@ const projects = await getCollection('projects');
-
-
+ const index = randomInteger(0, amount - 1);
+
+ const picker = document.getElementById("random-project-picker");
+ picker.children[index].classList.remove("hidden");
+
diff --git a/apps/site/src/pages/submit/index.astro b/apps/site/src/pages/submit/index.astro
deleted file mode 100644
index fc31eb5c..00000000
--- a/apps/site/src/pages/submit/index.astro
+++ /dev/null
@@ -1,96 +0,0 @@
----
-import { Submission, db } from 'astro:db';
-import { createForm, validateForm } from 'simple-stack-form/module';
-import z from 'zod';
-import Layout from '~/layouts/Layout.astro';
-
-export const prerender = false;
-
-const submissionForm = createForm({
- integrationURL: z.string().min(1),
- authorURL: z.string().min(1),
- isAuthor: z.boolean(),
- message: z.string().optional(),
-});
-
-if (Astro.request.method === 'POST') {
- try {
- const formData = await Astro.request.formData();
- const parsed = await validateForm({
- formData,
- validator: submissionForm.validator,
- });
- if (parsed.data) {
- await db.insert(Submission).values({
- integration_url: parsed.data.integrationURL,
- author_url: parsed.data.authorURL,
- is_author: parsed.data.isAuthor,
- message: parsed.data.message ?? null,
- });
- return Astro.redirect('/submit/success');
- }
- console.warn(parsed.fieldErrors);
- } catch (error) {
- if (error instanceof Error) {
- console.error(error.message);
- }
- }
-}
-
-const title = 'Submit a project for Astrolicous';
----
-
-
-
-
diff --git a/apps/site/src/pages/submit/success.astro b/apps/site/src/pages/submit/success.astro
deleted file mode 100644
index 5e41c0d1..00000000
--- a/apps/site/src/pages/submit/success.astro
+++ /dev/null
@@ -1,15 +0,0 @@
----
-import Layout from '~/layouts/Layout.astro';
-
-const title = 'Submission received, thank you!';
----
-
-
-
-
-
-
diff --git a/biome.json b/biome.json
index b88883bc..135f05dd 100644
--- a/biome.json
+++ b/biome.json
@@ -7,8 +7,7 @@
"defaultBranch": "main"
},
"files": {
- "ignoreUnknown": true,
- "ignore": ["submit.astro"]
+ "ignoreUnknown": true
},
"formatter": {
"lineWidth": 100
@@ -16,7 +15,7 @@
"javascript": {
"formatter": {
"quoteStyle": "single",
- "trailingComma": "es5"
+ "trailingCommas": "es5"
}
},
"json": {
diff --git a/package.json b/package.json
index 1eb0b80a..b44cb9f0 100644
--- a/package.json
+++ b/package.json
@@ -12,10 +12,7 @@
"lint:fix": "moon :lint"
},
"license": "MIT",
- "packageManager": "pnpm@9.4.0",
- "engines": {
- "node": "20.15.1"
- },
+ "packageManager": "pnpm@9.6.0",
"contributors": [
{
"name": "Alexander Niebuhr",
@@ -25,9 +22,9 @@
],
"devDependencies": {
"@biomejs/biome": "1.8.3",
- "@moonrepo/cli": "1.26.7",
+ "@moonrepo/cli": "1.27.5",
"@types/github-script": "github:actions/github-script",
- "@types/node": "20.14.12",
- "typescript": "5.4.5"
+ "@types/node": "20.14.14",
+ "typescript": "5.5.4"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 9e4e629d..9fbdd32f 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -12,38 +12,35 @@ importers:
specifier: 1.8.3
version: 1.8.3
'@moonrepo/cli':
- specifier: 1.26.7
- version: 1.26.7
+ specifier: 1.27.5
+ version: 1.27.5
'@types/github-script':
specifier: github:actions/github-script
- version: github-script@https://codeload.github.com/actions/github-script/tar.gz/60a0d83039c74a4aee543508d2ffcb1c3799cdea
+ version: github-script@https://codeload.github.com/actions/github-script/tar.gz/35b1cdd1b2c1fc704b1cd9758d10f67e833fcb02
'@types/node':
- specifier: 20.14.12
- version: 20.14.12
+ specifier: 20.14.14
+ version: 20.14.14
typescript:
- specifier: 5.4.5
- version: 5.4.5
+ specifier: 5.5.4
+ version: 5.5.4
apps/site:
dependencies:
'@astrojs/check':
specifier: 0.7.0
- version: 0.7.0(typescript@5.4.5)
+ version: 0.7.0(typescript@5.5.4)
'@astrojs/cloudflare':
- specifier: 11.0.1
- version: 11.0.1(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))
- '@astrojs/db':
- specifier: 0.11.7
- version: 0.11.7(@cloudflare/workers-types@4.20240529.0)
+ specifier: 11.0.3
+ version: 11.0.3(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))
'@astrojs/starlight':
- specifier: 0.24.5
- version: 0.24.5(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))
+ specifier: 0.25.3
+ version: 0.25.3(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))
'@astrojs/starlight-tailwind':
specifier: 2.0.3
- version: 2.0.3(@astrojs/starlight@0.24.5(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5)))(@astrojs/tailwind@5.1.0(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))(tailwindcss@3.4.6))(tailwindcss@3.4.6)
+ version: 2.0.3(@astrojs/starlight@0.25.3(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4)))(@astrojs/tailwind@5.1.0(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))(tailwindcss@3.4.6))(tailwindcss@3.4.6)
'@astrojs/tailwind':
specifier: 5.1.0
- version: 5.1.0(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))(tailwindcss@3.4.6)
+ version: 5.1.0(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))(tailwindcss@3.4.6)
'@fontsource-variable/dosis':
specifier: 5.0.20
version: 5.0.20
@@ -63,17 +60,14 @@ importers:
specifier: 0.5.13
version: 0.5.13(tailwindcss@3.4.6)
astro:
- specifier: 4.11.6
- version: 4.11.6(@types/node@20.14.12)(typescript@5.4.5)
+ specifier: 4.13.1
+ version: 4.13.1(@types/node@20.14.14)(typescript@5.5.4)
astro-icon:
specifier: 1.1.0
version: 1.1.0
sanitize-html:
specifier: 2.13.0
version: 2.13.0
- simple-stack-form:
- specifier: 0.1.12
- version: 0.1.12(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))(zod@3.23.8)
tailwindcss:
specifier: 3.4.6
version: 3.4.6
@@ -85,8 +79,8 @@ importers:
specifier: 2.11.0
version: 2.11.0
wrangler:
- specifier: 3.62.0
- version: 3.62.0(@cloudflare/workers-types@4.20240529.0)
+ specifier: 3.68.0
+ version: 3.68.0(@cloudflare/workers-types@4.20240729.0)
packages:
@@ -128,28 +122,19 @@ packages:
peerDependencies:
typescript: ^5.0.0
- '@astrojs/cloudflare@11.0.1':
- resolution: {integrity: sha512-VuUSFS2ZhxWIfo7RgHvAvaMff3iqeWFVCgh+0WHywjWvJle2J5jlpdUK5seR3NkTWr9yYOPSSr1tP34C8E/w0w==}
+ '@astrojs/cloudflare@11.0.3':
+ resolution: {integrity: sha512-6gSdBpGV9N9JP2WNOBibeQqWHTi9nrHo571KCubxbrp6eGGtioHA4fh0qkLINwDOCF3oEJO66ZHiYC0cIWU4dg==}
peerDependencies:
astro: ^4.10.3
- '@astrojs/compiler@2.8.0':
- resolution: {integrity: sha512-yrpD1WRGqsJwANaDIdtHo+YVjvIOFAjC83lu5qENIgrafwZcJgSXDuwVMXOgok4tFzpeKLsFQ6c3FoUdloLWBQ==}
-
- '@astrojs/compiler@2.9.1':
- resolution: {integrity: sha512-s8Ge2lWHx/s3kl4UoerjL/iPtwdtogNM/BLOaGCwQA6crMOVYpphy5wUkYlKyuh8GAeGYH/5haLAFBsgNy9AQQ==}
-
- '@astrojs/db@0.11.7':
- resolution: {integrity: sha512-upJfu/GpW0AwFIIkWPmIzLRrXibmyKdtjUB+T/9FvuH25Bgk4ym62d87clh+0acBgGQw98mezSOtBCenWTAT0Q==}
-
- '@astrojs/internal-helpers@0.3.0':
- resolution: {integrity: sha512-tGmHvrhpzuz0JBHaJX8GywN9g4rldVNHtkoVDC3m/DdzBO70jGoVuc0uuNVglRYnsdwkbG0K02Iw3nOOR3/Y4g==}
+ '@astrojs/compiler@2.10.1':
+ resolution: {integrity: sha512-XmM4j6BjvOVMag2xELq0JuG2yKOW8wgIu6dvb9BsjbGYmnvoStJn/pqEzVqc1EBszf2xYT7onIkftIOUz9AwrQ==}
'@astrojs/internal-helpers@0.4.1':
resolution: {integrity: sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==}
- '@astrojs/language-server@2.10.0':
- resolution: {integrity: sha512-crHXpqYfA5qWioiuZnZFpTsNItgBlF1f0S9MzDYS7/pfCALkHNJ7K3w9U/j0uMKymsT4hC7BfMaX0DYlfdSzHg==}
+ '@astrojs/language-server@2.13.1':
+ resolution: {integrity: sha512-Cl9ynfnge6+MaCpehYn7w9WrAE+sVS7onhxhMzCdqzPtIt/Yo5zIaiGZdu4QgvmOV/mdNBZCZgaTpAIeGjWwsQ==}
hasBin: true
peerDependencies:
prettier: ^3.0.0
@@ -160,14 +145,11 @@ packages:
prettier-plugin-astro:
optional: true
- '@astrojs/markdown-remark@5.1.0':
- resolution: {integrity: sha512-S6Z3K2hOB7MfjeDoHsotnP/q2UsnEDB8NlNAaCjMDsGBZfTUbWxyLW3CaphEWw08f6KLZi2ibK9yC3BaMhh2NQ==}
-
- '@astrojs/markdown-remark@5.1.1':
- resolution: {integrity: sha512-rkWWjR9jVo0LAMxQ2+T19RKbQUa7NwBGhFj03bAz3hGf3blqeBIXs1NSPpizshO5kZzcOqKe8OlG6XpYO8esHg==}
+ '@astrojs/markdown-remark@5.2.0':
+ resolution: {integrity: sha512-vWGM24KZXz11jR3JO+oqYU3T2qpuOi4uGivJ9SQLCAI01+vEkHC60YJMRvHPc+hwd60F7euNs1PeOEixIIiNQw==}
- '@astrojs/mdx@3.1.0':
- resolution: {integrity: sha512-yuGDaOcCAfYgLQvUAlJDezYGK4twHlzW1Kvpyg3inxtDJuAsHdyVyYLWl0Wo5nwkyrbZktdrjnoW5scqzoAqAg==}
+ '@astrojs/mdx@3.1.3':
+ resolution: {integrity: sha512-hOM4dMM4RfJI254d3p/AnOZuk2VyKszRtuY5FBm+Xc4XdhIpGrR56OXMNEcWchtwz4HQyPe/eJSgvBjSROcQIQ==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
peerDependencies:
astro: ^4.8.0
@@ -176,8 +158,8 @@ packages:
resolution: {integrity: sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
- '@astrojs/sitemap@3.1.5':
- resolution: {integrity: sha512-GLdzJ01387Uzb8RKYpsYLlg/GzoPnGbmDeQNkarSE11i2+l9Qp8Nj/WoTEy9nkTS25fxxy0kxDfJmreeVleCqg==}
+ '@astrojs/sitemap@3.1.6':
+ resolution: {integrity: sha512-1Qp2NvAzVImqA6y+LubKi1DVhve/hXXgFvB0szxiipzh7BvtuKe4oJJ9dXSqaubaTkt4nMa6dv6RCCAYeB6xaQ==}
'@astrojs/starlight-tailwind@2.0.3':
resolution: {integrity: sha512-ZwbdXS/9rxYlo3tKZoTZoBPUnaaqek02b341dHwOkmMT0lIR2w+8k0mRUGxnRaYtPdMcaL+nYFd8RUa8sjdyRg==}
@@ -186,14 +168,11 @@ packages:
'@astrojs/tailwind': ^5.0.0
tailwindcss: ^3.3.3
- '@astrojs/starlight@0.24.5':
- resolution: {integrity: sha512-DDI8NpLzk+ReBudhAV09OhO5DxD+KN4Nnp3YlG6kwn/F8fmywNTNgY7VW67Z8aad+A/85OOiQOtq9wIFNRy3YA==}
+ '@astrojs/starlight@0.25.3':
+ resolution: {integrity: sha512-XNpGbZ54ungtzen4wQkPXn50D1ZquB51paWrZftA0jWxUkj4b/pP8PijAFrGFypydhvu7Dhl0DjD07lrnSSUhQ==}
peerDependencies:
astro: ^4.8.6
- '@astrojs/studio@0.1.1':
- resolution: {integrity: sha512-X4PxYQZmkXhgw9rlNKVeCzU6q+U9Cy3k3J5oP4jOTmqTE8TyjCadAad3NweDJCY9Rhgv/w+qhGfjl2JG2lcTaw==}
-
'@astrojs/tailwind@5.1.0':
resolution: {integrity: sha512-BJoCDKuWhU9FT2qYg+fr6Nfb3qP4ShtyjXGHKA/4mHN94z7BGcmauQK23iy+YH5qWvTnhqkd6mQPQ1yTZTe9Ig==}
peerDependencies:
@@ -204,67 +183,51 @@ packages:
resolution: {integrity: sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
- '@astrojs/underscore-redirects@0.3.3':
- resolution: {integrity: sha512-qDAKhFO4M1KzP7mxoJfiehf8oyf3EB158MxAa6z10NeD2pR3o4K3LlOQI8CfJgXE+BDBQcnaLvVCg/Mz/Gkg4Q==}
+ '@astrojs/underscore-redirects@0.3.4':
+ resolution: {integrity: sha512-vYuYtIrTwxFlDRIhuekscorsHdLL8Hr3mgOczfM1tRWVPn54dDNcKG0DmfL4DlC5YJRoqVaVdUs508Hw643NTw==}
'@babel/code-frame@7.24.7':
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.24.9':
- resolution: {integrity: sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==}
+ '@babel/compat-data@7.25.2':
+ resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.24.9':
- resolution: {integrity: sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==}
+ '@babel/core@7.25.2':
+ resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.24.10':
- resolution: {integrity: sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==}
+ '@babel/generator@7.25.0':
+ resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.24.7':
resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.24.8':
- resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-environment-visitor@7.24.7':
- resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-function-name@7.24.7':
- resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-hoist-variables@7.24.7':
- resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
+ '@babel/helper-compilation-targets@7.25.2':
+ resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.24.7':
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.24.9':
- resolution: {integrity: sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==}
+ '@babel/helper-module-transforms@7.25.2':
+ resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-plugin-utils@7.24.7':
- resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==}
+ '@babel/helper-plugin-utils@7.24.8':
+ resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
engines: {node: '>=6.9.0'}
'@babel/helper-simple-access@7.24.7':
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-split-export-declaration@7.24.7':
- resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-string-parser@7.24.8':
resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
engines: {node: '>=6.9.0'}
@@ -277,16 +240,16 @@ packages:
resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.8':
- resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==}
+ '@babel/helpers@7.25.0':
+ resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.24.7':
resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.24.8':
- resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==}
+ '@babel/parser@7.25.3':
+ resolution: {integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -296,22 +259,22 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.24.7':
- resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==}
+ '@babel/plugin-transform-react-jsx@7.25.2':
+ resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/template@7.24.7':
- resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
+ '@babel/template@7.25.0':
+ resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.8':
- resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==}
+ '@babel/traverse@7.25.3':
+ resolution: {integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.9':
- resolution: {integrity: sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==}
+ '@babel/types@7.25.2':
+ resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==}
engines: {node: '>=6.9.0'}
'@biomejs/biome@1.8.3':
@@ -367,80 +330,42 @@ packages:
cpu: [x64]
os: [win32]
- '@clack/core@0.3.4':
- resolution: {integrity: sha512-H4hxZDXgHtWTwV3RAVenqcC4VbJZNegbBjlPvzOzCouXtS2y3sDvlO3IsbrPNWuLWPPlYVYPghQdSF64683Ldw==}
-
- '@clack/prompts@0.7.0':
- resolution: {integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==}
- bundledDependencies:
- - is-unicode-supported
-
'@cloudflare/kv-asset-handler@0.3.4':
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
engines: {node: '>=16.13'}
- '@cloudflare/workerd-darwin-64@1.20240610.1':
- resolution: {integrity: sha512-YanZ1iXgMGaUWlleB5cswSE6qbzyjQ8O7ENWZcPAcZZ6BfuL7q3CWi0t9iM1cv2qx92rRztsRTyjcfq099++XQ==}
+ '@cloudflare/workerd-darwin-64@1.20240725.0':
+ resolution: {integrity: sha512-KpE7eycdZ9ON+tKBuTyqZh8SdFWHGrh2Ru9LcbpeFwb7O9gDQv9ceSdoV/T598qlT0a0yVKM62R6xa5ec0UOWA==}
engines: {node: '>=16'}
cpu: [x64]
os: [darwin]
- '@cloudflare/workerd-darwin-64@1.20240620.1':
- resolution: {integrity: sha512-YWeS2aE8jAzDefuus/3GmZcFGu3Ef94uCAoxsQuaEXNsiGM9NeAhPpKC1BJAlcv168U/Q1J+6hckcGtipf6ZcQ==}
- engines: {node: '>=16'}
- cpu: [x64]
- os: [darwin]
-
- '@cloudflare/workerd-darwin-arm64@1.20240610.1':
- resolution: {integrity: sha512-bRe/y/LKjIgp3L2EHjc+CvoCzfHhf4aFTtOBkv2zW+VToNJ4KlXridndf7LvR9urfsFRRo9r4TXCssuKaU+ypQ==}
- engines: {node: '>=16'}
- cpu: [arm64]
- os: [darwin]
-
- '@cloudflare/workerd-darwin-arm64@1.20240620.1':
- resolution: {integrity: sha512-3rdND+EHpmCrwYX6hvxIBSBJ0f40tRNxond1Vfw7GiR1MJVi3gragiBx75UDFHCxfRw3J0GZ1qVlkRce2/Xbsg==}
+ '@cloudflare/workerd-darwin-arm64@1.20240725.0':
+ resolution: {integrity: sha512-/UQlI04FdXLpPlDzzsWGz8TuKrMZKLowTo+8PkxgEiWIaBhE4DIDM5bwj3jM4Bs8yOLiL2ovQNpld5CnAKqA8g==}
engines: {node: '>=16'}
cpu: [arm64]
os: [darwin]
- '@cloudflare/workerd-linux-64@1.20240610.1':
- resolution: {integrity: sha512-2zDcadR7+Gs9SjcMXmwsMji2Xs+yASGNA2cEHDuFc4NMUup+eL1mkzxc/QzvFjyBck98e92rBjMZt2dVscpGKg==}
+ '@cloudflare/workerd-linux-64@1.20240725.0':
+ resolution: {integrity: sha512-Z5t12qYLvHz0b3ZRBBm2HQ93RiHrAnjFfdhtjMcgJypAGkiWpOCEn2xar/WqDhMfqnk0sa8aYiYAbMAlP1WN6w==}
engines: {node: '>=16'}
cpu: [x64]
os: [linux]
- '@cloudflare/workerd-linux-64@1.20240620.1':
- resolution: {integrity: sha512-tURcTrXGeSbYqeM5ISVcofY20StKbVIcdxjJvNYNZ+qmSV9Fvn+zr7rRE+q64pEloVZfhsEPAlUCnFso5VV4XQ==}
- engines: {node: '>=16'}
- cpu: [x64]
- os: [linux]
-
- '@cloudflare/workerd-linux-arm64@1.20240610.1':
- resolution: {integrity: sha512-7y41rPi5xmIYJN8CY+t3RHnjLL0xx/WYmaTd/j552k1qSr02eTE2o/TGyWZmGUC+lWnwdPQJla0mXbvdqgRdQg==}
+ '@cloudflare/workerd-linux-arm64@1.20240725.0':
+ resolution: {integrity: sha512-j9gYXLOwOyNehLMzP7KxQ+Y6/nxcL9i6LTDJC6RChoaxLRbm0Y/9Otu+hfyzeNeRpt31ip6vqXZ1QQk6ygzI8A==}
engines: {node: '>=16'}
cpu: [arm64]
os: [linux]
- '@cloudflare/workerd-linux-arm64@1.20240620.1':
- resolution: {integrity: sha512-TThvkwNxaZFKhHZnNjOGqIYCOk05DDWgO+wYMuXg15ymN/KZPnCicRAkuyqiM+R1Fgc4kwe/pehjP8pbmcf6sg==}
- engines: {node: '>=16'}
- cpu: [arm64]
- os: [linux]
-
- '@cloudflare/workerd-windows-64@1.20240610.1':
- resolution: {integrity: sha512-B0LyT3DB6rXHWNptnntYHPaoJIy0rXnGfeDBM3nEVV8JIsQrx8MEFn2F2jYioH1FkUVavsaqKO/zUosY3tZXVA==}
+ '@cloudflare/workerd-windows-64@1.20240725.0':
+ resolution: {integrity: sha512-fkrJLWNN6rrPjZ0eKJx328NVMo4BsainKxAfqaPMEd6uRwjOM8uN8V4sSLsXXP8GQMAx6hAG2hU86givS4GItg==}
engines: {node: '>=16'}
cpu: [x64]
os: [win32]
- '@cloudflare/workerd-windows-64@1.20240620.1':
- resolution: {integrity: sha512-Y/BA9Yj0r7Al1HK3nDHcfISgFllw6NR3XMMPChev57vrVT9C9D4erBL3sUBfofHU+2U9L+ShLsl6obBpe3vvUw==}
- engines: {node: '>=16'}
- cpu: [x64]
- os: [win32]
-
- '@cloudflare/workers-types@4.20240529.0':
- resolution: {integrity: sha512-W5obfjAwCNdYk3feUHtDfUxtTU6WIq83k6gmrLLJv+HkgCkOTwwrDNs+3w1Qln0tMj+FQx/fbwxw3ZuHIoyzGg==}
+ '@cloudflare/workers-types@4.20240729.0':
+ resolution: {integrity: sha512-wfe44YQkv5T9aBr/z95P706r2/Ydg32weJYyBOhvge7FqtdY6mM7l39rybNiJrbJoyN16dd0xxyQMf23aJNC6Q==}
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
@@ -471,8 +396,8 @@ packages:
'@emmetio/stream-reader@2.2.0':
resolution: {integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==}
- '@emnapi/runtime@1.2.0':
- resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==}
+ '@emnapi/runtime@1.1.1':
+ resolution: {integrity: sha512-3bfqkzuR1KLx57nZfjr2NLnFOobvyS0aTszaEGCGqmYMVDRaGvgIZbjGSV/MHSSmLgQ/b9JFHQ5xm5WRZYd+XQ==}
'@esbuild-plugins/node-globals-polyfill@0.2.3':
resolution: {integrity: sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==}
@@ -484,15 +409,15 @@ packages:
peerDependencies:
esbuild: '*'
- '@esbuild/aix-ppc64@0.19.12':
- resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
+ '@esbuild/aix-ppc64@0.21.5':
+ resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.21.5':
- resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
- engines: {node: '>=12'}
+ '@esbuild/aix-ppc64@0.22.0':
+ resolution: {integrity: sha512-uvQR2crZ/zgzSHDvdygHyNI+ze9zwS8mqz0YtGXotSqvEE0UkYE9s+FZKQNTt1VtT719mfP3vHrUdCpxBNQZhQ==}
+ engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
@@ -502,15 +427,15 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.19.12':
- resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
+ '@esbuild/android-arm64@0.21.5':
+ resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.21.5':
- resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
- engines: {node: '>=12'}
+ '@esbuild/android-arm64@0.22.0':
+ resolution: {integrity: sha512-UKhPb3o2gAB/bfXcl58ZXTn1q2oVu1rEu/bKrCtmm+Nj5MKUbrOwR5WAixE2v+lk0amWuwPvhnPpBRLIGiq7ig==}
+ engines: {node: '>=18'}
cpu: [arm64]
os: [android]
@@ -520,15 +445,15 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.19.12':
- resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
+ '@esbuild/android-arm@0.21.5':
+ resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.21.5':
- resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
- engines: {node: '>=12'}
+ '@esbuild/android-arm@0.22.0':
+ resolution: {integrity: sha512-PBnyP+r8vJE4ifxsWys9l+Mc2UY/yYZOpX82eoyGISXXb3dRr0M21v+s4fgRKWMFPMSf/iyowqPW/u7ScSUkjQ==}
+ engines: {node: '>=18'}
cpu: [arm]
os: [android]
@@ -538,15 +463,15 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.19.12':
- resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
+ '@esbuild/android-x64@0.21.5':
+ resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.21.5':
- resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
- engines: {node: '>=12'}
+ '@esbuild/android-x64@0.22.0':
+ resolution: {integrity: sha512-IjTYtvIrjhR41Ijy2dDPgYjQHWG/x/A4KXYbs1fiU3efpRdoxMChK3oEZV6GPzVEzJqxFgcuBaiX1kwEvWUxSw==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [android]
@@ -556,15 +481,15 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.19.12':
- resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
+ '@esbuild/darwin-arm64@0.21.5':
+ resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.21.5':
- resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
- engines: {node: '>=12'}
+ '@esbuild/darwin-arm64@0.22.0':
+ resolution: {integrity: sha512-mqt+Go4y9wRvEz81bhKd9RpHsQR1LwU8Xm6jZRUV/xpM7cIQFbFH6wBCLPTNsdELBvfoHeumud7X78jQQJv2TA==}
+ engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
@@ -574,15 +499,15 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.19.12':
- resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
+ '@esbuild/darwin-x64@0.21.5':
+ resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.21.5':
- resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
- engines: {node: '>=12'}
+ '@esbuild/darwin-x64@0.22.0':
+ resolution: {integrity: sha512-vTaTQ9OgYc3VTaWtOE5pSuDT6H3d/qSRFRfSBbnxFfzAvYoB3pqKXA0LEbi/oT8GUOEAutspfRMqPj2ezdFaMw==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
@@ -592,15 +517,15 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.19.12':
- resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
+ '@esbuild/freebsd-arm64@0.21.5':
+ resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.21.5':
- resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
- engines: {node: '>=12'}
+ '@esbuild/freebsd-arm64@0.22.0':
+ resolution: {integrity: sha512-0e1ZgoobJzaGnR4reD7I9rYZ7ttqdh1KPvJWnquUoDJhL0rYwdneeLailBzd2/4g/U5p4e5TIHEWa68NF2hFpQ==}
+ engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
@@ -610,15 +535,15 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.19.12':
- resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
+ '@esbuild/freebsd-x64@0.21.5':
+ resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.21.5':
- resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
- engines: {node: '>=12'}
+ '@esbuild/freebsd-x64@0.22.0':
+ resolution: {integrity: sha512-BFgyYwlCwRWyPQJtkzqq2p6pJbiiWgp0P9PNf7a5FQ1itKY4czPuOMAlFVItirSmEpRPCeImuwePNScZS0pL5Q==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
@@ -628,15 +553,15 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.19.12':
- resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
+ '@esbuild/linux-arm64@0.21.5':
+ resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.21.5':
- resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
- engines: {node: '>=12'}
+ '@esbuild/linux-arm64@0.22.0':
+ resolution: {integrity: sha512-V/K2rctCUgC0PCXpN7AqT4hoazXKgIYugFGu/myk2+pfe6jTW2guz/TBwq4cZ7ESqusR/IzkcQaBkcjquuBWsw==}
+ engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
@@ -646,15 +571,15 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.19.12':
- resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
+ '@esbuild/linux-arm@0.21.5':
+ resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.21.5':
- resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
- engines: {node: '>=12'}
+ '@esbuild/linux-arm@0.22.0':
+ resolution: {integrity: sha512-KEMWiA9aGuPUD4BH5yjlhElLgaRXe+Eri6gKBoDazoPBTo1BXc/e6IW5FcJO9DoL19FBeCxgONyh95hLDNepIg==}
+ engines: {node: '>=18'}
cpu: [arm]
os: [linux]
@@ -664,15 +589,15 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.19.12':
- resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
+ '@esbuild/linux-ia32@0.21.5':
+ resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.21.5':
- resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
- engines: {node: '>=12'}
+ '@esbuild/linux-ia32@0.22.0':
+ resolution: {integrity: sha512-r2ZZqkOMOrpUhzNwxI7uLAHIDwkfeqmTnrv1cjpL/rjllPWszgqmprd/om9oviKXUBpMqHbXmppvjAYgISb26Q==}
+ engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
@@ -682,15 +607,15 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.19.12':
- resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
+ '@esbuild/linux-loong64@0.21.5':
+ resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.21.5':
- resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
- engines: {node: '>=12'}
+ '@esbuild/linux-loong64@0.22.0':
+ resolution: {integrity: sha512-qaowLrV/YOMAL2RfKQ4C/VaDzAuLDuylM2sd/LH+4OFirMl6CuDpRlCq4u49ZBaVV8pkI/Y+hTdiibvQRhojCA==}
+ engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
@@ -700,15 +625,15 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.19.12':
- resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
+ '@esbuild/linux-mips64el@0.21.5':
+ resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.21.5':
- resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
- engines: {node: '>=12'}
+ '@esbuild/linux-mips64el@0.22.0':
+ resolution: {integrity: sha512-hgrezzjQTRxjkQ5k08J6rtZN5PNnkWx/Rz6Kmj9gnsdCAX1I4Dn4ZPqvFRkXo55Q3pnVQJBwbdtrTO7tMGtyVA==}
+ engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
@@ -718,15 +643,15 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.19.12':
- resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
+ '@esbuild/linux-ppc64@0.21.5':
+ resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.21.5':
- resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
- engines: {node: '>=12'}
+ '@esbuild/linux-ppc64@0.22.0':
+ resolution: {integrity: sha512-ewxg6FLLUio883XgSjfULEmDl3VPv/TYNnRprVAS3QeGFLdCYdx1tIudBcd7n9jIdk82v1Ajov4jx87qW7h9+g==}
+ engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
@@ -736,15 +661,15 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.19.12':
- resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
+ '@esbuild/linux-riscv64@0.21.5':
+ resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.21.5':
- resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
- engines: {node: '>=12'}
+ '@esbuild/linux-riscv64@0.22.0':
+ resolution: {integrity: sha512-Az5XbgSJC2lE8XK8pdcutsf9RgdafWdTpUK/+6uaDdfkviw/B4JCwAfh1qVeRWwOohwdsl4ywZrWBNWxwrPLFg==}
+ engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
@@ -754,15 +679,15 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.19.12':
- resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
+ '@esbuild/linux-s390x@0.21.5':
+ resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.21.5':
- resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
- engines: {node: '>=12'}
+ '@esbuild/linux-s390x@0.22.0':
+ resolution: {integrity: sha512-8j4a2ChT9+V34NNNY9c/gMldutaJFmfMacTPq4KfNKwv2fitBCLYjee7c+Vxaha2nUhPK7cXcZpJtJ3+Y7ZdVQ==}
+ engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
@@ -772,15 +697,15 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.19.12':
- resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
+ '@esbuild/linux-x64@0.21.5':
+ resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.21.5':
- resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
- engines: {node: '>=12'}
+ '@esbuild/linux-x64@0.22.0':
+ resolution: {integrity: sha512-JUQyOnpbAkkRFOk/AhsEemz5TfWN4FJZxVObUlnlNCbe7QBl61ZNfM4cwBXayQA6laMJMUcqLHaYQHAB6YQ95Q==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [linux]
@@ -790,33 +715,39 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.19.12':
- resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
+ '@esbuild/netbsd-x64@0.21.5':
+ resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.21.5':
- resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
- engines: {node: '>=12'}
+ '@esbuild/netbsd-x64@0.22.0':
+ resolution: {integrity: sha512-11PoCoHXo4HFNbLsXuMB6bpMPWGDiw7xETji6COdJss4SQZLvcgNoeSqWtATRm10Jj1uEHiaIk4N0PiN6x4Fcg==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
+ '@esbuild/openbsd-arm64@0.22.0':
+ resolution: {integrity: sha512-Ezlhu/YyITmXwKSB+Zu/QqD7cxrjrpiw85cc0Rbd3AWr2wsgp+dWbWOE8MqHaLW9NKMZvuL0DhbJbvzR7F6Zvg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.17.19':
resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.19.12':
- resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
+ '@esbuild/openbsd-x64@0.21.5':
+ resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.21.5':
- resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
- engines: {node: '>=12'}
+ '@esbuild/openbsd-x64@0.22.0':
+ resolution: {integrity: sha512-ufjdW5tFJGUjlH9j/5cCE9lrwRffyZh+T4vYvoDKoYsC6IXbwaFeV/ENxeNXcxotF0P8CDzoICXVSbJaGBhkrw==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
@@ -826,15 +757,15 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.19.12':
- resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
+ '@esbuild/sunos-x64@0.21.5':
+ resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.21.5':
- resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
- engines: {node: '>=12'}
+ '@esbuild/sunos-x64@0.22.0':
+ resolution: {integrity: sha512-zY6ly/AoSmKnmNTowDJsK5ehra153/5ZhqxNLfq9NRsTTltetr+yHHcQ4RW7QDqw4JC8A1uC1YmeSfK9NRcK1w==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
@@ -844,15 +775,15 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.19.12':
- resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
+ '@esbuild/win32-arm64@0.21.5':
+ resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.21.5':
- resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
- engines: {node: '>=12'}
+ '@esbuild/win32-arm64@0.22.0':
+ resolution: {integrity: sha512-Kml5F7tv/1Maam0pbbCrvkk9vj046dPej30kFzlhXnhuCtYYBP6FGy/cLbc5yUT1lkZznGLf2OvuvmLjscO5rw==}
+ engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
@@ -862,15 +793,15 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.19.12':
- resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
+ '@esbuild/win32-ia32@0.21.5':
+ resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.21.5':
- resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
- engines: {node: '>=12'}
+ '@esbuild/win32-ia32@0.22.0':
+ resolution: {integrity: sha512-IOgwn+mYTM3RrcydP4Og5IpXh+ftN8oF+HELTXSmbWBlujuci4Qa3DTeO+LEErceisI7KUSfEIiX+WOUlpELkw==}
+ engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
@@ -880,15 +811,15 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.19.12':
- resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
+ '@esbuild/win32-x64@0.21.5':
+ resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.21.5':
- resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
- engines: {node: '>=12'}
+ '@esbuild/win32-x64@0.22.0':
+ resolution: {integrity: sha512-4bDHJrk2WHBXJPhy1y80X7/5b5iZTZP3LGcKIlAP1J+KqZ4zQAPMLEzftGyjjfcKbA4JDlPt/+2R/F1ZTeRgrw==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [win32]
@@ -926,17 +857,17 @@ packages:
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
- '@iconify/utils@2.1.24':
- resolution: {integrity: sha512-H8r2KpL5uKyrkb3z9/3HD/22JcxqW3BJyjEWZhX2T7DehnYVZthEap1cNsEl/UtCDC3TlpNmwiPX8wg3y8E4dg==}
+ '@iconify/utils@2.1.23':
+ resolution: {integrity: sha512-YGNbHKM5tyDvdWZ92y2mIkrfvm5Fvhe6WJSkWu7vvOFhMtYDP0casZpoRz0XEHZCrYsR4stdGT3cZ52yp5qZdQ==}
- '@img/sharp-darwin-arm64@0.33.4':
- resolution: {integrity: sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==}
+ '@img/sharp-darwin-arm64@0.33.3':
+ resolution: {integrity: sha512-FaNiGX1MrOuJ3hxuNzWgsT/mg5OHG/Izh59WW2mk1UwYHUwtfbhk5QNKYZgxf0pLOhx9ctGiGa2OykD71vOnSw==}
engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [arm64]
os: [darwin]
- '@img/sharp-darwin-x64@0.33.4':
- resolution: {integrity: sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==}
+ '@img/sharp-darwin-x64@0.33.3':
+ resolution: {integrity: sha512-2QeSl7QDK9ru//YBT4sQkoq7L0EAJZA3rtV+v9p8xTKl4U1bUqTIaCnoC7Ctx2kCjQgwFXDasOtPTCT8eCTXvw==}
engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [x64]
os: [darwin]
@@ -989,66 +920,68 @@ packages:
cpu: [x64]
os: [linux]
- '@img/sharp-linux-arm64@0.33.4':
- resolution: {integrity: sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==}
+ '@img/sharp-linux-arm64@0.33.3':
+ resolution: {integrity: sha512-Zf+sF1jHZJKA6Gor9hoYG2ljr4wo9cY4twaxgFDvlG0Xz9V7sinsPp8pFd1XtlhTzYo0IhDbl3rK7P6MzHpnYA==}
engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [arm64]
os: [linux]
- '@img/sharp-linux-arm@0.33.4':
- resolution: {integrity: sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==}
+ '@img/sharp-linux-arm@0.33.3':
+ resolution: {integrity: sha512-Q7Ee3fFSC9P7vUSqVEF0zccJsZ8GiiCJYGWDdhEjdlOeS9/jdkyJ6sUSPj+bL8VuOYFSbofrW0t/86ceVhx32w==}
engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [arm]
os: [linux]
- '@img/sharp-linux-s390x@0.33.4':
- resolution: {integrity: sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==}
- engines: {glibc: '>=2.31', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ '@img/sharp-linux-s390x@0.33.3':
+ resolution: {integrity: sha512-vFk441DKRFepjhTEH20oBlFrHcLjPfI8B0pMIxGm3+yilKyYeHEVvrZhYFdqIseSclIqbQ3SnZMwEMWonY5XFA==}
+ engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [s390x]
os: [linux]
- '@img/sharp-linux-x64@0.33.4':
- resolution: {integrity: sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==}
+ '@img/sharp-linux-x64@0.33.3':
+ resolution: {integrity: sha512-Q4I++herIJxJi+qmbySd072oDPRkCg/SClLEIDh5IL9h1zjhqjv82H0Seupd+q2m0yOfD+/fJnjSoDFtKiHu2g==}
engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [x64]
os: [linux]
- '@img/sharp-linuxmusl-arm64@0.33.4':
- resolution: {integrity: sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==}
+ '@img/sharp-linuxmusl-arm64@0.33.3':
+ resolution: {integrity: sha512-qnDccehRDXadhM9PM5hLvcPRYqyFCBN31kq+ErBSZtZlsAc1U4Z85xf/RXv1qolkdu+ibw64fUDaRdktxTNP9A==}
engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [arm64]
os: [linux]
- '@img/sharp-linuxmusl-x64@0.33.4':
- resolution: {integrity: sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==}
+ '@img/sharp-linuxmusl-x64@0.33.3':
+ resolution: {integrity: sha512-Jhchim8kHWIU/GZ+9poHMWRcefeaxFIs9EBqf9KtcC14Ojk6qua7ghKiPs0sbeLbLj/2IGBtDcxHyjCdYWkk2w==}
engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [x64]
os: [linux]
- '@img/sharp-wasm32@0.33.4':
- resolution: {integrity: sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==}
+ '@img/sharp-wasm32@0.33.3':
+ resolution: {integrity: sha512-68zivsdJ0koE96stdUfM+gmyaK/NcoSZK5dV5CAjES0FUXS9lchYt8LAB5rTbM7nlWtxaU/2GON0HVN6/ZYJAQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [wasm32]
- '@img/sharp-win32-ia32@0.33.4':
- resolution: {integrity: sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==}
+ '@img/sharp-win32-ia32@0.33.3':
+ resolution: {integrity: sha512-CyimAduT2whQD8ER4Ux7exKrtfoaUiVr7HG0zZvO0XTFn2idUWljjxv58GxNTkFb8/J9Ub9AqITGkJD6ZginxQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [ia32]
os: [win32]
- '@img/sharp-win32-x64@0.33.4':
- resolution: {integrity: sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==}
+ '@img/sharp-win32-x64@0.33.3':
+ resolution: {integrity: sha512-viT4fUIDKnli3IfOephGnolMzhz5VaTvDRkYqtZxOMIoMQ4MrAziO7pT1nVnOt2FAm7qW5aa+CCc13aEY6Le0g==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [x64]
os: [win32]
+ '@inox-tools/astro-when@0.2.1':
+ resolution: {integrity: sha512-jQSiHcbCtCziM6u6UnUJhbKsvoj3xBEc7kc4NhVewPuL1Zjf/xnptzxgAq48qiujOkIGegwBYYnZxlnWaM22Cw==}
+ peerDependencies:
+ astro: ^4
+
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
- '@johnsoncodehk/vscode-html-languageservice@5.2.0-34a5462':
- resolution: {integrity: sha512-etqLfpSJ5zaw76KUNF603be6d6QsiQPmaHr9FKEp4zhLZJzWCCMH6Icak7MtLUFLZLMpL761mZNImi/joBo1ZA==}
-
'@jridgewell/gen-mapping@0.3.5':
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
@@ -1061,8 +994,8 @@ packages:
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
- '@jridgewell/sourcemap-codec@1.4.15':
- resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+ '@jridgewell/sourcemap-codec@1.5.0':
+ resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
@@ -1070,101 +1003,48 @@ packages:
'@jridgewell/trace-mapping@0.3.9':
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
- '@libsql/client@0.6.2':
- resolution: {integrity: sha512-xRNfRLv/dOCbV4qd+M0baQwGmvuZpMd2wG2UAPs8XmcdaPvu5ErkcaeITkxlm3hDEJVabQM1cFhMBxsugWW9fQ==}
-
- '@libsql/core@0.6.2':
- resolution: {integrity: sha512-c2P4M+4u/4b2L02A0KjggO3UW51rGkhxr/7fzJO0fEAqsqrWGxuNj2YtRkina/oxfYvAof6xjp8RucNoIV/Odw==}
-
- '@libsql/darwin-arm64@0.3.18':
- resolution: {integrity: sha512-Zt49dt+cwhPCkuoWgvjbQd4ckNfCJR5xzIAyhgHl3CBZqZaEuaXTOGKLNQT7bnFRPuQcdLt5PBT1cenKu2N6pA==}
- cpu: [arm64]
- os: [darwin]
-
- '@libsql/darwin-x64@0.3.18':
- resolution: {integrity: sha512-faq6HUGDaNaueeqPei5cypHaD/hhazUyfHo094CXiEeRZq6ZKtNl5PHdlr8jE/Uw8USNpVVQaLdnvSgKcpRPHw==}
- cpu: [x64]
- os: [darwin]
-
- '@libsql/hrana-client@0.6.0':
- resolution: {integrity: sha512-k+fqzdjqg3IvWfKmVJK5StsbjeTcyNAXFelUbXbGNz3yH1gEVT9mZ6kmhsIXP30ZSyVV0AE1Gi25p82mxC9hwg==}
-
- '@libsql/isomorphic-fetch@0.2.1':
- resolution: {integrity: sha512-Sv07QP1Aw8A5OOrmKgRUBKe2fFhF2hpGJhtHe3d1aRnTESZCGkn//0zDycMKTGamVWb3oLYRroOsCV8Ukes9GA==}
-
- '@libsql/isomorphic-ws@0.1.5':
- resolution: {integrity: sha512-DtLWIH29onUYR00i0GlQ3UdcTRC6EP4u9w/h9LxpUZJWRMARk6dQwZ6Jkd+QdwVpuAOrdxt18v0K2uIYR3fwFg==}
-
- '@libsql/linux-arm64-gnu@0.3.18':
- resolution: {integrity: sha512-5m9xtDAhoyLSV54tho9uQ2ZIDeJWc0vU3Xpe/VK4+6bpURISs23qNhXiCrZnnq3oV0hFlBfcIgQUIATmb6jD2A==}
- cpu: [arm64]
- os: [linux]
-
- '@libsql/linux-arm64-musl@0.3.18':
- resolution: {integrity: sha512-oYD5+oM2gPEalp+EoR5DVQBRtdGjLsocjsRbQs5O2m4WOBJKER7VUfDYZHsifLGZoBSc11Yo6s9IR9rjGWy20w==}
- cpu: [arm64]
- os: [linux]
-
- '@libsql/linux-x64-gnu@0.3.18':
- resolution: {integrity: sha512-QDSSP60nS8KIldGE7H3bpEflQHiL1erwED6huoVJdmDFxsyDJX2CYdWUWW8Za0ZUOvUbnEWAOyMhp6j1dBbZqw==}
- cpu: [x64]
- os: [linux]
-
- '@libsql/linux-x64-musl@0.3.18':
- resolution: {integrity: sha512-5SXwTlaLCUPzxYyq+P0c7Ko7tcEjpd1X6RZKe1DuRFmJPg6f7j2+LrPEhMSIbqKcrl5ACUUAyoKmGZqNYwz23w==}
- cpu: [x64]
- os: [linux]
-
- '@libsql/win32-x64-msvc@0.3.18':
- resolution: {integrity: sha512-9EEIHz+e8tTbx9TMkb8ByZnzxc0pYFirK1nSbqC6cFEST95fiY0NCfQ/zAzJxe90KckbjifX6BbO69eWIi3TAg==}
- cpu: [x64]
- os: [win32]
-
'@mdx-js/mdx@3.0.1':
resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==}
- '@moonrepo/cli@1.26.7':
- resolution: {integrity: sha512-jKPhQakPLe6xLyXdagOQRp+KTCmc+7K/mX1BsBvYY4+VScjDu7deNz+CFwxJB9vR9AI62oCBP7zebxhqvKtinA==}
+ '@moonrepo/cli@1.27.5':
+ resolution: {integrity: sha512-S5lXQcpwBuqWbFsVYKlnZND8FYoSchVopwF5IBjgLr7yzGheSjwUIz3LTWv6jhNhSwZTTxXQidgWLi0XPsD8Fw==}
hasBin: true
- '@moonrepo/core-linux-arm64-gnu@1.26.7':
- resolution: {integrity: sha512-ONdl327c186nw0ZE71fhJDCfzgJ9SMzTGcUn3o08UaBF0OyKjJn05DARKbN1XRjzzQQP+3H7U17knPiSAYII8g==}
+ '@moonrepo/core-linux-arm64-gnu@1.27.5':
+ resolution: {integrity: sha512-GMVwQWAcBch7BUCRAfl7paQdIVGpBdszaLXwSQfyTEBl+mPev5sOmYrWIsHHHG1iadRojw5EkLFe9qWBjEK9dw==}
cpu: [arm64]
os: [linux]
- '@moonrepo/core-linux-arm64-musl@1.26.7':
- resolution: {integrity: sha512-WC2M0TyBvo+vH47f/3RioMYYAZv1MGpwsKvbNvLLErQeZFC/41dI7ZyAfrmlkLNliJDqpe6szTyrW8Phb4CuAw==}
+ '@moonrepo/core-linux-arm64-musl@1.27.5':
+ resolution: {integrity: sha512-r6+E6QI2beG4qSGvzgt8chMEvIR9JwU3HW1FXE1uIAfTa5Kszg8XHFRgFfWGa5WFZz52a4eqMNan6fJ9mlQn4w==}
cpu: [arm64]
os: [linux]
- '@moonrepo/core-linux-x64-gnu@1.26.7':
- resolution: {integrity: sha512-Qx1Mti2rK0z3XQ8f7WswCMPBUd0s6Sq2BaKgWnLiHRG7rOPUQVpJBQNzUJRB9S/Najnht5ywseLhkzHhbCKnNw==}
+ '@moonrepo/core-linux-x64-gnu@1.27.5':
+ resolution: {integrity: sha512-2EtOX4E1Xu36yU6BNOAdexWkqCp6+Q4YbHlWyCRYlfRrYQ9HbKPtlIlTGYuJqNRpXCTjt3IUIO3ZKcUoUGr4Ww==}
cpu: [x64]
os: [linux]
- '@moonrepo/core-linux-x64-musl@1.26.7':
- resolution: {integrity: sha512-69OYGTZ4NbFtf8sPNaXBl7w/j9iOtZHGKHtKdgQoTqu1vNEYZ2vX0DSHzkFvKlYtABn+7rLh+JCtDGBZgaOUrQ==}
+ '@moonrepo/core-linux-x64-musl@1.27.5':
+ resolution: {integrity: sha512-kinZdWd8ihPnG0jz1ULXUbW8ceTpe/iBJVfVBZyOHbIXebW1wf84X8Fa28Qn+FlNXCwJ4LEZQ38kUKDyjQg/og==}
cpu: [x64]
os: [linux]
- '@moonrepo/core-macos-arm64@1.26.7':
- resolution: {integrity: sha512-bDshGWSCF4oJeGD0SoX101U+V6N6iMOizeEB7l0sP5Ey4Ra9XG3igg0W+ht7rPqDFaw/rVr0j9TR8FpK+uFa/g==}
+ '@moonrepo/core-macos-arm64@1.27.5':
+ resolution: {integrity: sha512-dR30fr4cHT0Z/kO1alvebkUrb2MjIEqbyvhgC8WiJQpqVj0krb2mKrKFOsIuZWXpuh6fvFTxR6cDmIi4YeqTRA==}
cpu: [arm64]
os: [darwin]
- '@moonrepo/core-macos-x64@1.26.7':
- resolution: {integrity: sha512-fL3v/t6qai5DuAhCwqgOMpGPSueopyrLvg85nf3J9uvzI5GR2T2Iscjz5GDaX+RrjUKOrHGhIxenN34wEwzhKQ==}
+ '@moonrepo/core-macos-x64@1.27.5':
+ resolution: {integrity: sha512-eOGTbD5v6PlbJDmB/p+EzC630qh5kYI1mUbK/kRbdsrnZ5l+050dOnJ5JQzeco41GQK8dC8H6BM9ZA3mhFwLNQ==}
cpu: [x64]
os: [darwin]
- '@moonrepo/core-windows-x64-msvc@1.26.7':
- resolution: {integrity: sha512-xpkO3+ycwf8U9NTpS2hQstUkTHY68NMEf+HdGbq4rcYrJZTZbB5Bs6CheuhP3b1wLYqfFIe39ojPcJ/gZViOsA==}
+ '@moonrepo/core-windows-x64-msvc@1.27.5':
+ resolution: {integrity: sha512-sLzxYPpjD8GRZd7gs0LgwvIVpjbEexmPJxYX2lJSq4zzCnuJZaIkeHaOxoxIKyJjGr9QprU2q83M6FMRaCv3JQ==}
cpu: [x64]
os: [win32]
- '@neon-rs/load@0.0.4':
- resolution: {integrity: sha512-kTPhdZyTQxB+2wpiRcFWrDcejc4JI6tkPuS7UZCG4l6Zvc5kU/gGQ/ozvHTh1XR5tS+UlfAfGuPajjzQjCiHCw==}
-
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -1269,91 +1149,88 @@ packages:
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
- '@rollup/rollup-android-arm-eabi@4.18.0':
- resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==}
+ '@rollup/rollup-android-arm-eabi@4.17.2':
+ resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.18.0':
- resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==}
+ '@rollup/rollup-android-arm64@4.17.2':
+ resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.18.0':
- resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==}
+ '@rollup/rollup-darwin-arm64@4.17.2':
+ resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.18.0':
- resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==}
+ '@rollup/rollup-darwin-x64@4.17.2':
+ resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.18.0':
- resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.17.2':
+ resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.18.0':
- resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==}
+ '@rollup/rollup-linux-arm-musleabihf@4.17.2':
+ resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.18.0':
- resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==}
+ '@rollup/rollup-linux-arm64-gnu@4.17.2':
+ resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.18.0':
- resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==}
+ '@rollup/rollup-linux-arm64-musl@4.17.2':
+ resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
- resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.17.2':
+ resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.18.0':
- resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.17.2':
+ resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.18.0':
- resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==}
+ '@rollup/rollup-linux-s390x-gnu@4.17.2':
+ resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.18.0':
- resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==}
+ '@rollup/rollup-linux-x64-gnu@4.17.2':
+ resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.18.0':
- resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==}
+ '@rollup/rollup-linux-x64-musl@4.17.2':
+ resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.18.0':
- resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==}
+ '@rollup/rollup-win32-arm64-msvc@4.17.2':
+ resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.18.0':
- resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==}
+ '@rollup/rollup-win32-ia32-msvc@4.17.2':
+ resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.18.0':
- resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==}
+ '@rollup/rollup-win32-x64-msvc@4.17.2':
+ resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==}
cpu: [x64]
os: [win32]
- '@shikijs/core@1.10.0':
- resolution: {integrity: sha512-BZcr6FCmPfP6TXaekvujZcnkFmJHZ/Yglu97r/9VjzVndQA56/F4WjUKtJRQUnK59Wi7p/UTAOekMfCJv7jnYg==}
-
- '@shikijs/core@1.10.3':
- resolution: {integrity: sha512-D45PMaBaeDHxww+EkcDQtDAtzv00Gcsp72ukBtaLSmqRvh0WgGMq3Al0rl1QQBZfuneO75NXMIzEZGFitThWbg==}
+ '@shikijs/core@1.12.1':
+ resolution: {integrity: sha512-biCz/mnkMktImI6hMfMX3H9kOeqsInxWEyCHbSlL8C/2TR1FqfmGxTLRNwYCKsyCyxWLbB8rEqXRVZuyxuLFmA==}
'@tailwindcss/forms@0.5.7':
resolution: {integrity: sha512-QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw==}
@@ -1381,8 +1258,8 @@ packages:
'@types/babel__template@7.4.4':
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
- '@types/babel__traverse@7.20.6':
- resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
+ '@types/babel__traverse@7.20.5':
+ resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==}
'@types/cheerio@0.22.35':
resolution: {integrity: sha512-yD57BchKRvTV+JD53UZ6PD8KWY5g5rvvMLRnZR3EQBCZXiDT/HR+pKpMzFGlWNhFrXlo7VPZXtKvIEwZkAWOIA==}
@@ -1411,9 +1288,6 @@ packages:
'@types/ms@0.7.34':
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
- '@types/nlcst@1.0.4':
- resolution: {integrity: sha512-ABoYdNQ/kBSsLvZAekMhIPMQ3YUZvavStpKYs7BjLLuKVmIMA0LUgZ7b54zzuWJRbHF80v1cNf4r90Vd6eMQDg==}
-
'@types/nlcst@2.0.3':
resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==}
@@ -1423,8 +1297,8 @@ packages:
'@types/node@17.0.45':
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
- '@types/node@20.14.12':
- resolution: {integrity: sha512-r7wNXakLeSsGT0H1AU863vS2wa5wBOK4bWMjZz2wj+8nBx+m5PeIn0k8AloSLpRuiwdRQZwarZqHE4FNArPuJQ==}
+ '@types/node@20.14.14':
+ resolution: {integrity: sha512-d64f00982fS9YoOgJkAMolK7MN8Iq3TDdVjchbYHdEmjth/DHowx82GnoA+tVUAN+7vxfYUgAzi+JXbKNd2SDQ==}
'@types/sanitize-html@2.11.0':
resolution: {integrity: sha512-7oxPGNQHXLHE48r/r/qjn7q0hlrs3kL7oZnGj0Wf/h9tj/6ibFyRkNbsDxaBBZ4XUZ0Dx5LGCyDJ04ytSofacQ==}
@@ -1441,44 +1315,38 @@ packages:
'@types/unist@3.0.2':
resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
- '@types/ws@8.5.10':
- resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==}
-
'@types/yauzl@2.10.3':
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@volar/kit@2.2.5':
- resolution: {integrity: sha512-Bmn0UCaT43xUGGRwcmFG9lKhiCCLjRT4ScSLLPn5C9ltUcSGnIFFDlbZZa1PreHYHq25/4zkXt9Ap32klAh17w==}
+ '@volar/kit@2.4.0-alpha.18':
+ resolution: {integrity: sha512-dZMSNhesh23lhd61ax2l04IgIcYofAjm8M+5BKAmX47ROweyc8RrrslszCFUJynlmXx6JS1PoHqvo8+E0aAYQQ==}
peerDependencies:
typescript: '*'
- '@volar/language-core@2.2.5':
- resolution: {integrity: sha512-2htyAuxRrAgETmFeUhT4XLELk3LiEcqoW/B8YUXMF6BrGWLMwIR09MFaZYvrA2UhbdAeSyeQ726HaWSWkexUcQ==}
+ '@volar/language-core@2.4.0-alpha.18':
+ resolution: {integrity: sha512-JAYeJvYQQROmVRtSBIczaPjP3DX4QW1fOqW1Ebs0d3Y3EwSNRglz03dSv0Dm61dzd0Yx3WgTW3hndDnTQqgmyg==}
- '@volar/language-server@2.2.5':
- resolution: {integrity: sha512-PV/jkUkI+m72HTXwnY7hsGqLY3VNi96ZRoWFRzVC9QG/853bixxjveXPJIiydMJ9I739lO3kcj3hnGrF5Sm+HA==}
+ '@volar/language-server@2.4.0-alpha.18':
+ resolution: {integrity: sha512-dciHEE/R5kzI0bY71QfkoCVQ3cQI6g9MHfA4oIP6UhnJy0CdleUalWSygOXoD3Nq7Yk6wn2BRrb1PP5MsadY/Q==}
- '@volar/language-service@2.2.5':
- resolution: {integrity: sha512-a97e/0uCe+uSu23F4zvgvldqJtZe6jugQeEHWjTfhgOEO8+Be0t5CZNNVItQqmPyAsD8eElg0S/cP6uxvCmCSQ==}
+ '@volar/language-service@2.4.0-alpha.18':
+ resolution: {integrity: sha512-EuetrtbEtudi9buinWAG5U3Jam5dY27zXd/7GYnx542kBwanWOBM8i4DAQd0z7M11fOxXgybxPA933uaSyaOog==}
- '@volar/snapshot-document@2.2.5':
- resolution: {integrity: sha512-MTOvWVKxM7ugKO3Amffkv2pND03fe2JtfygYaputqjVFML7YxtTXj8SPnI2pODLeSwOKzDYL6Q8r5j6Y5AgUzQ==}
+ '@volar/snapshot-document@2.4.0-alpha.18':
+ resolution: {integrity: sha512-JAeclEly/wnILhR4Pu9MpgBLInZJH49O1zoy8fU+pk5I+zpv7JIEby5z2UFAS60+sIDnxBdAGd7rZ5VibE70vg==}
- '@volar/source-map@2.2.5':
- resolution: {integrity: sha512-wrOEIiZNf4E+PWB0AxyM4tfhkfldPsb3bxg8N6FHrxJH2ohar7aGu48e98bp3pR9HUA7P/pR9VrLmkTrgCCnWQ==}
+ '@volar/source-map@2.4.0-alpha.18':
+ resolution: {integrity: sha512-MTeCV9MUwwsH0sNFiZwKtFrrVZUK6p8ioZs3xFzHc2cvDXHWlYN3bChdQtwKX+FY2HG6H3CfAu1pKijolzIQ8g==}
- '@volar/typescript@2.2.5':
- resolution: {integrity: sha512-eSV/n75+ppfEVugMC/salZsI44nXDPAyL6+iTYCNLtiLHGJsnMv9GwiDMujrvAUj/aLQyqRJgYtXRoxop2clCw==}
+ '@volar/typescript@2.4.0-alpha.18':
+ resolution: {integrity: sha512-sXh5Y8sqGUkgxpMWUGvRXggxYHAVxg0Pa1C42lQZuPDrW6vHJPR0VCK8Sr7WJsAW530HuNQT/ZIskmXtxjybMQ==}
'@vscode/emmet-helper@2.9.3':
resolution: {integrity: sha512-rB39LHWWPQYYlYfpv9qCoZOVioPCftKXXqrsyqN1mTWZM6dTnONT63Db+03vgrBbHzJN45IrgS/AGxw9iiqfEw==}
- '@vscode/l10n@0.0.16':
- resolution: {integrity: sha512-JT5CvrIYYCrmB+dCana8sUqJEcGB1ZDXNLMQ2+42bW995WmNoenijWMUdZfwmuQUTQcEVVIa2OecZzTYWUW9Cg==}
-
'@vscode/l10n@0.0.18':
resolution: {integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==}
@@ -1491,16 +1359,6 @@ packages:
resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
- acorn@8.11.3:
- resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
- acorn@8.12.0:
- resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
acorn@8.12.1:
resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
@@ -1554,6 +1412,10 @@ packages:
as-table@1.0.55:
resolution: {integrity: sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ==}
+ ast-types@0.16.1:
+ resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
+ engines: {node: '>=4'}
+
astring@1.8.6:
resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==}
hasBin: true
@@ -1566,15 +1428,16 @@ packages:
astro-icon@1.1.0:
resolution: {integrity: sha512-Nksc09p7UuHeMcPNS9w1pKqRw3+wEmmh0A3FJW+FNXvqaeWI4RLvD1MCWErpY3Z5Cvad317rvLdik/Hg8GEk8Q==}
- astro@4.11.6:
- resolution: {integrity: sha512-h2n8tJJrexuIVbeceQDxPJv+0D9sDUqiN5K2Ao7akkpxslllpsa5f5aIsLHKKVD2xAwgDIhGTzkm8pn40Im6Cw==}
+ astro-integration-kit@0.16.0:
+ resolution: {integrity: sha512-FAWYxsh3H5DfNiqVBAanK9FfBJgzDq6CBKEora73IpWxDX2jPPr8cYndUI6COnWII84wbYK1qHq3lX/fIcQG+Q==}
+ peerDependencies:
+ astro: ^4.12.0
+
+ astro@4.13.1:
+ resolution: {integrity: sha512-VnMjAc+ykFsIVjgbu9Mt/EA1fMIcPMXbU89h3ATwGOzSIKDsQH72bDgfJkWiwk6u0OE90GeP5EPhAT28Twf9oA==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'}
hasBin: true
- async-listen@3.0.1:
- resolution: {integrity: sha512-cWMaNwUJnf37C/S5TfCkk/15MwbPRwVYALA2jtjkbHjCmAPiDXyNJy2q3p1KAZzDLHAWyarUWSujUoHR4pEgrA==}
- engines: {node: '>= 14'}
-
autoprefixer@10.4.19:
resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
engines: {node: ^10 || ^12 || >=14}
@@ -1617,9 +1480,9 @@ packages:
bottleneck@2.19.5:
resolution: {integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==}
- boxen@8.0.0:
- resolution: {integrity: sha512-Mzw0gi6A0zH9bVVLSuoyaPFbae4gv3luQkkt3FmVgA1g/oeKpqxFII39OuV58AiwcN2FR+rwlZhJ2mfggjEWKw==}
- engines: {node: '>=18'}
+ boxen@7.1.1:
+ resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==}
+ engines: {node: '>=14.16'}
brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
@@ -1627,40 +1490,28 @@ packages:
brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- braces@3.0.3:
- resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
+ braces@3.0.2:
+ resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
- browserslist@4.23.0:
- resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
-
- browserslist@4.23.2:
- resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==}
+ browserslist@4.23.3:
+ resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
buffer-crc32@0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
- bundle-name@4.1.0:
- resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
- engines: {node: '>=18'}
-
camelcase-css@2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
- camelcase@8.0.0:
- resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
- engines: {node: '>=16'}
-
- caniuse-lite@1.0.30001627:
- resolution: {integrity: sha512-4zgNiB8nTyV/tHhwZrFs88ryjls/lHiqFhrxCW4qSTeuRByBVnPYpDInchOIySWknznucaf31Z4KYqjfbrecVw==}
+ camelcase@7.0.1:
+ resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==}
+ engines: {node: '>=14.16'}
- caniuse-lite@1.0.30001642:
- resolution: {integrity: sha512-3XQ0DoRgLijXJErLSl+bLnJ+Et4KqV1PY6JJBGAFlsNsz31zeAIncyeZfLCabHK/jtSh+671RM9YMldxjUPZtA==}
+ caniuse-lite@1.0.30001647:
+ resolution: {integrity: sha512-n83xdNiyeNcHpzWY+1aFbqCK7LuLfBricc4+alSQL2Xb6OR3XpnQAmlDG+pQcdTfiHRuLcQ96VOfrPSGiNJYSg==}
capnp-ts@0.7.0:
resolution: {integrity: sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==}
@@ -1707,9 +1558,9 @@ packages:
resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
engines: {node: '>=8'}
- cli-boxes@4.0.0:
- resolution: {integrity: sha512-RU4tOq6V6/HggQwAumv7c8O2tuvg0gElkQ5FEdWULl4itMhvgqy1kWXq5oy3FbKOF65Ml8J4lxWbHDZcKaWLQA==}
- engines: {node: '>=18.20'}
+ cli-boxes@3.0.0:
+ resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
+ engines: {node: '>=10'}
cli-cursor@4.0.0:
resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
@@ -1819,15 +1670,11 @@ packages:
data-uri-to-buffer@2.0.2:
resolution: {integrity: sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA==}
- data-uri-to-buffer@4.0.1:
- resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
- engines: {node: '>= 12'}
-
date-fns@3.6.0:
resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==}
- debug@4.3.5:
- resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
+ debug@4.3.6:
+ resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -1838,25 +1685,10 @@ packages:
decode-named-character-reference@1.0.2:
resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
- deep-diff@1.0.2:
- resolution: {integrity: sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg==}
-
deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- default-browser-id@5.0.0:
- resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
- engines: {node: '>=18'}
-
- default-browser@5.2.1:
- resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
- engines: {node: '>=18'}
-
- define-lazy-prop@3.0.0:
- resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
- engines: {node: '>=12'}
-
defu@6.1.4:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
@@ -1867,10 +1699,6 @@ packages:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
- detect-libc@2.0.2:
- resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
- engines: {node: '>=8'}
-
detect-libc@2.0.3:
resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
@@ -1912,89 +1740,6 @@ packages:
domutils@3.1.0:
resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
- drizzle-orm@0.31.2:
- resolution: {integrity: sha512-QnenevbnnAzmbNzQwbhklvIYrDE8YER8K7kSrAWQSV1YvFCdSQPzj+jzqRdTSsV2cDqSpQ0NXGyL1G9I43LDLg==}
- peerDependencies:
- '@aws-sdk/client-rds-data': '>=3'
- '@cloudflare/workers-types': '>=3'
- '@electric-sql/pglite': '>=0.1.1'
- '@libsql/client': '*'
- '@neondatabase/serverless': '>=0.1'
- '@op-engineering/op-sqlite': '>=2'
- '@opentelemetry/api': ^1.4.1
- '@planetscale/database': '>=1'
- '@tidbcloud/serverless': '*'
- '@types/better-sqlite3': '*'
- '@types/pg': '*'
- '@types/react': '>=18'
- '@types/sql.js': '*'
- '@vercel/postgres': '>=0.8.0'
- '@xata.io/client': '*'
- better-sqlite3: '>=7'
- bun-types: '*'
- expo-sqlite: '>=13.2.0'
- knex: '*'
- kysely: '*'
- mysql2: '>=2'
- pg: '>=8'
- postgres: '>=3'
- react: '>=18'
- sql.js: '>=1'
- sqlite3: '>=5'
- peerDependenciesMeta:
- '@aws-sdk/client-rds-data':
- optional: true
- '@cloudflare/workers-types':
- optional: true
- '@electric-sql/pglite':
- optional: true
- '@libsql/client':
- optional: true
- '@neondatabase/serverless':
- optional: true
- '@op-engineering/op-sqlite':
- optional: true
- '@opentelemetry/api':
- optional: true
- '@planetscale/database':
- optional: true
- '@tidbcloud/serverless':
- optional: true
- '@types/better-sqlite3':
- optional: true
- '@types/pg':
- optional: true
- '@types/react':
- optional: true
- '@types/sql.js':
- optional: true
- '@vercel/postgres':
- optional: true
- '@xata.io/client':
- optional: true
- better-sqlite3:
- optional: true
- bun-types:
- optional: true
- expo-sqlite:
- optional: true
- knex:
- optional: true
- kysely:
- optional: true
- mysql2:
- optional: true
- pg:
- optional: true
- postgres:
- optional: true
- react:
- optional: true
- sql.js:
- optional: true
- sqlite3:
- optional: true
-
dset@3.1.3:
resolution: {integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==}
engines: {node: '>=4'}
@@ -2002,11 +1747,8 @@ packages:
eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
- electron-to-chromium@1.4.788:
- resolution: {integrity: sha512-ubp5+Ev/VV8KuRoWnfP2QF2Bg+O2ZFdb49DiiNbz2VmgkIqrnyYaqIOqj8A6K/3p1xV0QcU5hBQ1+BmB6ot1OA==}
-
- electron-to-chromium@1.4.829:
- resolution: {integrity: sha512-5qp1N2POAfW0u1qGAxXEtz6P7bO1m6gpZr5hdf5ve6lxpLM7MpiM4jIPz7xcrNlClQMafbyUDDWjlIQZ1Mw0Rw==}
+ electron-to-chromium@1.5.4:
+ resolution: {integrity: sha512-orzA81VqLyIGUEA77YkVA1D+N+nNfl2isJVjjmOyrlxuooZ19ynb+dOlaDTqd/idKRS9lDCSBmtzM+kyCsMnkA==}
emmet@2.4.7:
resolution: {integrity: sha512-O5O5QNqtdlnQM2bmKHtJgyChcrFMgQuulI+WdiOw2NArzprUqqxUW6bgYtKvzKgrsYpuLWalOkdhNP+1jluhCA==}
@@ -2035,16 +1777,16 @@ packages:
engines: {node: '>=12'}
hasBin: true
- esbuild@0.19.12:
- resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
- engines: {node: '>=12'}
- hasBin: true
-
esbuild@0.21.5:
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
engines: {node: '>=12'}
hasBin: true
+ esbuild@0.22.0:
+ resolution: {integrity: sha512-zNYA6bFZsVnsU481FnGAQjLDW0Pl/8BGG7EvAp15RzUvGC+ME7hf1q7LvIfStEQBz/iEHuBJCYcOwPmNCf1Tlw==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.1.2:
resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
engines: {node: '>=6'}
@@ -2127,12 +1869,8 @@ packages:
fd-slicer@1.1.0:
resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
- fetch-blob@3.2.0:
- resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
- engines: {node: ^12.20 || >= 14.13}
-
- fill-range@7.1.1:
- resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
+ fill-range@7.0.1:
+ resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
find-up-simple@1.0.0:
@@ -2158,17 +1896,9 @@ packages:
resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
engines: {node: '>=14'}
- formdata-polyfill@4.0.10:
- resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
- engines: {node: '>=12.20.0'}
-
fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
- fs-extra@11.2.0:
- resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
- engines: {node: '>=14.14'}
-
fs-minipass@2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
@@ -2208,8 +1938,8 @@ packages:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
- github-script@https://codeload.github.com/actions/github-script/tar.gz/60a0d83039c74a4aee543508d2ffcb1c3799cdea:
- resolution: {tarball: https://codeload.github.com/actions/github-script/tar.gz/60a0d83039c74a4aee543508d2ffcb1c3799cdea}
+ github-script@https://codeload.github.com/actions/github-script/tar.gz/35b1cdd1b2c1fc704b1cd9758d10f67e833fcb02:
+ resolution: {tarball: https://codeload.github.com/actions/github-script/tar.gz/35b1cdd1b2c1fc704b1cd9758d10f67e833fcb02}
version: 7.0.1
engines: {node: '>=20.0.0 <21.0.0'}
@@ -2227,9 +1957,9 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@10.4.1:
- resolution: {integrity: sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==}
- engines: {node: '>=16 || 14 >=14.18'}
+ glob@10.3.14:
+ resolution: {integrity: sha512-4fkAqu93xe9Mk7le9v0y3VrPDqLKHarNi2s4Pv7f2yOvfhWfhc7hRPHC/JyqMqb8B/Dt/eGS4n7ykwf3fOsl8g==}
+ engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
globals@11.12.0:
@@ -2359,10 +2089,6 @@ packages:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
- is-buffer@2.0.5:
- resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
- engines: {node: '>=4'}
-
is-core-module@2.13.1:
resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
@@ -2440,17 +2166,14 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- jackspeak@3.1.2:
- resolution: {integrity: sha512-kWmLKn2tRtfYMF/BakihVVRzBKOxz4gJMiL2Rj91WnAB5TPZumSH99R/Yf1qE1u4uRimvCSJfm6hnxohXeEXjQ==}
+ jackspeak@2.3.6:
+ resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
engines: {node: '>=14'}
jiti@1.21.0:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
- js-base64@3.7.7:
- resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==}
-
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -2475,12 +2198,6 @@ packages:
jsonc-parser@2.3.1:
resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==}
- jsonfile@6.1.0:
- resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
-
- just-map-values@3.2.0:
- resolution: {integrity: sha512-TyqCKtK3NxiUgOjRYMIKURvBTHesi3XzomDY0QVPZ3rYzLCF+nNq5rSi0B/L5aOd/WMTZo6ukzA4wih4HUbrDg==}
-
kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
@@ -2496,11 +2213,6 @@ packages:
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- libsql@0.3.18:
- resolution: {integrity: sha512-lvhKr7WV3NLWRbXkjn/MeKqXOAqWKU0PX9QYrvDh7fneukapj+iUQ4qgJASrQyxcCrEsClXCQiiK5W6OoYPAlA==}
- cpu: [x64, arm64, wasm32]
- os: [darwin, linux, win32]
-
lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
@@ -2558,8 +2270,8 @@ packages:
magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
- magic-string@0.30.10:
- resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
+ magic-string@0.30.11:
+ resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
markdown-extensions@2.0.0:
resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
@@ -2577,8 +2289,8 @@ packages:
mdast-util-find-and-replace@3.0.1:
resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==}
- mdast-util-from-markdown@2.0.1:
- resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
+ mdast-util-from-markdown@2.0.0:
+ resolution: {integrity: sha512-n7MTOr/z+8NAX/wmhhDji8O3bRvPTV/U0oTCaZJkjhPSKTPhS3xufVhKGF8s1pJ7Ox4QgoIU7KHseh09S+9rTA==}
mdast-util-gfm-autolink-literal@2.0.0:
resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==}
@@ -2743,8 +2455,8 @@ packages:
micromark@4.0.0:
resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
- micromatch@4.0.7:
- resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
+ micromatch@4.0.5:
+ resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
mime@3.0.0:
@@ -2764,13 +2476,8 @@ packages:
resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
hasBin: true
- miniflare@3.20240610.1:
- resolution: {integrity: sha512-ZkfSpBmX3nJW00yYhvF2kGvjb6f77TOimRR6+2GQvsArbwo6e0iYqLGM9aB/cnJzgFjLMvOv1qj4756iynSxJQ==}
- engines: {node: '>=16.13'}
- hasBin: true
-
- miniflare@3.20240620.0:
- resolution: {integrity: sha512-NBMzqUE2mMlh/hIdt6U5MP+aFhEjKDq3l8CAajXAQa1WkndJdciWvzB2mfLETwoVFhMl/lphaVzyEN2AgwJpbQ==}
+ miniflare@3.20240725.0:
+ resolution: {integrity: sha512-n9NTLI8J9Xt0Cls6dRpqoIPkVFnxD9gMnU/qDkDX9diKfN16HyxpAdA5mto/hKuRpjW19TxnTMcxBo90vZXemw==}
engines: {node: '>=16.13'}
hasBin: true
@@ -2793,8 +2500,8 @@ packages:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- minipass@7.1.2:
- resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ minipass@7.1.1:
+ resolution: {integrity: sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==}
engines: {node: '>=16 || 14 >=14.17'}
minizlib@2.1.2:
@@ -2831,34 +2538,18 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@5.0.7:
- resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==}
- engines: {node: ^18 || >=20}
- hasBin: true
-
- nlcst-to-string@3.1.1:
- resolution: {integrity: sha512-63mVyqaqt0cmn2VcI2aH6kxe1rLAmSROqHMA0i4qqg1tidkfExgpb0FGMikMCn86mw5dFtBtEANfmSSK7TjNHw==}
-
nlcst-to-string@4.0.0:
resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==}
- node-domexception@1.0.0:
- resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
- engines: {node: '>=10.5.0'}
-
node-fetch-native@1.6.4:
resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
- node-fetch@3.3.2:
- resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
- node-releases@2.0.14:
- resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+ node-releases@2.0.18:
+ resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
@@ -2901,10 +2592,6 @@ packages:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
- open@10.1.0:
- resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
- engines: {node: '>=18'}
-
ora@8.0.1:
resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==}
engines: {node: '>=18'}
@@ -2948,9 +2635,6 @@ packages:
parse-entities@4.0.1:
resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
- parse-latin@5.0.1:
- resolution: {integrity: sha512-b/K8ExXaWC9t34kKeDV8kGXBkXZ1HCSAZRYE7HR14eA1GlXX5L8iWhs8USJNhQU9q5ci413jCKF0gOyovvyRBg==}
-
parse-latin@7.0.0:
resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==}
@@ -2981,9 +2665,9 @@ packages:
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-scurry@1.11.1:
- resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
- engines: {node: '>=16 || 14 >=14.18'}
+ path-scurry@1.11.0:
+ resolution: {integrity: sha512-LNHTaVkzaYaLGlO+0u3rQTz7QrHTFOuKyba9JMTQutkmtNew8dw8wOD7mTU/5fCPZzCWpfW0XnQKzY61P0aTaw==}
+ engines: {node: '>=16 || 14 >=14.17'}
path-to-regexp@6.2.2:
resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==}
@@ -3057,19 +2741,15 @@ packages:
resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
engines: {node: '>=4'}
- postcss-selector-parser@6.1.0:
- resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==}
+ postcss-selector-parser@6.0.16:
+ resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
engines: {node: '>=4'}
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss@8.4.38:
- resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
- engines: {node: ^10 || ^12 || >=14}
-
- postcss@8.4.39:
- resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==}
+ postcss@8.4.40:
+ resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==}
engines: {node: ^10 || ^12 || >=14}
preferred-pm@4.0.0:
@@ -3103,6 +2783,10 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
+ recast@0.23.9:
+ resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==}
+ engines: {node: '>= 4'}
+
rehype-expressive-code@0.35.3:
resolution: {integrity: sha512-kj43Rg+WzYUs8RRr6XyBr60pnrIZEgbmn9yJoV6qka1UDpcx7r8icn6Q2uSAgaLtlEUy+HCPgQJraOZrA53LOQ==}
@@ -3139,12 +2823,8 @@ packages:
remark-rehype@11.1.0:
resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==}
- remark-smartypants@2.1.0:
- resolution: {integrity: sha512-qoF6Vz3BjU2tP6OfZqHOvCU0ACmu/6jhGaINSQRI9mM7wCxNQTKB3JUAN4SVoN2ybElEDTxBIABRep7e569iJw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- remark-smartypants@3.0.1:
- resolution: {integrity: sha512-qyshfCl2eLO0i0558e79ZJsfojC5wjnYLByjt0FmjJQN6aYwcRxpoj784LZJSoWCdnA2ubh5rLNGb8Uur/wDng==}
+ remark-smartypants@3.0.2:
+ resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==}
engines: {node: '>=16.0.0'}
remark-stringify@11.0.0:
@@ -3169,27 +2849,15 @@ packages:
resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- retext-latin@3.1.0:
- resolution: {integrity: sha512-5MrD1tuebzO8ppsja5eEu+ZbBeUNCjoEarn70tkXOS7Bdsdf6tNahsv2bY0Z8VooFF6cw7/6S+d3yI/TMlMVVQ==}
-
retext-latin@4.0.0:
resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==}
- retext-smartypants@5.2.0:
- resolution: {integrity: sha512-Do8oM+SsjrbzT2UNIKgheP0hgUQTDDQYyZaIY3kfq0pdFzoPk+ZClYJ+OERNXveog4xf1pZL4PfRxNoVL7a/jw==}
-
retext-smartypants@6.1.0:
resolution: {integrity: sha512-LDPXg95346bqFZnDMHo0S7Rq5p64+B+N8Vz733+wPMDtwb9rCOs9LIdIEhrUOU+TAywX9St+ocQWJt8wrzivcQ==}
- retext-stringify@3.1.0:
- resolution: {integrity: sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==}
-
retext-stringify@4.0.0:
resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==}
- retext@8.1.0:
- resolution: {integrity: sha512-N9/Kq7YTn6ZpzfiGW45WfEGJqFf1IM1q8OsRa1CGzIebCJBNCANDRmOrholiDRGKo/We7ofKR4SEvcGAWEMD3Q==}
-
retext@9.0.0:
resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==}
@@ -3207,23 +2875,19 @@ packages:
rollup-pluginutils@2.8.2:
resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
- rollup@4.18.0:
- resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==}
+ rollup@4.17.2:
+ resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- run-applescript@7.0.0:
- resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
- engines: {node: '>=18'}
-
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
sanitize-html@2.13.0:
resolution: {integrity: sha512-Xff91Z+4Mz5QiNSLdLWwjgBDm5b1RU6xBT0+12rapjiaR7SwfRdjw8f+6Rir2MXKLrDicRFHdb51hGOAxmsUIA==}
- sax@1.4.1:
- resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
+ sax@1.3.0:
+ resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==}
section-matter@1.0.0:
resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
@@ -3237,13 +2901,13 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.6.2:
- resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
+ semver@7.6.3:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
engines: {node: '>=10'}
hasBin: true
- sharp@0.33.4:
- resolution: {integrity: sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==}
+ sharp@0.33.3:
+ resolution: {integrity: sha512-vHUeXJU1UvlO/BNwTpT0x/r53WkLUVxrmb5JTgW92fdFCFk0ispLMAeu/jPO2vjkXM1fYUi3K7/qcLF47pwM1A==}
engines: {libvips: '>=8.15.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0}
shebang-command@2.0.0:
@@ -3254,11 +2918,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shiki@1.10.0:
- resolution: {integrity: sha512-YD2sXQ+TMD/F9BimV9Jn0wj35pqOvywvOG/3PB6hGHyGKlM7TJ9tyJ02jOb2kF8F0HfJwKNYrh3sW7jEcuRlXA==}
-
- shiki@1.10.3:
- resolution: {integrity: sha512-eneCLncGuvPdTutJuLyUGS8QNPAVFO5Trvld2wgEq1e002mwctAhJKeMGWtWVXOIEzmlcLRqcgPSorR6AVzOmQ==}
+ shiki@1.12.1:
+ resolution: {integrity: sha512-nwmjbHKnOYYAe1aaQyEBHvQymJgfm86ZSS7fT8OaPRr4sbAcBNz7PbfAikMEFSDQ6se2j2zobkXvVKcBOm0ysg==}
signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
@@ -3267,13 +2928,6 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- simple-stack-form@0.1.12:
- resolution: {integrity: sha512-cqxiA0/91WddM9Jya8Es1wfDurBfm8pUOmgMb08OB32wpmQLz2JQpjcarFNYkj5ZXfmE3qkGqakvx+6TCwxqUQ==}
- hasBin: true
- peerDependencies:
- astro: ^3.6.0 || ^4.0.0
- zod: ^3.22.4
-
simple-swizzle@0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
@@ -3329,10 +2983,6 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
- string-width@7.1.0:
- resolution: {integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==}
- engines: {node: '>=18'}
-
string-width@7.2.0:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
@@ -3407,6 +3057,9 @@ packages:
tiny-glob@0.2.9:
resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
+ tiny-invariant@1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
+
to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
@@ -3441,18 +3094,18 @@ packages:
resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==}
engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'}
- type-fest@4.22.0:
- resolution: {integrity: sha512-hxMO1k4ip1uTVGgPbs1hVpYyhz2P91A6tQyH2H9POx3U6T3MdhIcfY8L2hRu/LRmzPFdfduOS0RIDjFlP2urPw==}
- engines: {node: '>=16'}
+ type-fest@2.19.0:
+ resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
+ engines: {node: '>=12.20'}
typesafe-path@0.2.2:
resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==}
- typescript-auto-import-cache@0.3.2:
- resolution: {integrity: sha512-+laqe5SFL1vN62FPOOJSUDTZxtgsoOXjneYOXIpx5rQ4UMiN89NAtJLpqLqyebv9fgQ/IMeeTX+mQyRnwvJzvg==}
+ typescript-auto-import-cache@0.3.3:
+ resolution: {integrity: sha512-ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==}
- typescript@5.4.5:
- resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
+ typescript@5.5.4:
+ resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==}
engines: {node: '>=14.17'}
hasBin: true
@@ -3469,27 +3122,15 @@ packages:
unenv-nightly@1.10.0-1717606461.a117952:
resolution: {integrity: sha512-u3TfBX02WzbHTpaEfWEKwDijDSFAHcgXkayUZ+MVDrjhLFvgAJzFGTSTmwlEhwWi2exyRQey23ah9wELMM6etg==}
- unherit@3.0.1:
- resolution: {integrity: sha512-akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg==}
-
- unified@10.1.2:
- resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
-
unified@11.0.5:
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
unist-util-find-after@5.0.0:
resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==}
- unist-util-is@5.2.1:
- resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
-
unist-util-is@6.0.0:
resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
- unist-util-modify-children@3.1.1:
- resolution: {integrity: sha512-yXi4Lm+TG5VG+qvokP6tpnk+r1EPwyYL04JWDxLvgvPV40jANh7nm3udk65OOWquvbMDe+PL9+LmkxDpTv/7BA==}
-
unist-util-modify-children@4.0.0:
resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==}
@@ -3502,43 +3143,21 @@ packages:
unist-util-remove-position@5.0.0:
resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
- unist-util-stringify-position@3.0.3:
- resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
-
unist-util-stringify-position@4.0.0:
resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
- unist-util-visit-children@2.0.2:
- resolution: {integrity: sha512-+LWpMFqyUwLGpsQxpumsQ9o9DG2VGLFrpz+rpVXYIEdPy57GSy5HioC0g3bg/8WP9oCLlapQtklOzQ8uLS496Q==}
-
unist-util-visit-children@3.0.0:
resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==}
- unist-util-visit-parents@5.1.3:
- resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
-
unist-util-visit-parents@6.0.1:
resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
- unist-util-visit@4.1.2:
- resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
-
unist-util-visit@5.0.0:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
universal-user-agent@6.0.1:
resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
- universalify@2.0.1:
- resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
- engines: {node: '>= 10.0.0'}
-
- update-browserslist-db@1.0.16:
- resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
-
update-browserslist-db@1.1.0:
resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
hasBin: true
@@ -3555,23 +3174,14 @@ packages:
vfile-location@5.0.2:
resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==}
- vfile-message@3.1.4:
- resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
-
vfile-message@4.0.2:
resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
- vfile@5.3.7:
- resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
-
- vfile@6.0.1:
- resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
-
vfile@6.0.2:
resolution: {integrity: sha512-zND7NlS8rJYb/sPqkb13ZvbbUoExdbi4w3SfRrMq6R3FvnLQmmfpajJNITuuYm6AZ5uao9vy4BAos3EXBPf2rg==}
- vite@5.3.4:
- resolution: {integrity: sha512-Cw+7zL3ZG9/NZBB8C+8QbQZmR54GwqIz+WMI4b3JgdYJvX+ny9AjJXqkGQlDXSXRP9rP0B4tbciRMOVEKulVOA==}
+ vite@5.3.5:
+ resolution: {integrity: sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -3606,34 +3216,34 @@ packages:
vite:
optional: true
- volar-service-css@0.0.45:
- resolution: {integrity: sha512-f+AlUI1+kESbcZSVaNJVAnK0c/9Da5StoxzPqA5/8VqUHJWNdubWNnwG5xpFVTfgh6pgTcey3UBhBfHytFaIOg==}
+ volar-service-css@0.0.59:
+ resolution: {integrity: sha512-gLNjJnECbalPvQB7qeJjhkDN8sR5M3ItbVYjnyio61aHaWptIiXm/HfDahcQ2ApwmvWidkMWWegjGq5L0BENDA==}
peerDependencies:
- '@volar/language-service': ~2.2.3
+ '@volar/language-service': ~2.4.0-alpha.12
peerDependenciesMeta:
'@volar/language-service':
optional: true
- volar-service-emmet@0.0.45:
- resolution: {integrity: sha512-9nLXSDkR1vA/3fQkFEsSXAu3XovQxOpTkVG2jilQgfek/K1ZLkaA/WMhN/TtmPmQg4NxE9Ni6mA5udBQ5gVXIA==}
+ volar-service-emmet@0.0.59:
+ resolution: {integrity: sha512-6EynHcuMwMBETpK29TbZvIMmvzdVG+Tkokk9VWfZeI+SwDptk2tgdhEqiXXvIkqYNgbuu73Itp66lpH76cAU+Q==}
peerDependencies:
- '@volar/language-service': ~2.2.3
+ '@volar/language-service': ~2.4.0-alpha.12
peerDependenciesMeta:
'@volar/language-service':
optional: true
- volar-service-html@0.0.45:
- resolution: {integrity: sha512-tLTJqfy1v5C4nmeAsfekFIKPl4r4qDMyL0L9MWywr/EApZzPCsbeUGxCqdzxSMC2q7PMCfX2i167txDo+J0LVA==}
+ volar-service-html@0.0.59:
+ resolution: {integrity: sha512-hEXOsYpILDlITZxnqRLV9OepVWD63GZBsyjMxszwdzlxvGZjzbGcBBinJGGJRwFIV8djdJwnt91bkdg1V5tj6Q==}
peerDependencies:
- '@volar/language-service': ~2.2.3
+ '@volar/language-service': ~2.4.0-alpha.12
peerDependenciesMeta:
'@volar/language-service':
optional: true
- volar-service-prettier@0.0.45:
- resolution: {integrity: sha512-+mBS2EsDgp/kunKEBnHvhBwIQm5v2ahw4NKpKdg4sTpXy3UxqHt+Fq/wRYQ7Z8LlNVNRVfp75ThjM+w2zaZBAw==}
+ volar-service-prettier@0.0.59:
+ resolution: {integrity: sha512-FmBR4lsgFRGR3V0LnxZZal0WqdOJjuLL6mQSj4p57M15APtQwuocG/FiF+ONGFnwRXMOIBDBTCARdth+TKgL3A==}
peerDependencies:
- '@volar/language-service': ~2.2.3
+ '@volar/language-service': ~2.4.0-alpha.12
prettier: ^2.2 || ^3.0
peerDependenciesMeta:
'@volar/language-service':
@@ -3641,27 +3251,27 @@ packages:
prettier:
optional: true
- volar-service-typescript-twoslash-queries@0.0.45:
- resolution: {integrity: sha512-KrPUUvKggZgV9mrDpstCzmf20irgv0ooMv+FGDzIIQUkya+d2+nSS8Mx2h9FvsYgLccUVw5jU3Rhwhd3pv/7qg==}
+ volar-service-typescript-twoslash-queries@0.0.59:
+ resolution: {integrity: sha512-skm8e6yhCIkqLwJB6S9MqT5lO9LNFuMD3dYxKpmOZs1CKbXmCZZTmLfEaD5VkJae1xdleEDZFFTHl2O5HLjOGQ==}
peerDependencies:
- '@volar/language-service': ~2.2.3
+ '@volar/language-service': ~2.4.0-alpha.12
peerDependenciesMeta:
'@volar/language-service':
optional: true
- volar-service-typescript@0.0.45:
- resolution: {integrity: sha512-i/mMIIAMastJ2kgPo3qvX0Rrl7NyxhIYZ0ug/B4ambZcLPI1vzBgS2fmvyWX3jhBYHh8NmbAotFj+0Y9JtN47A==}
+ volar-service-typescript@0.0.59:
+ resolution: {integrity: sha512-VCOpfiu+lUo5lapWLB5L5vmQGtwzmNWn5MueV915eku7blpphmE+Z7hCNcL1NApn7AetXWhiblv8ZhmUx/dGIA==}
peerDependencies:
- '@volar/language-service': ~2.2.3
+ '@volar/language-service': ~2.4.0-alpha.12
peerDependenciesMeta:
'@volar/language-service':
optional: true
- vscode-css-languageservice@6.2.14:
- resolution: {integrity: sha512-5UPQ9Y1sUTnuMyaMBpO7LrBkqjhEJb5eAwdUlDp+Uez8lry+Tspnk3+3p2qWS4LlNsr4p3v9WkZxUf1ltgFpgw==}
+ vscode-css-languageservice@6.3.0:
+ resolution: {integrity: sha512-nU92imtkgzpCL0xikrIb8WvedV553F2BENzgz23wFuok/HLN5BeQmroMy26pUwFxV2eV8oNRmYCUv8iO7kSMhw==}
- vscode-html-languageservice@5.2.0:
- resolution: {integrity: sha512-cdNMhyw57/SQzgUUGSIMQ66jikqEN6nBNyhx5YuOyj9310+eY9zw8Q0cXpiKzDX8aHYFewQEXRnigl06j/TVwQ==}
+ vscode-html-languageservice@5.3.0:
+ resolution: {integrity: sha512-C4Z3KsP5Ih+fjHpiBc5jxmvCl+4iEwvXegIrzu2F5pktbWvQaBT3YkVPk8N+QlSSMk8oCG6PKtZ/Sq2YHb5e8g==}
vscode-jsonrpc@8.2.0:
resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==}
@@ -3692,10 +3302,6 @@ packages:
web-namespaces@2.0.1:
resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
- web-streams-polyfill@3.3.3:
- resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
- engines: {node: '>= 8'}
-
which-pm-runs@1.1.0:
resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
engines: {node: '>=4'}
@@ -3709,26 +3315,21 @@ packages:
engines: {node: '>= 8'}
hasBin: true
- widest-line@5.0.0:
- resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==}
- engines: {node: '>=18'}
-
- workerd@1.20240610.1:
- resolution: {integrity: sha512-Rtut5GrsODQMh6YU43b9WZ980Wd05Ov1/ds88pT/SoetmXFBvkBzdRfiHiATv+azmGX8KveE0i/Eqzk/yI01ug==}
- engines: {node: '>=16'}
- hasBin: true
+ widest-line@4.0.1:
+ resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
+ engines: {node: '>=12'}
- workerd@1.20240620.1:
- resolution: {integrity: sha512-Qoq+RrFNk4pvEO+kpJVn8uJ5TRE9YJx5jX5pC5LjdKlw1XeD8EdXt5k0TbByvWunZ4qgYIcF9lnVxhcDFo203g==}
+ workerd@1.20240725.0:
+ resolution: {integrity: sha512-VZwgejRcHsQ9FEPtc7v25ebINLAR+stL3q1hC1xByE+quskdoWpTXHkZwZ3IdSgvm9vPVbCbJw9p5mGnDByW2A==}
engines: {node: '>=16'}
hasBin: true
- wrangler@3.62.0:
- resolution: {integrity: sha512-TM1Bd8+GzxFw/JzwsC3i/Oss4LTWvIEWXXo1vZhx+7PHcsxdbnQGBBwPurHNJDSu2Pw22+2pCZiUGKexmgJksw==}
+ wrangler@3.68.0:
+ resolution: {integrity: sha512-gsIeglkh5nOn1mHJs0bf1pOq/DvIt+umjO/5a867IYYXaN4j/ar5cRR1+F5ue3S7uEjYCLIZZjs8ESiPTSEt+Q==}
engines: {node: '>=16.17.0'}
hasBin: true
peerDependencies:
- '@cloudflare/workers-types': ^4.20240620.0
+ '@cloudflare/workers-types': ^4.20240725.0
peerDependenciesMeta:
'@cloudflare/workers-types':
optional: true
@@ -3741,15 +3342,11 @@ packages:
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
engines: {node: '>=12'}
- wrap-ansi@9.0.0:
- resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
- engines: {node: '>=18'}
-
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- ws@8.17.0:
- resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==}
+ ws@8.18.0:
+ resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -3773,8 +3370,8 @@ packages:
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- yaml@2.4.3:
- resolution: {integrity: sha512-sntgmxj8o7DE7g/Qi60cqpLBA3HG3STcDA0kO+WfB05jEKhZMbY7umNm2rBpQvsmZ16/lPXCJGW2672dgOUkrg==}
+ yaml@2.4.2:
+ resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==}
engines: {node: '>= 14'}
hasBin: true
@@ -3800,8 +3397,8 @@ packages:
youch@3.3.3:
resolution: {integrity: sha512-qSFXUk3UZBLfggAW3dJKg0BMblG5biqSF8M34E06o5CSsZtH92u9Hqmj2RzGiHDi64fhe83+4tENFP2DB6t6ZA==}
- zod-to-json-schema@3.23.1:
- resolution: {integrity: sha512-oT9INvydob1XV0v1d2IadrR74rLtDInLvDFfAa1CG0Pmg/vxATk7I2gSelfj271mbzeM4Da0uuDQE/Nkj3DWNw==}
+ zod-to-json-schema@3.23.2:
+ resolution: {integrity: sha512-uSt90Gzc/tUfyNqxnjlfBs8W6WSGpNBv0rVsNxP/BVSMHMKGdthPYff4xtCHYloJGM0CFxFsb3NbC0eqPhfImw==}
peerDependencies:
zod: ^3.23.3
@@ -3855,134 +3452,63 @@ snapshots:
'@antfu/utils@0.7.8': {}
- '@astrojs/check@0.7.0(typescript@5.4.5)':
+ '@astrojs/check@0.7.0(typescript@5.5.4)':
dependencies:
- '@astrojs/language-server': 2.10.0(typescript@5.4.5)
+ '@astrojs/language-server': 2.13.1(typescript@5.5.4)
chokidar: 3.6.0
fast-glob: 3.3.2
kleur: 4.1.5
- typescript: 5.4.5
+ typescript: 5.5.4
yargs: 17.7.2
transitivePeerDependencies:
- prettier
- prettier-plugin-astro
- '@astrojs/cloudflare@11.0.1(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))':
+ '@astrojs/cloudflare@11.0.3(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))':
dependencies:
- '@astrojs/internal-helpers': 0.3.0
- '@astrojs/underscore-redirects': 0.3.3
- '@cloudflare/workers-types': 4.20240529.0
- astro: 4.11.6(@types/node@20.14.12)(typescript@5.4.5)
- esbuild: 0.19.12
+ '@astrojs/internal-helpers': 0.4.1
+ '@astrojs/underscore-redirects': 0.3.4
+ '@cloudflare/workers-types': 4.20240729.0
+ '@inox-tools/astro-when': 0.2.1(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))
+ astro: 4.13.1(@types/node@20.14.14)(typescript@5.5.4)
+ esbuild: 0.22.0
estree-walker: 3.0.3
- magic-string: 0.30.10
- miniflare: 3.20240610.1
+ magic-string: 0.30.11
+ miniflare: 3.20240725.0
tiny-glob: 0.2.9
- wrangler: 3.62.0(@cloudflare/workers-types@4.20240529.0)
+ wrangler: 3.68.0(@cloudflare/workers-types@4.20240729.0)
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- '@astrojs/compiler@2.8.0': {}
-
- '@astrojs/compiler@2.9.1': {}
-
- '@astrojs/db@0.11.7(@cloudflare/workers-types@4.20240529.0)':
- dependencies:
- '@astrojs/studio': 0.1.1
- '@libsql/client': 0.6.2
- async-listen: 3.0.1
- ci-info: 4.0.0
- deep-diff: 1.0.2
- drizzle-orm: 0.31.2(@cloudflare/workers-types@4.20240529.0)(@libsql/client@0.6.2)
- github-slugger: 2.0.0
- kleur: 4.1.5
- nanoid: 5.0.7
- open: 10.1.0
- ora: 8.0.1
- prompts: 2.4.2
- strip-ansi: 7.1.0
- yargs-parser: 21.1.1
- zod: 3.23.8
- transitivePeerDependencies:
- - '@aws-sdk/client-rds-data'
- - '@cloudflare/workers-types'
- - '@electric-sql/pglite'
- - '@neondatabase/serverless'
- - '@op-engineering/op-sqlite'
- - '@opentelemetry/api'
- - '@planetscale/database'
- - '@tidbcloud/serverless'
- - '@types/better-sqlite3'
- - '@types/pg'
- - '@types/react'
- - '@types/sql.js'
- - '@vercel/postgres'
- - '@xata.io/client'
- - better-sqlite3
- - bufferutil
- - bun-types
- - expo-sqlite
- - knex
- - kysely
- - mysql2
- - pg
- - postgres
- - react
- - sql.js
- - sqlite3
- - utf-8-validate
-
- '@astrojs/internal-helpers@0.3.0': {}
+ '@astrojs/compiler@2.10.1': {}
'@astrojs/internal-helpers@0.4.1': {}
- '@astrojs/language-server@2.10.0(typescript@5.4.5)':
+ '@astrojs/language-server@2.13.1(typescript@5.5.4)':
dependencies:
- '@astrojs/compiler': 2.8.0
- '@jridgewell/sourcemap-codec': 1.4.15
- '@volar/kit': 2.2.5(typescript@5.4.5)
- '@volar/language-core': 2.2.5
- '@volar/language-server': 2.2.5
- '@volar/language-service': 2.2.5
- '@volar/typescript': 2.2.5
+ '@astrojs/compiler': 2.10.1
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@volar/kit': 2.4.0-alpha.18(typescript@5.5.4)
+ '@volar/language-core': 2.4.0-alpha.18
+ '@volar/language-server': 2.4.0-alpha.18
+ '@volar/language-service': 2.4.0-alpha.18
+ '@volar/typescript': 2.4.0-alpha.18
fast-glob: 3.3.2
- volar-service-css: 0.0.45(@volar/language-service@2.2.5)
- volar-service-emmet: 0.0.45(@volar/language-service@2.2.5)
- volar-service-html: 0.0.45(@volar/language-service@2.2.5)
- volar-service-prettier: 0.0.45(@volar/language-service@2.2.5)
- volar-service-typescript: 0.0.45(@volar/language-service@2.2.5)
- volar-service-typescript-twoslash-queries: 0.0.45(@volar/language-service@2.2.5)
- vscode-html-languageservice: 5.2.0
+ muggle-string: 0.4.1
+ volar-service-css: 0.0.59(@volar/language-service@2.4.0-alpha.18)
+ volar-service-emmet: 0.0.59(@volar/language-service@2.4.0-alpha.18)
+ volar-service-html: 0.0.59(@volar/language-service@2.4.0-alpha.18)
+ volar-service-prettier: 0.0.59(@volar/language-service@2.4.0-alpha.18)
+ volar-service-typescript: 0.0.59(@volar/language-service@2.4.0-alpha.18)
+ volar-service-typescript-twoslash-queries: 0.0.59(@volar/language-service@2.4.0-alpha.18)
+ vscode-html-languageservice: 5.3.0
vscode-uri: 3.0.8
transitivePeerDependencies:
- typescript
- '@astrojs/markdown-remark@5.1.0':
- dependencies:
- '@astrojs/prism': 3.1.0
- github-slugger: 2.0.0
- hast-util-from-html: 2.0.1
- hast-util-to-text: 4.0.2
- import-meta-resolve: 4.1.0
- mdast-util-definitions: 6.0.0
- rehype-raw: 7.0.0
- rehype-stringify: 10.0.0
- remark-gfm: 4.0.0
- remark-parse: 11.0.0
- remark-rehype: 11.1.0
- remark-smartypants: 2.1.0
- shiki: 1.10.0
- unified: 11.0.5
- unist-util-remove-position: 5.0.0
- unist-util-visit: 5.0.0
- unist-util-visit-parents: 6.0.1
- vfile: 6.0.1
- transitivePeerDependencies:
- - supports-color
-
- '@astrojs/markdown-remark@5.1.1':
+ '@astrojs/markdown-remark@5.2.0':
dependencies:
'@astrojs/prism': 3.1.0
github-slugger: 2.0.0
@@ -3995,8 +3521,8 @@ snapshots:
remark-gfm: 4.0.0
remark-parse: 11.0.0
remark-rehype: 11.1.0
- remark-smartypants: 3.0.1
- shiki: 1.10.3
+ remark-smartypants: 3.0.2
+ shiki: 1.12.1
unified: 11.0.5
unist-util-remove-position: 5.0.0
unist-util-visit: 5.0.0
@@ -4005,12 +3531,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@astrojs/mdx@3.1.0(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))':
+ '@astrojs/mdx@3.1.3(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))':
dependencies:
- '@astrojs/markdown-remark': 5.1.0
+ '@astrojs/markdown-remark': 5.2.0
'@mdx-js/mdx': 3.0.1
- acorn: 8.12.0
- astro: 4.11.6(@types/node@20.14.12)(typescript@5.4.5)
+ acorn: 8.12.1
+ astro: 4.13.1(@types/node@20.14.14)(typescript@5.5.4)
es-module-lexer: 1.5.4
estree-util-visit: 2.0.0
github-slugger: 2.0.0
@@ -4019,10 +3545,10 @@ snapshots:
kleur: 4.1.5
rehype-raw: 7.0.0
remark-gfm: 4.0.0
- remark-smartypants: 3.0.1
+ remark-smartypants: 3.0.2
source-map: 0.7.4
unist-util-visit: 5.0.0
- vfile: 6.0.1
+ vfile: 6.0.2
transitivePeerDependencies:
- supports-color
@@ -4030,27 +3556,27 @@ snapshots:
dependencies:
prismjs: 1.29.0
- '@astrojs/sitemap@3.1.5':
+ '@astrojs/sitemap@3.1.6':
dependencies:
sitemap: 7.1.2
stream-replace-string: 2.0.0
zod: 3.23.8
- '@astrojs/starlight-tailwind@2.0.3(@astrojs/starlight@0.24.5(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5)))(@astrojs/tailwind@5.1.0(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))(tailwindcss@3.4.6))(tailwindcss@3.4.6)':
+ '@astrojs/starlight-tailwind@2.0.3(@astrojs/starlight@0.25.3(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4)))(@astrojs/tailwind@5.1.0(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))(tailwindcss@3.4.6))(tailwindcss@3.4.6)':
dependencies:
- '@astrojs/starlight': 0.24.5(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))
- '@astrojs/tailwind': 5.1.0(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))(tailwindcss@3.4.6)
+ '@astrojs/starlight': 0.25.3(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))
+ '@astrojs/tailwind': 5.1.0(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))(tailwindcss@3.4.6)
tailwindcss: 3.4.6
- '@astrojs/starlight@0.24.5(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))':
+ '@astrojs/starlight@0.25.3(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))':
dependencies:
- '@astrojs/mdx': 3.1.0(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))
- '@astrojs/sitemap': 3.1.5
+ '@astrojs/mdx': 3.1.3(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))
+ '@astrojs/sitemap': 3.1.6
'@pagefind/default-ui': 1.1.0
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
- astro: 4.11.6(@types/node@20.14.12)(typescript@5.4.5)
- astro-expressive-code: 0.35.3(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))
+ astro: 4.13.1(@types/node@20.14.14)(typescript@5.5.4)
+ astro-expressive-code: 0.35.3(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))
bcp-47: 2.1.0
hast-util-from-html: 2.0.1
hast-util-select: 6.0.2
@@ -4058,28 +3584,23 @@ snapshots:
hastscript: 9.0.0
mdast-util-directive: 3.0.0
mdast-util-to-markdown: 2.1.0
+ mdast-util-to-string: 4.0.0
pagefind: 1.1.0
rehype: 13.0.1
rehype-format: 5.0.0
remark-directive: 3.0.0
unified: 11.0.5
unist-util-visit: 5.0.0
- vfile: 6.0.1
+ vfile: 6.0.2
transitivePeerDependencies:
- supports-color
- '@astrojs/studio@0.1.1':
- dependencies:
- ci-info: 4.0.0
- kleur: 4.1.5
- ora: 8.0.1
-
- '@astrojs/tailwind@5.1.0(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))(tailwindcss@3.4.6)':
+ '@astrojs/tailwind@5.1.0(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))(tailwindcss@3.4.6)':
dependencies:
- astro: 4.11.6(@types/node@20.14.12)(typescript@5.4.5)
- autoprefixer: 10.4.19(postcss@8.4.38)
- postcss: 8.4.38
- postcss-load-config: 4.0.2(postcss@8.4.38)
+ astro: 4.13.1(@types/node@20.14.14)(typescript@5.5.4)
+ autoprefixer: 10.4.19(postcss@8.4.40)
+ postcss: 8.4.40
+ postcss-load-config: 4.0.2(postcss@8.4.40)
tailwindcss: 3.4.6
transitivePeerDependencies:
- ts-node
@@ -4087,7 +3608,7 @@ snapshots:
'@astrojs/telemetry@3.1.0':
dependencies:
ci-info: 4.0.0
- debug: 4.3.5
+ debug: 4.3.6
dlv: 1.1.3
dset: 3.1.3
is-docker: 3.0.0
@@ -4096,108 +3617,90 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@astrojs/underscore-redirects@0.3.3': {}
+ '@astrojs/underscore-redirects@0.3.4': {}
'@babel/code-frame@7.24.7':
dependencies:
'@babel/highlight': 7.24.7
picocolors: 1.0.1
- '@babel/compat-data@7.24.9': {}
+ '@babel/compat-data@7.25.2': {}
- '@babel/core@7.24.9':
+ '@babel/core@7.25.2':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
- '@babel/helpers': 7.24.8
- '@babel/parser': 7.24.8
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/generator': 7.25.0
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helpers': 7.25.0
+ '@babel/parser': 7.25.3
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.3
+ '@babel/types': 7.25.2
convert-source-map: 2.0.0
- debug: 4.3.5
+ debug: 4.3.6
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.24.10':
+ '@babel/generator@7.25.0':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.2
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.2
- '@babel/helper-compilation-targets@7.24.8':
+ '@babel/helper-compilation-targets@7.25.2':
dependencies:
- '@babel/compat-data': 7.24.9
+ '@babel/compat-data': 7.25.2
'@babel/helper-validator-option': 7.24.8
- browserslist: 4.23.2
+ browserslist: 4.23.3
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-environment-visitor@7.24.7':
- dependencies:
- '@babel/types': 7.24.9
-
- '@babel/helper-function-name@7.24.7':
- dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.9
-
- '@babel/helper-hoist-variables@7.24.7':
- dependencies:
- '@babel/types': 7.24.9
-
'@babel/helper-module-imports@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.3
+ '@babel/types': 7.25.2
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.9(@babel/core@7.24.9)':
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-environment-visitor': 7.24.7
+ '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
'@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.3
transitivePeerDependencies:
- supports-color
- '@babel/helper-plugin-utils@7.24.7': {}
+ '@babel/helper-plugin-utils@7.24.8': {}
'@babel/helper-simple-access@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.3
+ '@babel/types': 7.25.2
transitivePeerDependencies:
- supports-color
- '@babel/helper-split-export-declaration@7.24.7':
- dependencies:
- '@babel/types': 7.24.9
-
'@babel/helper-string-parser@7.24.8': {}
'@babel/helper-validator-identifier@7.24.7': {}
'@babel/helper-validator-option@7.24.8': {}
- '@babel/helpers@7.24.8':
+ '@babel/helpers@7.25.0':
dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.9
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.2
'@babel/highlight@7.24.7':
dependencies:
@@ -4206,48 +3709,45 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.0.1
- '@babel/parser@7.24.8':
+ '@babel/parser@7.25.3':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.2
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
- '@babel/types': 7.24.9
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/types': 7.25.2
transitivePeerDependencies:
- supports-color
- '@babel/template@7.24.7':
+ '@babel/template@7.25.0':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/parser': 7.25.3
+ '@babel/types': 7.25.2
- '@babel/traverse@7.24.8':
+ '@babel/traverse@7.25.3':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
- debug: 4.3.5
+ '@babel/generator': 7.25.0
+ '@babel/parser': 7.25.3
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.2
+ debug: 4.3.6
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.24.9':
+ '@babel/types@7.25.2':
dependencies:
'@babel/helper-string-parser': 7.24.8
'@babel/helper-validator-identifier': 7.24.7
@@ -4288,52 +3788,26 @@ snapshots:
'@biomejs/cli-win32-x64@1.8.3':
optional: true
- '@clack/core@0.3.4':
- dependencies:
- picocolors: 1.0.1
- sisteransi: 1.0.5
-
- '@clack/prompts@0.7.0':
- dependencies:
- '@clack/core': 0.3.4
- picocolors: 1.0.1
- sisteransi: 1.0.5
-
'@cloudflare/kv-asset-handler@0.3.4':
dependencies:
mime: 3.0.0
- '@cloudflare/workerd-darwin-64@1.20240610.1':
- optional: true
-
- '@cloudflare/workerd-darwin-64@1.20240620.1':
- optional: true
-
- '@cloudflare/workerd-darwin-arm64@1.20240610.1':
- optional: true
-
- '@cloudflare/workerd-darwin-arm64@1.20240620.1':
- optional: true
-
- '@cloudflare/workerd-linux-64@1.20240610.1':
- optional: true
-
- '@cloudflare/workerd-linux-64@1.20240620.1':
+ '@cloudflare/workerd-darwin-64@1.20240725.0':
optional: true
- '@cloudflare/workerd-linux-arm64@1.20240610.1':
+ '@cloudflare/workerd-darwin-arm64@1.20240725.0':
optional: true
- '@cloudflare/workerd-linux-arm64@1.20240620.1':
+ '@cloudflare/workerd-linux-64@1.20240725.0':
optional: true
- '@cloudflare/workerd-windows-64@1.20240610.1':
+ '@cloudflare/workerd-linux-arm64@1.20240725.0':
optional: true
- '@cloudflare/workerd-windows-64@1.20240620.1':
+ '@cloudflare/workerd-windows-64@1.20240725.0':
optional: true
- '@cloudflare/workers-types@4.20240529.0': {}
+ '@cloudflare/workers-types@4.20240729.0': {}
'@cspotcode/source-map-support@0.8.1':
dependencies:
@@ -4364,7 +3838,7 @@ snapshots:
'@emmetio/stream-reader@2.2.0': {}
- '@emnapi/runtime@1.2.0':
+ '@emnapi/runtime@1.1.1':
dependencies:
tslib: 2.6.2
optional: true
@@ -4379,210 +3853,213 @@ snapshots:
escape-string-regexp: 4.0.0
rollup-plugin-node-polyfills: 0.2.1
- '@esbuild/aix-ppc64@0.19.12':
+ '@esbuild/aix-ppc64@0.21.5':
optional: true
- '@esbuild/aix-ppc64@0.21.5':
+ '@esbuild/aix-ppc64@0.22.0':
optional: true
'@esbuild/android-arm64@0.17.19':
optional: true
- '@esbuild/android-arm64@0.19.12':
+ '@esbuild/android-arm64@0.21.5':
optional: true
- '@esbuild/android-arm64@0.21.5':
+ '@esbuild/android-arm64@0.22.0':
optional: true
'@esbuild/android-arm@0.17.19':
optional: true
- '@esbuild/android-arm@0.19.12':
+ '@esbuild/android-arm@0.21.5':
optional: true
- '@esbuild/android-arm@0.21.5':
+ '@esbuild/android-arm@0.22.0':
optional: true
'@esbuild/android-x64@0.17.19':
optional: true
- '@esbuild/android-x64@0.19.12':
+ '@esbuild/android-x64@0.21.5':
optional: true
- '@esbuild/android-x64@0.21.5':
+ '@esbuild/android-x64@0.22.0':
optional: true
'@esbuild/darwin-arm64@0.17.19':
optional: true
- '@esbuild/darwin-arm64@0.19.12':
+ '@esbuild/darwin-arm64@0.21.5':
optional: true
- '@esbuild/darwin-arm64@0.21.5':
+ '@esbuild/darwin-arm64@0.22.0':
optional: true
'@esbuild/darwin-x64@0.17.19':
optional: true
- '@esbuild/darwin-x64@0.19.12':
+ '@esbuild/darwin-x64@0.21.5':
optional: true
- '@esbuild/darwin-x64@0.21.5':
+ '@esbuild/darwin-x64@0.22.0':
optional: true
'@esbuild/freebsd-arm64@0.17.19':
optional: true
- '@esbuild/freebsd-arm64@0.19.12':
+ '@esbuild/freebsd-arm64@0.21.5':
optional: true
- '@esbuild/freebsd-arm64@0.21.5':
+ '@esbuild/freebsd-arm64@0.22.0':
optional: true
'@esbuild/freebsd-x64@0.17.19':
optional: true
- '@esbuild/freebsd-x64@0.19.12':
+ '@esbuild/freebsd-x64@0.21.5':
optional: true
- '@esbuild/freebsd-x64@0.21.5':
+ '@esbuild/freebsd-x64@0.22.0':
optional: true
'@esbuild/linux-arm64@0.17.19':
optional: true
- '@esbuild/linux-arm64@0.19.12':
+ '@esbuild/linux-arm64@0.21.5':
optional: true
- '@esbuild/linux-arm64@0.21.5':
+ '@esbuild/linux-arm64@0.22.0':
optional: true
'@esbuild/linux-arm@0.17.19':
optional: true
- '@esbuild/linux-arm@0.19.12':
+ '@esbuild/linux-arm@0.21.5':
optional: true
- '@esbuild/linux-arm@0.21.5':
+ '@esbuild/linux-arm@0.22.0':
optional: true
'@esbuild/linux-ia32@0.17.19':
optional: true
- '@esbuild/linux-ia32@0.19.12':
+ '@esbuild/linux-ia32@0.21.5':
optional: true
- '@esbuild/linux-ia32@0.21.5':
+ '@esbuild/linux-ia32@0.22.0':
optional: true
'@esbuild/linux-loong64@0.17.19':
optional: true
- '@esbuild/linux-loong64@0.19.12':
+ '@esbuild/linux-loong64@0.21.5':
optional: true
- '@esbuild/linux-loong64@0.21.5':
+ '@esbuild/linux-loong64@0.22.0':
optional: true
'@esbuild/linux-mips64el@0.17.19':
optional: true
- '@esbuild/linux-mips64el@0.19.12':
+ '@esbuild/linux-mips64el@0.21.5':
optional: true
- '@esbuild/linux-mips64el@0.21.5':
+ '@esbuild/linux-mips64el@0.22.0':
optional: true
'@esbuild/linux-ppc64@0.17.19':
optional: true
- '@esbuild/linux-ppc64@0.19.12':
+ '@esbuild/linux-ppc64@0.21.5':
optional: true
- '@esbuild/linux-ppc64@0.21.5':
+ '@esbuild/linux-ppc64@0.22.0':
optional: true
'@esbuild/linux-riscv64@0.17.19':
optional: true
- '@esbuild/linux-riscv64@0.19.12':
+ '@esbuild/linux-riscv64@0.21.5':
optional: true
- '@esbuild/linux-riscv64@0.21.5':
+ '@esbuild/linux-riscv64@0.22.0':
optional: true
'@esbuild/linux-s390x@0.17.19':
optional: true
- '@esbuild/linux-s390x@0.19.12':
+ '@esbuild/linux-s390x@0.21.5':
optional: true
- '@esbuild/linux-s390x@0.21.5':
+ '@esbuild/linux-s390x@0.22.0':
optional: true
'@esbuild/linux-x64@0.17.19':
optional: true
- '@esbuild/linux-x64@0.19.12':
+ '@esbuild/linux-x64@0.21.5':
optional: true
- '@esbuild/linux-x64@0.21.5':
+ '@esbuild/linux-x64@0.22.0':
optional: true
'@esbuild/netbsd-x64@0.17.19':
optional: true
- '@esbuild/netbsd-x64@0.19.12':
+ '@esbuild/netbsd-x64@0.21.5':
optional: true
- '@esbuild/netbsd-x64@0.21.5':
+ '@esbuild/netbsd-x64@0.22.0':
optional: true
- '@esbuild/openbsd-x64@0.17.19':
+ '@esbuild/openbsd-arm64@0.22.0':
optional: true
- '@esbuild/openbsd-x64@0.19.12':
+ '@esbuild/openbsd-x64@0.17.19':
optional: true
'@esbuild/openbsd-x64@0.21.5':
optional: true
- '@esbuild/sunos-x64@0.17.19':
+ '@esbuild/openbsd-x64@0.22.0':
optional: true
- '@esbuild/sunos-x64@0.19.12':
+ '@esbuild/sunos-x64@0.17.19':
optional: true
'@esbuild/sunos-x64@0.21.5':
optional: true
- '@esbuild/win32-arm64@0.17.19':
+ '@esbuild/sunos-x64@0.22.0':
optional: true
- '@esbuild/win32-arm64@0.19.12':
+ '@esbuild/win32-arm64@0.17.19':
optional: true
'@esbuild/win32-arm64@0.21.5':
optional: true
- '@esbuild/win32-ia32@0.17.19':
+ '@esbuild/win32-arm64@0.22.0':
optional: true
- '@esbuild/win32-ia32@0.19.12':
+ '@esbuild/win32-ia32@0.17.19':
optional: true
'@esbuild/win32-ia32@0.21.5':
optional: true
- '@esbuild/win32-x64@0.17.19':
+ '@esbuild/win32-ia32@0.22.0':
optional: true
- '@esbuild/win32-x64@0.19.12':
+ '@esbuild/win32-x64@0.17.19':
optional: true
'@esbuild/win32-x64@0.21.5':
optional: true
+ '@esbuild/win32-x64@0.22.0':
+ optional: true
+
'@expressive-code/core@0.35.3':
dependencies:
'@ctrl/tinycolor': 4.1.0
@@ -4590,8 +4067,8 @@ snapshots:
hast-util-to-html: 9.0.1
hast-util-to-text: 4.0.2
hastscript: 9.0.0
- postcss: 8.4.39
- postcss-nested: 6.0.1(postcss@8.4.39)
+ postcss: 8.4.40
+ postcss-nested: 6.0.1(postcss@8.4.40)
unist-util-visit: 5.0.0
unist-util-visit-parents: 6.0.1
@@ -4602,7 +4079,7 @@ snapshots:
'@expressive-code/plugin-shiki@0.35.3':
dependencies:
'@expressive-code/core': 0.35.3
- shiki: 1.10.0
+ shiki: 1.12.1
'@expressive-code/plugin-text-markers@0.35.3':
dependencies:
@@ -4625,7 +4102,7 @@ snapshots:
'@iconify/tools@3.0.7':
dependencies:
'@iconify/types': 2.0.0
- '@iconify/utils': 2.1.24
+ '@iconify/utils': 2.1.23
'@types/cheerio': 0.22.35
'@types/tar': 6.1.13
cheerio: 1.0.0-rc.12
@@ -4639,24 +4116,24 @@ snapshots:
'@iconify/types@2.0.0': {}
- '@iconify/utils@2.1.24':
+ '@iconify/utils@2.1.23':
dependencies:
'@antfu/install-pkg': 0.1.1
'@antfu/utils': 0.7.8
'@iconify/types': 2.0.0
- debug: 4.3.5
+ debug: 4.3.6
kolorist: 1.8.0
local-pkg: 0.5.0
mlly: 1.7.0
transitivePeerDependencies:
- supports-color
- '@img/sharp-darwin-arm64@0.33.4':
+ '@img/sharp-darwin-arm64@0.33.3':
optionalDependencies:
'@img/sharp-libvips-darwin-arm64': 1.0.2
optional: true
- '@img/sharp-darwin-x64@0.33.4':
+ '@img/sharp-darwin-x64@0.33.3':
optionalDependencies:
'@img/sharp-libvips-darwin-x64': 1.0.2
optional: true
@@ -4685,47 +4162,52 @@ snapshots:
'@img/sharp-libvips-linuxmusl-x64@1.0.2':
optional: true
- '@img/sharp-linux-arm64@0.33.4':
+ '@img/sharp-linux-arm64@0.33.3':
optionalDependencies:
'@img/sharp-libvips-linux-arm64': 1.0.2
optional: true
- '@img/sharp-linux-arm@0.33.4':
+ '@img/sharp-linux-arm@0.33.3':
optionalDependencies:
'@img/sharp-libvips-linux-arm': 1.0.2
optional: true
- '@img/sharp-linux-s390x@0.33.4':
+ '@img/sharp-linux-s390x@0.33.3':
optionalDependencies:
'@img/sharp-libvips-linux-s390x': 1.0.2
optional: true
- '@img/sharp-linux-x64@0.33.4':
+ '@img/sharp-linux-x64@0.33.3':
optionalDependencies:
'@img/sharp-libvips-linux-x64': 1.0.2
optional: true
- '@img/sharp-linuxmusl-arm64@0.33.4':
+ '@img/sharp-linuxmusl-arm64@0.33.3':
optionalDependencies:
'@img/sharp-libvips-linuxmusl-arm64': 1.0.2
optional: true
- '@img/sharp-linuxmusl-x64@0.33.4':
+ '@img/sharp-linuxmusl-x64@0.33.3':
optionalDependencies:
'@img/sharp-libvips-linuxmusl-x64': 1.0.2
optional: true
- '@img/sharp-wasm32@0.33.4':
+ '@img/sharp-wasm32@0.33.3':
dependencies:
- '@emnapi/runtime': 1.2.0
+ '@emnapi/runtime': 1.1.1
optional: true
- '@img/sharp-win32-ia32@0.33.4':
+ '@img/sharp-win32-ia32@0.33.3':
optional: true
- '@img/sharp-win32-x64@0.33.4':
+ '@img/sharp-win32-x64@0.33.3':
optional: true
+ '@inox-tools/astro-when@0.2.1(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))':
+ dependencies:
+ astro: 4.13.1(@types/node@20.14.14)(typescript@5.5.4)
+ astro-integration-kit: 0.16.0(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4))
+
'@isaacs/cliui@8.0.2':
dependencies:
string-width: 5.1.2
@@ -4735,89 +4217,27 @@ snapshots:
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
- '@johnsoncodehk/vscode-html-languageservice@5.2.0-34a5462':
- dependencies:
- '@vscode/l10n': 0.0.18
- vscode-languageserver-textdocument: 1.0.11
- vscode-languageserver-types: 3.17.5
- vscode-uri: 3.0.8
-
'@jridgewell/gen-mapping@0.3.5':
dependencies:
'@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping': 0.3.25
'@jridgewell/resolve-uri@3.1.2': {}
'@jridgewell/set-array@1.2.1': {}
- '@jridgewell/sourcemap-codec@1.4.15': {}
+ '@jridgewell/sourcemap-codec@1.5.0': {}
'@jridgewell/trace-mapping@0.3.25':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping@0.3.9':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
-
- '@libsql/client@0.6.2':
- dependencies:
- '@libsql/core': 0.6.2
- '@libsql/hrana-client': 0.6.0
- js-base64: 3.7.7
- libsql: 0.3.18
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
- '@libsql/core@0.6.2':
- dependencies:
- js-base64: 3.7.7
-
- '@libsql/darwin-arm64@0.3.18':
- optional: true
-
- '@libsql/darwin-x64@0.3.18':
- optional: true
-
- '@libsql/hrana-client@0.6.0':
- dependencies:
- '@libsql/isomorphic-fetch': 0.2.1
- '@libsql/isomorphic-ws': 0.1.5
- js-base64: 3.7.7
- node-fetch: 3.3.2
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
- '@libsql/isomorphic-fetch@0.2.1': {}
-
- '@libsql/isomorphic-ws@0.1.5':
- dependencies:
- '@types/ws': 8.5.10
- ws: 8.17.0
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
- '@libsql/linux-arm64-gnu@0.3.18':
- optional: true
-
- '@libsql/linux-arm64-musl@0.3.18':
- optional: true
-
- '@libsql/linux-x64-gnu@0.3.18':
- optional: true
-
- '@libsql/linux-x64-musl@0.3.18':
- optional: true
-
- '@libsql/win32-x64-msvc@0.3.18':
- optional: true
+ '@jridgewell/sourcemap-codec': 1.5.0
'@mdx-js/mdx@3.0.1':
dependencies:
@@ -4843,45 +4263,43 @@ snapshots:
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.2
transitivePeerDependencies:
- supports-color
- '@moonrepo/cli@1.26.7':
+ '@moonrepo/cli@1.27.5':
dependencies:
detect-libc: 2.0.3
optionalDependencies:
- '@moonrepo/core-linux-arm64-gnu': 1.26.7
- '@moonrepo/core-linux-arm64-musl': 1.26.7
- '@moonrepo/core-linux-x64-gnu': 1.26.7
- '@moonrepo/core-linux-x64-musl': 1.26.7
- '@moonrepo/core-macos-arm64': 1.26.7
- '@moonrepo/core-macos-x64': 1.26.7
- '@moonrepo/core-windows-x64-msvc': 1.26.7
+ '@moonrepo/core-linux-arm64-gnu': 1.27.5
+ '@moonrepo/core-linux-arm64-musl': 1.27.5
+ '@moonrepo/core-linux-x64-gnu': 1.27.5
+ '@moonrepo/core-linux-x64-musl': 1.27.5
+ '@moonrepo/core-macos-arm64': 1.27.5
+ '@moonrepo/core-macos-x64': 1.27.5
+ '@moonrepo/core-windows-x64-msvc': 1.27.5
- '@moonrepo/core-linux-arm64-gnu@1.26.7':
+ '@moonrepo/core-linux-arm64-gnu@1.27.5':
optional: true
- '@moonrepo/core-linux-arm64-musl@1.26.7':
+ '@moonrepo/core-linux-arm64-musl@1.27.5':
optional: true
- '@moonrepo/core-linux-x64-gnu@1.26.7':
+ '@moonrepo/core-linux-x64-gnu@1.27.5':
optional: true
- '@moonrepo/core-linux-x64-musl@1.26.7':
+ '@moonrepo/core-linux-x64-musl@1.27.5':
optional: true
- '@moonrepo/core-macos-arm64@1.26.7':
+ '@moonrepo/core-macos-arm64@1.27.5':
optional: true
- '@moonrepo/core-macos-x64@1.26.7':
+ '@moonrepo/core-macos-x64@1.27.5':
optional: true
- '@moonrepo/core-windows-x64-msvc@1.26.7':
+ '@moonrepo/core-windows-x64-msvc@1.27.5':
optional: true
- '@neon-rs/load@0.0.4': {}
-
'@nodelib/fs.scandir@2.1.5':
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -4983,57 +4401,55 @@ snapshots:
'@pkgjs/parseargs@0.11.0':
optional: true
- '@rollup/rollup-android-arm-eabi@4.18.0':
+ '@rollup/rollup-android-arm-eabi@4.17.2':
optional: true
- '@rollup/rollup-android-arm64@4.18.0':
+ '@rollup/rollup-android-arm64@4.17.2':
optional: true
- '@rollup/rollup-darwin-arm64@4.18.0':
+ '@rollup/rollup-darwin-arm64@4.17.2':
optional: true
- '@rollup/rollup-darwin-x64@4.18.0':
+ '@rollup/rollup-darwin-x64@4.17.2':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.18.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.17.2':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.18.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.17.2':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.18.0':
+ '@rollup/rollup-linux-arm64-gnu@4.17.2':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.18.0':
+ '@rollup/rollup-linux-arm64-musl@4.17.2':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.17.2':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.18.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.17.2':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.18.0':
+ '@rollup/rollup-linux-s390x-gnu@4.17.2':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.18.0':
+ '@rollup/rollup-linux-x64-gnu@4.17.2':
optional: true
- '@rollup/rollup-linux-x64-musl@4.18.0':
+ '@rollup/rollup-linux-x64-musl@4.17.2':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.18.0':
+ '@rollup/rollup-win32-arm64-msvc@4.17.2':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.18.0':
+ '@rollup/rollup-win32-ia32-msvc@4.17.2':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.18.0':
+ '@rollup/rollup-win32-x64-msvc@4.17.2':
optional: true
- '@shikijs/core@1.10.0': {}
-
- '@shikijs/core@1.10.3':
+ '@shikijs/core@1.12.1':
dependencies:
'@types/hast': 3.0.4
@@ -5058,28 +4474,28 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/parser': 7.25.3
+ '@babel/types': 7.25.2
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.20.6
+ '@types/babel__traverse': 7.20.5
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.2
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/parser': 7.25.3
+ '@babel/types': 7.25.2
- '@types/babel__traverse@7.20.6':
+ '@types/babel__traverse@7.20.5':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.2
'@types/cheerio@0.22.35':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.14.14
'@types/cookie@0.6.0': {}
@@ -5105,21 +4521,17 @@ snapshots:
'@types/ms@0.7.34': {}
- '@types/nlcst@1.0.4':
- dependencies:
- '@types/unist': 2.0.10
-
'@types/nlcst@2.0.3':
dependencies:
'@types/unist': 3.0.2
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.14.14
'@types/node@17.0.45': {}
- '@types/node@20.14.12':
+ '@types/node@20.14.14':
dependencies:
undici-types: 5.26.5
@@ -5129,48 +4541,43 @@ snapshots:
'@types/sax@1.2.7':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.14.14
'@types/tar@6.1.13':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.14.14
minipass: 4.2.8
'@types/unist@2.0.10': {}
'@types/unist@3.0.2': {}
- '@types/ws@8.5.10':
- dependencies:
- '@types/node': 20.14.12
-
'@types/yauzl@2.10.3':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.14.14
optional: true
'@ungap/structured-clone@1.2.0': {}
- '@volar/kit@2.2.5(typescript@5.4.5)':
+ '@volar/kit@2.4.0-alpha.18(typescript@5.5.4)':
dependencies:
- '@volar/language-service': 2.2.5
- '@volar/typescript': 2.2.5
+ '@volar/language-service': 2.4.0-alpha.18
+ '@volar/typescript': 2.4.0-alpha.18
typesafe-path: 0.2.2
- typescript: 5.4.5
+ typescript: 5.5.4
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
- '@volar/language-core@2.2.5':
+ '@volar/language-core@2.4.0-alpha.18':
dependencies:
- '@volar/source-map': 2.2.5
+ '@volar/source-map': 2.4.0-alpha.18
- '@volar/language-server@2.2.5':
+ '@volar/language-server@2.4.0-alpha.18':
dependencies:
- '@volar/language-core': 2.2.5
- '@volar/language-service': 2.2.5
- '@volar/snapshot-document': 2.2.5
- '@volar/typescript': 2.2.5
- '@vscode/l10n': 0.0.16
+ '@volar/language-core': 2.4.0-alpha.18
+ '@volar/language-service': 2.4.0-alpha.18
+ '@volar/snapshot-document': 2.4.0-alpha.18
+ '@volar/typescript': 2.4.0-alpha.18
path-browserify: 1.0.1
request-light: 0.7.0
vscode-languageserver: 9.0.1
@@ -5178,26 +4585,25 @@ snapshots:
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
- '@volar/language-service@2.2.5':
+ '@volar/language-service@2.4.0-alpha.18':
dependencies:
- '@volar/language-core': 2.2.5
+ '@volar/language-core': 2.4.0-alpha.18
vscode-languageserver-protocol: 3.17.5
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
- '@volar/snapshot-document@2.2.5':
+ '@volar/snapshot-document@2.4.0-alpha.18':
dependencies:
vscode-languageserver-protocol: 3.17.5
vscode-languageserver-textdocument: 1.0.11
- '@volar/source-map@2.2.5':
- dependencies:
- muggle-string: 0.4.1
+ '@volar/source-map@2.4.0-alpha.18': {}
- '@volar/typescript@2.2.5':
+ '@volar/typescript@2.4.0-alpha.18':
dependencies:
- '@volar/language-core': 2.2.5
+ '@volar/language-core': 2.4.0-alpha.18
path-browserify: 1.0.1
+ vscode-uri: 3.0.8
'@vscode/emmet-helper@2.9.3':
dependencies:
@@ -5207,20 +4613,14 @@ snapshots:
vscode-languageserver-types: 3.17.5
vscode-uri: 2.1.2
- '@vscode/l10n@0.0.16': {}
-
'@vscode/l10n@0.0.18': {}
- acorn-jsx@5.3.2(acorn@8.12.0):
+ acorn-jsx@5.3.2(acorn@8.12.1):
dependencies:
- acorn: 8.12.0
+ acorn: 8.12.1
acorn-walk@8.3.2: {}
- acorn@8.11.3: {}
-
- acorn@8.12.0: {}
-
acorn@8.12.1: {}
ansi-align@3.0.1:
@@ -5266,46 +4666,55 @@ snapshots:
dependencies:
printable-characters: 1.0.42
+ ast-types@0.16.1:
+ dependencies:
+ tslib: 2.6.2
+
astring@1.8.6: {}
- astro-expressive-code@0.35.3(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5)):
+ astro-expressive-code@0.35.3(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4)):
dependencies:
- astro: 4.11.6(@types/node@20.14.12)(typescript@5.4.5)
+ astro: 4.13.1(@types/node@20.14.14)(typescript@5.5.4)
rehype-expressive-code: 0.35.3
astro-icon@1.1.0:
dependencies:
'@iconify/tools': 3.0.7
'@iconify/types': 2.0.0
- '@iconify/utils': 2.1.24
+ '@iconify/utils': 2.1.23
transitivePeerDependencies:
- supports-color
- astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5):
+ astro-integration-kit@0.16.0(astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4)):
+ dependencies:
+ astro: 4.13.1(@types/node@20.14.14)(typescript@5.5.4)
+ pathe: 1.1.2
+ recast: 0.23.9
+
+ astro@4.13.1(@types/node@20.14.14)(typescript@5.5.4):
dependencies:
- '@astrojs/compiler': 2.9.1
+ '@astrojs/compiler': 2.10.1
'@astrojs/internal-helpers': 0.4.1
- '@astrojs/markdown-remark': 5.1.1
+ '@astrojs/markdown-remark': 5.2.0
'@astrojs/telemetry': 3.1.0
- '@babel/core': 7.24.9
- '@babel/generator': 7.24.10
- '@babel/parser': 7.24.8
- '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.9)
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/core': 7.25.2
+ '@babel/generator': 7.25.0
+ '@babel/parser': 7.25.3
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2)
+ '@babel/traverse': 7.25.3
+ '@babel/types': 7.25.2
'@types/babel__core': 7.20.5
'@types/cookie': 0.6.0
acorn: 8.12.1
aria-query: 5.3.0
axobject-query: 4.1.0
- boxen: 8.0.0
- chokidar: 3.6.0
+ boxen: 7.1.1
ci-info: 4.0.0
clsx: 2.1.1
common-ancestor-path: 1.0.1
cookie: 0.6.0
cssesc: 3.0.0
- debug: 4.3.5
+ debug: 4.3.6
deterministic-object-hash: 2.0.2
devalue: 5.0.0
diff: 5.2.0
@@ -5323,7 +4732,7 @@ snapshots:
http-cache-semantics: 4.1.1
js-yaml: 4.1.0
kleur: 4.1.5
- magic-string: 0.30.10
+ magic-string: 0.30.11
mrmime: 2.0.0
ora: 8.0.1
p-limit: 6.1.0
@@ -5332,21 +4741,21 @@ snapshots:
preferred-pm: 4.0.0
prompts: 2.4.2
rehype: 13.0.1
- semver: 7.6.2
- shiki: 1.10.3
+ semver: 7.6.3
+ shiki: 1.12.1
string-width: 7.2.0
strip-ansi: 7.1.0
- tsconfck: 3.1.1(typescript@5.4.5)
+ tsconfck: 3.1.1(typescript@5.5.4)
unist-util-visit: 5.0.0
vfile: 6.0.2
- vite: 5.3.4(@types/node@20.14.12)
- vitefu: 0.2.5(vite@5.3.4(@types/node@20.14.12))
+ vite: 5.3.5(@types/node@20.14.14)
+ vitefu: 0.2.5(vite@5.3.5(@types/node@20.14.14))
which-pm: 3.0.0
yargs-parser: 21.1.1
zod: 3.23.8
- zod-to-json-schema: 3.23.1(zod@3.23.8)
+ zod-to-json-schema: 3.23.2(zod@3.23.8)
optionalDependencies:
- sharp: 0.33.4
+ sharp: 0.33.3
transitivePeerDependencies:
- '@types/node'
- less
@@ -5358,16 +4767,14 @@ snapshots:
- terser
- typescript
- async-listen@3.0.1: {}
-
- autoprefixer@10.4.19(postcss@8.4.38):
+ autoprefixer@10.4.19(postcss@8.4.40):
dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001627
+ browserslist: 4.23.3
+ caniuse-lite: 1.0.30001647
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.1
- postcss: 8.4.38
+ postcss: 8.4.40
postcss-value-parser: 4.2.0
axobject-query@4.1.0: {}
@@ -5396,16 +4803,16 @@ snapshots:
bottleneck@2.19.5: {}
- boxen@8.0.0:
+ boxen@7.1.1:
dependencies:
ansi-align: 3.0.1
- camelcase: 8.0.0
+ camelcase: 7.0.1
chalk: 5.3.0
- cli-boxes: 4.0.0
- string-width: 7.2.0
- type-fest: 4.22.0
- widest-line: 5.0.0
- wrap-ansi: 9.0.0
+ cli-boxes: 3.0.0
+ string-width: 5.1.2
+ type-fest: 2.19.0
+ widest-line: 4.0.1
+ wrap-ansi: 8.1.0
brace-expansion@1.1.11:
dependencies:
@@ -5416,41 +4823,28 @@ snapshots:
dependencies:
balanced-match: 1.0.2
- braces@3.0.3:
- dependencies:
- fill-range: 7.1.1
-
- browserslist@4.23.0:
+ braces@3.0.2:
dependencies:
- caniuse-lite: 1.0.30001627
- electron-to-chromium: 1.4.788
- node-releases: 2.0.14
- update-browserslist-db: 1.0.16(browserslist@4.23.0)
+ fill-range: 7.0.1
- browserslist@4.23.2:
+ browserslist@4.23.3:
dependencies:
- caniuse-lite: 1.0.30001642
- electron-to-chromium: 1.4.829
- node-releases: 2.0.14
- update-browserslist-db: 1.1.0(browserslist@4.23.2)
+ caniuse-lite: 1.0.30001647
+ electron-to-chromium: 1.5.4
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.0(browserslist@4.23.3)
buffer-crc32@0.2.13: {}
- bundle-name@4.1.0:
- dependencies:
- run-applescript: 7.0.0
-
camelcase-css@2.0.1: {}
- camelcase@8.0.0: {}
+ camelcase@7.0.1: {}
- caniuse-lite@1.0.30001627: {}
-
- caniuse-lite@1.0.30001642: {}
+ caniuse-lite@1.0.30001647: {}
capnp-ts@0.7.0:
dependencies:
- debug: 4.3.5
+ debug: 4.3.6
tslib: 2.6.2
transitivePeerDependencies:
- supports-color
@@ -5495,7 +4889,7 @@ snapshots:
chokidar@3.6.0:
dependencies:
anymatch: 3.1.3
- braces: 3.0.3
+ braces: 3.0.2
glob-parent: 5.1.2
is-binary-path: 2.1.0
is-glob: 4.0.3
@@ -5508,7 +4902,7 @@ snapshots:
ci-info@4.0.0: {}
- cli-boxes@4.0.0: {}
+ cli-boxes@3.0.0: {}
cli-cursor@4.0.0:
dependencies:
@@ -5606,11 +5000,9 @@ snapshots:
data-uri-to-buffer@2.0.2: {}
- data-uri-to-buffer@4.0.1: {}
-
date-fns@3.6.0: {}
- debug@4.3.5:
+ debug@4.3.6:
dependencies:
ms: 2.1.2
@@ -5618,27 +5010,14 @@ snapshots:
dependencies:
character-entities: 2.0.2
- deep-diff@1.0.2: {}
-
deepmerge@4.3.1: {}
- default-browser-id@5.0.0: {}
-
- default-browser@5.2.1:
- dependencies:
- bundle-name: 4.1.0
- default-browser-id: 5.0.0
-
- define-lazy-prop@3.0.0: {}
-
defu@6.1.4: {}
deprecation@2.3.1: {}
dequal@2.0.3: {}
- detect-libc@2.0.2: {}
-
detect-libc@2.0.3: {}
deterministic-object-hash@2.0.2:
@@ -5677,18 +5056,11 @@ snapshots:
domelementtype: 2.3.0
domhandler: 5.0.3
- drizzle-orm@0.31.2(@cloudflare/workers-types@4.20240529.0)(@libsql/client@0.6.2):
- optionalDependencies:
- '@cloudflare/workers-types': 4.20240529.0
- '@libsql/client': 0.6.2
-
dset@3.1.3: {}
eastasianwidth@0.2.0: {}
- electron-to-chromium@1.4.788: {}
-
- electron-to-chromium@1.4.829: {}
+ electron-to-chromium@1.5.4: {}
emmet@2.4.7:
dependencies:
@@ -5734,32 +5106,6 @@ snapshots:
'@esbuild/win32-ia32': 0.17.19
'@esbuild/win32-x64': 0.17.19
- esbuild@0.19.12:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.19.12
- '@esbuild/android-arm': 0.19.12
- '@esbuild/android-arm64': 0.19.12
- '@esbuild/android-x64': 0.19.12
- '@esbuild/darwin-arm64': 0.19.12
- '@esbuild/darwin-x64': 0.19.12
- '@esbuild/freebsd-arm64': 0.19.12
- '@esbuild/freebsd-x64': 0.19.12
- '@esbuild/linux-arm': 0.19.12
- '@esbuild/linux-arm64': 0.19.12
- '@esbuild/linux-ia32': 0.19.12
- '@esbuild/linux-loong64': 0.19.12
- '@esbuild/linux-mips64el': 0.19.12
- '@esbuild/linux-ppc64': 0.19.12
- '@esbuild/linux-riscv64': 0.19.12
- '@esbuild/linux-s390x': 0.19.12
- '@esbuild/linux-x64': 0.19.12
- '@esbuild/netbsd-x64': 0.19.12
- '@esbuild/openbsd-x64': 0.19.12
- '@esbuild/sunos-x64': 0.19.12
- '@esbuild/win32-arm64': 0.19.12
- '@esbuild/win32-ia32': 0.19.12
- '@esbuild/win32-x64': 0.19.12
-
esbuild@0.21.5:
optionalDependencies:
'@esbuild/aix-ppc64': 0.21.5
@@ -5786,6 +5132,33 @@ snapshots:
'@esbuild/win32-ia32': 0.21.5
'@esbuild/win32-x64': 0.21.5
+ esbuild@0.22.0:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.22.0
+ '@esbuild/android-arm': 0.22.0
+ '@esbuild/android-arm64': 0.22.0
+ '@esbuild/android-x64': 0.22.0
+ '@esbuild/darwin-arm64': 0.22.0
+ '@esbuild/darwin-x64': 0.22.0
+ '@esbuild/freebsd-arm64': 0.22.0
+ '@esbuild/freebsd-x64': 0.22.0
+ '@esbuild/linux-arm': 0.22.0
+ '@esbuild/linux-arm64': 0.22.0
+ '@esbuild/linux-ia32': 0.22.0
+ '@esbuild/linux-loong64': 0.22.0
+ '@esbuild/linux-mips64el': 0.22.0
+ '@esbuild/linux-ppc64': 0.22.0
+ '@esbuild/linux-riscv64': 0.22.0
+ '@esbuild/linux-s390x': 0.22.0
+ '@esbuild/linux-x64': 0.22.0
+ '@esbuild/netbsd-x64': 0.22.0
+ '@esbuild/openbsd-arm64': 0.22.0
+ '@esbuild/openbsd-x64': 0.22.0
+ '@esbuild/sunos-x64': 0.22.0
+ '@esbuild/win32-arm64': 0.22.0
+ '@esbuild/win32-ia32': 0.22.0
+ '@esbuild/win32-x64': 0.22.0
+
escalade@3.1.2: {}
escape-string-regexp@1.0.5: {}
@@ -5869,7 +5242,7 @@ snapshots:
extract-zip@2.0.1:
dependencies:
- debug: 4.3.5
+ debug: 4.3.6
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -5883,7 +5256,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.5
fastq@1.17.1:
dependencies:
@@ -5893,12 +5266,7 @@ snapshots:
dependencies:
pend: 1.2.0
- fetch-blob@3.2.0:
- dependencies:
- node-domexception: 1.0.0
- web-streams-polyfill: 3.3.3
-
- fill-range@7.1.1:
+ fill-range@7.0.1:
dependencies:
to-regex-range: 5.0.1
@@ -5916,7 +5284,7 @@ snapshots:
find-yarn-workspace-root2@1.2.16:
dependencies:
- micromatch: 4.0.7
+ micromatch: 4.0.5
pkg-dir: 4.2.0
flattie@1.1.1: {}
@@ -5926,18 +5294,8 @@ snapshots:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- formdata-polyfill@4.0.10:
- dependencies:
- fetch-blob: 3.2.0
-
fraction.js@4.3.7: {}
- fs-extra@11.2.0:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.1
-
fs-minipass@2.1.0:
dependencies:
minipass: 3.3.6
@@ -5966,7 +5324,7 @@ snapshots:
get-stream@8.0.1: {}
- github-script@https://codeload.github.com/actions/github-script/tar.gz/60a0d83039c74a4aee543508d2ffcb1c3799cdea:
+ github-script@https://codeload.github.com/actions/github-script/tar.gz/35b1cdd1b2c1fc704b1cd9758d10f67e833fcb02:
dependencies:
'@actions/core': 1.10.1
'@actions/exec': 1.1.1
@@ -5976,7 +5334,7 @@ snapshots:
'@octokit/core': 5.2.0
'@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.0)
'@octokit/plugin-retry': 6.0.1(@octokit/core@5.2.0)
- '@types/node': 20.14.12
+ '@types/node': 20.14.14
github-slugger@2.0.0: {}
@@ -5990,13 +5348,13 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@10.4.1:
+ glob@10.3.14:
dependencies:
foreground-child: 3.1.1
- jackspeak: 3.1.2
+ jackspeak: 2.3.6
minimatch: 9.0.4
- minipass: 7.1.2
- path-scurry: 1.11.1
+ minipass: 7.1.1
+ path-scurry: 1.11.0
globals@11.12.0: {}
@@ -6030,7 +5388,7 @@ snapshots:
devlop: 1.1.0
hast-util-from-parse5: 8.0.1
parse5: 7.1.2
- vfile: 6.0.1
+ vfile: 6.0.2
vfile-message: 4.0.2
hast-util-from-parse5@8.0.1:
@@ -6040,7 +5398,7 @@ snapshots:
devlop: 1.1.0
hastscript: 8.0.0
property-information: 6.5.0
- vfile: 6.0.1
+ vfile: 6.0.2
vfile-location: 5.0.2
web-namespaces: 2.0.1
@@ -6080,7 +5438,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.2
web-namespaces: 2.0.1
zwitch: 2.0.4
@@ -6239,8 +5597,6 @@ snapshots:
dependencies:
binary-extensions: 2.3.0
- is-buffer@2.0.5: {}
-
is-core-module@2.13.1:
dependencies:
hasown: 2.0.2
@@ -6291,7 +5647,7 @@ snapshots:
isexe@2.0.0: {}
- jackspeak@3.1.2:
+ jackspeak@2.3.6:
dependencies:
'@isaacs/cliui': 8.0.2
optionalDependencies:
@@ -6299,8 +5655,6 @@ snapshots:
jiti@1.21.0: {}
- js-base64@3.7.7: {}
-
js-tokens@4.0.0: {}
js-yaml@3.14.1:
@@ -6318,14 +5672,6 @@ snapshots:
jsonc-parser@2.3.1: {}
- jsonfile@6.1.0:
- dependencies:
- universalify: 2.0.1
- optionalDependencies:
- graceful-fs: 4.2.11
-
- just-map-values@3.2.0: {}
-
kind-of@6.0.3: {}
kleur@3.0.3: {}
@@ -6334,19 +5680,6 @@ snapshots:
kolorist@1.8.0: {}
- libsql@0.3.18:
- dependencies:
- '@neon-rs/load': 0.0.4
- detect-libc: 2.0.2
- optionalDependencies:
- '@libsql/darwin-arm64': 0.3.18
- '@libsql/darwin-x64': 0.3.18
- '@libsql/linux-arm64-gnu': 0.3.18
- '@libsql/linux-arm64-musl': 0.3.18
- '@libsql/linux-x64-gnu': 0.3.18
- '@libsql/linux-x64-musl': 0.3.18
- '@libsql/win32-x64-msvc': 0.3.18
-
lilconfig@2.1.0: {}
lilconfig@3.1.1: {}
@@ -6398,9 +5731,9 @@ snapshots:
dependencies:
sourcemap-codec: 1.4.8
- magic-string@0.30.10:
+ magic-string@0.30.11:
dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
markdown-extensions@2.0.0: {}
@@ -6417,7 +5750,7 @@ snapshots:
'@types/mdast': 4.0.4
'@types/unist': 3.0.2
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.0
mdast-util-to-markdown: 2.1.0
parse-entities: 4.0.1
stringify-entities: 4.0.4
@@ -6432,7 +5765,7 @@ snapshots:
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
- mdast-util-from-markdown@2.0.1:
+ mdast-util-from-markdown@2.0.0:
dependencies:
'@types/mdast': 4.0.4
'@types/unist': 3.0.2
@@ -6461,7 +5794,7 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.0
mdast-util-to-markdown: 2.1.0
micromark-util-normalize-identifier: 2.0.0
transitivePeerDependencies:
@@ -6470,7 +5803,7 @@ snapshots:
mdast-util-gfm-strikethrough@2.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.0
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -6480,7 +5813,7 @@ snapshots:
'@types/mdast': 4.0.4
devlop: 1.1.0
markdown-table: 3.0.3
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.0
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -6489,14 +5822,14 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.0
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
mdast-util-gfm@3.0.0:
dependencies:
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.0
mdast-util-gfm-autolink-literal: 2.0.0
mdast-util-gfm-footnote: 2.0.0
mdast-util-gfm-strikethrough: 2.0.0
@@ -6512,7 +5845,7 @@ snapshots:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.0
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -6525,7 +5858,7 @@ snapshots:
'@types/unist': 3.0.2
ccount: 2.0.1
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.0
mdast-util-to-markdown: 2.1.0
parse-entities: 4.0.1
stringify-entities: 4.0.4
@@ -6537,7 +5870,7 @@ snapshots:
mdast-util-mdx@3.0.0:
dependencies:
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.0
mdast-util-mdx-expression: 2.0.0
mdast-util-mdx-jsx: 3.1.2
mdast-util-mdxjs-esm: 2.0.1
@@ -6551,7 +5884,7 @@ snapshots:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.0
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -6571,7 +5904,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.2
mdast-util-to-markdown@2.1.0:
dependencies:
@@ -6725,8 +6058,8 @@ snapshots:
micromark-extension-mdxjs@3.0.0:
dependencies:
- acorn: 8.12.0
- acorn-jsx: 5.3.2(acorn@8.12.0)
+ acorn: 8.12.1
+ acorn-jsx: 5.3.2(acorn@8.12.1)
micromark-extension-mdx-expression: 3.0.0
micromark-extension-mdx-jsx: 3.0.0
micromark-extension-mdx-md: 2.0.0
@@ -6851,7 +6184,7 @@ snapshots:
micromark@4.0.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.5
+ debug: 4.3.6
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.1
@@ -6870,9 +6203,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- micromatch@4.0.7:
+ micromatch@4.0.5:
dependencies:
- braces: 3.0.3
+ braces: 3.0.2
picomatch: 2.3.1
mime@3.0.0: {}
@@ -6883,37 +6216,18 @@ snapshots:
mini-svg-data-uri@1.4.4: {}
- miniflare@3.20240610.1:
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- acorn: 8.11.3
- acorn-walk: 8.3.2
- capnp-ts: 0.7.0
- exit-hook: 2.2.1
- glob-to-regexp: 0.4.1
- stoppable: 1.1.0
- undici: 5.28.4
- workerd: 1.20240610.1
- ws: 8.17.0
- youch: 3.3.3
- zod: 3.23.8
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- miniflare@3.20240620.0:
+ miniflare@3.20240725.0:
dependencies:
'@cspotcode/source-map-support': 0.8.1
- acorn: 8.11.3
+ acorn: 8.12.1
acorn-walk: 8.3.2
capnp-ts: 0.7.0
exit-hook: 2.2.1
glob-to-regexp: 0.4.1
stoppable: 1.1.0
undici: 5.28.4
- workerd: 1.20240620.1
- ws: 8.17.0
+ workerd: 1.20240725.0
+ ws: 8.18.0
youch: 3.3.3
zod: 3.23.8
transitivePeerDependencies:
@@ -6937,7 +6251,7 @@ snapshots:
minipass@5.0.0: {}
- minipass@7.1.2: {}
+ minipass@7.1.1: {}
minizlib@2.1.2:
dependencies:
@@ -6948,7 +6262,7 @@ snapshots:
mlly@1.7.0:
dependencies:
- acorn: 8.12.0
+ acorn: 8.12.1
pathe: 1.1.2
pkg-types: 1.1.1
ufo: 1.5.3
@@ -6969,29 +6283,15 @@ snapshots:
nanoid@3.3.7: {}
- nanoid@5.0.7: {}
-
- nlcst-to-string@3.1.1:
- dependencies:
- '@types/nlcst': 1.0.4
-
nlcst-to-string@4.0.0:
dependencies:
'@types/nlcst': 2.0.3
- node-domexception@1.0.0: {}
-
node-fetch-native@1.6.4: {}
- node-fetch@3.3.2:
- dependencies:
- data-uri-to-buffer: 4.0.1
- fetch-blob: 3.2.0
- formdata-polyfill: 4.0.10
-
node-forge@1.3.1: {}
- node-releases@2.0.14: {}
+ node-releases@2.0.18: {}
normalize-path@3.0.0: {}
@@ -7027,13 +6327,6 @@ snapshots:
dependencies:
mimic-fn: 4.0.0
- open@10.1.0:
- dependencies:
- default-browser: 5.2.1
- define-lazy-prop: 3.0.0
- is-inside-container: 1.0.0
- is-wsl: 3.1.0
-
ora@8.0.1:
dependencies:
chalk: 5.3.0
@@ -7043,7 +6336,7 @@ snapshots:
is-unicode-supported: 2.0.0
log-symbols: 6.0.0
stdin-discarder: 0.2.2
- string-width: 7.1.0
+ string-width: 7.2.0
strip-ansi: 7.1.0
p-limit@2.3.0:
@@ -7094,12 +6387,6 @@ snapshots:
is-decimal: 2.0.1
is-hexadecimal: 2.0.1
- parse-latin@5.0.1:
- dependencies:
- nlcst-to-string: 3.1.1
- unist-util-modify-children: 3.1.1
- unist-util-visit-children: 2.0.2
-
parse-latin@7.0.0:
dependencies:
'@types/nlcst': 2.0.3
@@ -7107,7 +6394,7 @@ snapshots:
nlcst-to-string: 4.0.0
unist-util-modify-children: 4.0.0
unist-util-visit-children: 3.0.0
- vfile: 6.0.1
+ vfile: 6.0.2
parse-srcset@1.0.2: {}
@@ -7130,10 +6417,10 @@ snapshots:
path-parse@1.0.7: {}
- path-scurry@1.11.1:
+ path-scurry@1.11.0:
dependencies:
lru-cache: 10.2.2
- minipass: 7.1.2
+ minipass: 7.1.1
path-to-regexp@6.2.2: {}
@@ -7167,56 +6454,43 @@ snapshots:
mlly: 1.7.0
pathe: 1.1.2
- postcss-import@15.1.0(postcss@8.4.39):
+ postcss-import@15.1.0(postcss@8.4.40):
dependencies:
- postcss: 8.4.39
+ postcss: 8.4.40
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
- postcss-js@4.0.1(postcss@8.4.39):
+ postcss-js@4.0.1(postcss@8.4.40):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.39
-
- postcss-load-config@4.0.2(postcss@8.4.38):
- dependencies:
- lilconfig: 3.1.1
- yaml: 2.4.3
- optionalDependencies:
- postcss: 8.4.38
+ postcss: 8.4.40
- postcss-load-config@4.0.2(postcss@8.4.39):
+ postcss-load-config@4.0.2(postcss@8.4.40):
dependencies:
lilconfig: 3.1.1
- yaml: 2.4.3
+ yaml: 2.4.2
optionalDependencies:
- postcss: 8.4.39
+ postcss: 8.4.40
- postcss-nested@6.0.1(postcss@8.4.39):
+ postcss-nested@6.0.1(postcss@8.4.40):
dependencies:
- postcss: 8.4.39
- postcss-selector-parser: 6.1.0
+ postcss: 8.4.40
+ postcss-selector-parser: 6.0.16
postcss-selector-parser@6.0.10:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-selector-parser@6.1.0:
+ postcss-selector-parser@6.0.16:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
postcss-value-parser@4.2.0: {}
- postcss@8.4.38:
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
-
- postcss@8.4.39:
+ postcss@8.4.40:
dependencies:
nanoid: 3.3.7
picocolors: 1.0.1
@@ -7254,6 +6528,14 @@ snapshots:
dependencies:
picomatch: 2.3.1
+ recast@0.23.9:
+ dependencies:
+ ast-types: 0.16.1
+ esprima: 4.0.1
+ source-map: 0.6.1
+ tiny-invariant: 1.3.3
+ tslib: 2.6.2
+
rehype-expressive-code@0.35.3:
dependencies:
expressive-code: 0.35.3
@@ -7287,7 +6569,7 @@ snapshots:
dependencies:
'@types/hast': 3.0.4
hast-util-raw: 9.0.3
- vfile: 6.0.1
+ vfile: 6.0.2
rehype-stringify@10.0.0:
dependencies:
@@ -7332,7 +6614,7 @@ snapshots:
remark-parse@11.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.0
micromark-util-types: 2.0.0
unified: 11.0.5
transitivePeerDependencies:
@@ -7346,13 +6628,7 @@ snapshots:
unified: 11.0.5
vfile: 6.0.2
- remark-smartypants@2.1.0:
- dependencies:
- retext: 8.1.0
- retext-smartypants: 5.2.0
- unist-util-visit: 5.0.0
-
- remark-smartypants@3.0.1:
+ remark-smartypants@3.0.2:
dependencies:
retext: 9.0.0
retext-smartypants: 6.1.0
@@ -7382,51 +6658,24 @@ snapshots:
onetime: 5.1.2
signal-exit: 3.0.7
- retext-latin@3.1.0:
- dependencies:
- '@types/nlcst': 1.0.4
- parse-latin: 5.0.1
- unherit: 3.0.1
- unified: 10.1.2
-
retext-latin@4.0.0:
dependencies:
'@types/nlcst': 2.0.3
parse-latin: 7.0.0
unified: 11.0.5
- retext-smartypants@5.2.0:
- dependencies:
- '@types/nlcst': 1.0.4
- nlcst-to-string: 3.1.1
- unified: 10.1.2
- unist-util-visit: 4.1.2
-
retext-smartypants@6.1.0:
dependencies:
'@types/nlcst': 2.0.3
nlcst-to-string: 4.0.0
unist-util-visit: 5.0.0
- retext-stringify@3.1.0:
- dependencies:
- '@types/nlcst': 1.0.4
- nlcst-to-string: 3.1.1
- unified: 10.1.2
-
retext-stringify@4.0.0:
dependencies:
'@types/nlcst': 2.0.3
nlcst-to-string: 4.0.0
unified: 11.0.5
- retext@8.1.0:
- dependencies:
- '@types/nlcst': 1.0.4
- retext-latin: 3.1.0
- retext-stringify: 3.1.0
- unified: 10.1.2
-
retext@9.0.0:
dependencies:
'@types/nlcst': 2.0.3
@@ -7450,30 +6699,28 @@ snapshots:
dependencies:
estree-walker: 0.6.1
- rollup@4.18.0:
+ rollup@4.17.2:
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.18.0
- '@rollup/rollup-android-arm64': 4.18.0
- '@rollup/rollup-darwin-arm64': 4.18.0
- '@rollup/rollup-darwin-x64': 4.18.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.18.0
- '@rollup/rollup-linux-arm-musleabihf': 4.18.0
- '@rollup/rollup-linux-arm64-gnu': 4.18.0
- '@rollup/rollup-linux-arm64-musl': 4.18.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.18.0
- '@rollup/rollup-linux-riscv64-gnu': 4.18.0
- '@rollup/rollup-linux-s390x-gnu': 4.18.0
- '@rollup/rollup-linux-x64-gnu': 4.18.0
- '@rollup/rollup-linux-x64-musl': 4.18.0
- '@rollup/rollup-win32-arm64-msvc': 4.18.0
- '@rollup/rollup-win32-ia32-msvc': 4.18.0
- '@rollup/rollup-win32-x64-msvc': 4.18.0
+ '@rollup/rollup-android-arm-eabi': 4.17.2
+ '@rollup/rollup-android-arm64': 4.17.2
+ '@rollup/rollup-darwin-arm64': 4.17.2
+ '@rollup/rollup-darwin-x64': 4.17.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.17.2
+ '@rollup/rollup-linux-arm-musleabihf': 4.17.2
+ '@rollup/rollup-linux-arm64-gnu': 4.17.2
+ '@rollup/rollup-linux-arm64-musl': 4.17.2
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.17.2
+ '@rollup/rollup-linux-s390x-gnu': 4.17.2
+ '@rollup/rollup-linux-x64-gnu': 4.17.2
+ '@rollup/rollup-linux-x64-musl': 4.17.2
+ '@rollup/rollup-win32-arm64-msvc': 4.17.2
+ '@rollup/rollup-win32-ia32-msvc': 4.17.2
+ '@rollup/rollup-win32-x64-msvc': 4.17.2
fsevents: 2.3.3
- run-applescript@7.0.0: {}
-
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
@@ -7485,9 +6732,9 @@ snapshots:
htmlparser2: 8.0.2
is-plain-object: 5.0.0
parse-srcset: 1.0.2
- postcss: 8.4.38
+ postcss: 8.4.40
- sax@1.4.1: {}
+ sax@1.3.0: {}
section-matter@1.0.0:
dependencies:
@@ -7501,16 +6748,16 @@ snapshots:
semver@6.3.1: {}
- semver@7.6.2: {}
+ semver@7.6.3: {}
- sharp@0.33.4:
+ sharp@0.33.3:
dependencies:
color: 4.2.3
detect-libc: 2.0.3
- semver: 7.6.2
+ semver: 7.6.3
optionalDependencies:
- '@img/sharp-darwin-arm64': 0.33.4
- '@img/sharp-darwin-x64': 0.33.4
+ '@img/sharp-darwin-arm64': 0.33.3
+ '@img/sharp-darwin-x64': 0.33.3
'@img/sharp-libvips-darwin-arm64': 1.0.2
'@img/sharp-libvips-darwin-x64': 1.0.2
'@img/sharp-libvips-linux-arm': 1.0.2
@@ -7519,15 +6766,15 @@ snapshots:
'@img/sharp-libvips-linux-x64': 1.0.2
'@img/sharp-libvips-linuxmusl-arm64': 1.0.2
'@img/sharp-libvips-linuxmusl-x64': 1.0.2
- '@img/sharp-linux-arm': 0.33.4
- '@img/sharp-linux-arm64': 0.33.4
- '@img/sharp-linux-s390x': 0.33.4
- '@img/sharp-linux-x64': 0.33.4
- '@img/sharp-linuxmusl-arm64': 0.33.4
- '@img/sharp-linuxmusl-x64': 0.33.4
- '@img/sharp-wasm32': 0.33.4
- '@img/sharp-win32-ia32': 0.33.4
- '@img/sharp-win32-x64': 0.33.4
+ '@img/sharp-linux-arm': 0.33.3
+ '@img/sharp-linux-arm64': 0.33.3
+ '@img/sharp-linux-s390x': 0.33.3
+ '@img/sharp-linux-x64': 0.33.3
+ '@img/sharp-linuxmusl-arm64': 0.33.3
+ '@img/sharp-linuxmusl-x64': 0.33.3
+ '@img/sharp-wasm32': 0.33.3
+ '@img/sharp-win32-ia32': 0.33.3
+ '@img/sharp-win32-x64': 0.33.3
optional: true
shebang-command@2.0.0:
@@ -7536,28 +6783,15 @@ snapshots:
shebang-regex@3.0.0: {}
- shiki@1.10.0:
- dependencies:
- '@shikijs/core': 1.10.0
-
- shiki@1.10.3:
+ shiki@1.12.1:
dependencies:
- '@shikijs/core': 1.10.3
+ '@shikijs/core': 1.12.1
'@types/hast': 3.0.4
signal-exit@3.0.7: {}
signal-exit@4.1.0: {}
- simple-stack-form@0.1.12(astro@4.11.6(@types/node@20.14.12)(typescript@5.4.5))(zod@3.23.8):
- dependencies:
- '@clack/prompts': 0.7.0
- astro: 4.11.6(@types/node@20.14.12)(typescript@5.4.5)
- fs-extra: 11.2.0
- just-map-values: 3.2.0
- kleur: 4.1.5
- zod: 3.23.8
-
simple-swizzle@0.2.2:
dependencies:
is-arrayish: 0.3.2
@@ -7570,7 +6804,7 @@ snapshots:
'@types/node': 17.0.45
'@types/sax': 1.2.7
arg: 5.0.2
- sax: 1.4.1
+ sax: 1.3.0
source-map-js@1.2.0: {}
@@ -7607,12 +6841,6 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- string-width@7.1.0:
- dependencies:
- emoji-regex: 10.3.0
- get-east-asian-width: 1.2.0
- strip-ansi: 7.1.0
-
string-width@7.2.0:
dependencies:
emoji-regex: 10.3.0
@@ -7652,7 +6880,7 @@ snapshots:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
- glob: 10.4.1
+ glob: 10.3.14
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
@@ -7685,16 +6913,16 @@ snapshots:
is-glob: 4.0.3
jiti: 1.21.0
lilconfig: 2.1.0
- micromatch: 4.0.7
+ micromatch: 4.0.5
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.1
- postcss: 8.4.39
- postcss-import: 15.1.0(postcss@8.4.39)
- postcss-js: 4.0.1(postcss@8.4.39)
- postcss-load-config: 4.0.2(postcss@8.4.39)
- postcss-nested: 6.0.1(postcss@8.4.39)
- postcss-selector-parser: 6.1.0
+ postcss: 8.4.40
+ postcss-import: 15.1.0(postcss@8.4.40)
+ postcss-js: 4.0.1(postcss@8.4.40)
+ postcss-load-config: 4.0.2(postcss@8.4.40)
+ postcss-nested: 6.0.1(postcss@8.4.40)
+ postcss-selector-parser: 6.0.16
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
@@ -7722,6 +6950,8 @@ snapshots:
globalyzer: 0.1.0
globrex: 0.1.2
+ tiny-invariant@1.3.3: {}
+
to-fast-properties@2.0.0: {}
to-regex-range@5.0.1:
@@ -7734,23 +6964,23 @@ snapshots:
ts-interface-checker@0.1.13: {}
- tsconfck@3.1.1(typescript@5.4.5):
+ tsconfck@3.1.1(typescript@5.5.4):
optionalDependencies:
- typescript: 5.4.5
+ typescript: 5.5.4
tslib@2.6.2: {}
tunnel@0.0.6: {}
- type-fest@4.22.0: {}
+ type-fest@2.19.0: {}
typesafe-path@0.2.2: {}
- typescript-auto-import-cache@0.3.2:
+ typescript-auto-import-cache@0.3.3:
dependencies:
- semver: 7.6.2
+ semver: 7.6.3
- typescript@5.4.5: {}
+ typescript@5.5.4: {}
ufo@1.5.3: {}
@@ -7769,18 +6999,6 @@ snapshots:
pathe: 1.1.2
ufo: 1.5.3
- unherit@3.0.1: {}
-
- unified@10.1.2:
- dependencies:
- '@types/unist': 2.0.10
- bail: 2.0.2
- extend: 3.0.2
- is-buffer: 2.0.5
- is-plain-obj: 4.1.0
- trough: 2.2.0
- vfile: 5.3.7
-
unified@11.0.5:
dependencies:
'@types/unist': 3.0.2
@@ -7789,26 +7007,17 @@ snapshots:
extend: 3.0.2
is-plain-obj: 4.1.0
trough: 2.2.0
- vfile: 6.0.1
+ vfile: 6.0.2
unist-util-find-after@5.0.0:
dependencies:
'@types/unist': 3.0.2
unist-util-is: 6.0.0
- unist-util-is@5.2.1:
- dependencies:
- '@types/unist': 2.0.10
-
unist-util-is@6.0.0:
dependencies:
'@types/unist': 3.0.2
- unist-util-modify-children@3.1.1:
- dependencies:
- '@types/unist': 2.0.10
- array-iterate: 2.0.1
-
unist-util-modify-children@4.0.0:
dependencies:
'@types/unist': 3.0.2
@@ -7827,38 +7036,19 @@ snapshots:
'@types/unist': 3.0.2
unist-util-visit: 5.0.0
- unist-util-stringify-position@3.0.3:
- dependencies:
- '@types/unist': 2.0.10
-
unist-util-stringify-position@4.0.0:
dependencies:
'@types/unist': 3.0.2
- unist-util-visit-children@2.0.2:
- dependencies:
- '@types/unist': 2.0.10
-
unist-util-visit-children@3.0.0:
dependencies:
'@types/unist': 3.0.2
- unist-util-visit-parents@5.1.3:
- dependencies:
- '@types/unist': 2.0.10
- unist-util-is: 5.2.1
-
unist-util-visit-parents@6.0.1:
dependencies:
'@types/unist': 3.0.2
unist-util-is: 6.0.0
- unist-util-visit@4.1.2:
- dependencies:
- '@types/unist': 2.0.10
- unist-util-is: 5.2.1
- unist-util-visit-parents: 5.1.3
-
unist-util-visit@5.0.0:
dependencies:
'@types/unist': 3.0.2
@@ -7867,17 +7057,9 @@ snapshots:
universal-user-agent@6.0.1: {}
- universalify@2.0.1: {}
-
- update-browserslist-db@1.0.16(browserslist@4.23.0):
- dependencies:
- browserslist: 4.23.0
- escalade: 3.1.2
- picocolors: 1.0.1
-
- update-browserslist-db@1.1.0(browserslist@4.23.2):
+ update-browserslist-db@1.1.0(browserslist@4.23.3):
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.23.3
escalade: 3.1.2
picocolors: 1.0.1
@@ -7888,102 +7070,88 @@ snapshots:
vfile-location@5.0.2:
dependencies:
'@types/unist': 3.0.2
- vfile: 6.0.1
-
- vfile-message@3.1.4:
- dependencies:
- '@types/unist': 2.0.10
- unist-util-stringify-position: 3.0.3
+ vfile: 6.0.2
vfile-message@4.0.2:
dependencies:
'@types/unist': 3.0.2
unist-util-stringify-position: 4.0.0
- vfile@5.3.7:
- dependencies:
- '@types/unist': 2.0.10
- is-buffer: 2.0.5
- unist-util-stringify-position: 3.0.3
- vfile-message: 3.1.4
-
- vfile@6.0.1:
- dependencies:
- '@types/unist': 3.0.2
- unist-util-stringify-position: 4.0.0
- vfile-message: 4.0.2
-
vfile@6.0.2:
dependencies:
'@types/unist': 3.0.2
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- vite@5.3.4(@types/node@20.14.12):
+ vite@5.3.5(@types/node@20.14.14):
dependencies:
esbuild: 0.21.5
- postcss: 8.4.39
- rollup: 4.18.0
+ postcss: 8.4.40
+ rollup: 4.17.2
optionalDependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.14.14
fsevents: 2.3.3
- vitefu@0.2.5(vite@5.3.4(@types/node@20.14.12)):
+ vitefu@0.2.5(vite@5.3.5(@types/node@20.14.14)):
optionalDependencies:
- vite: 5.3.4(@types/node@20.14.12)
+ vite: 5.3.5(@types/node@20.14.14)
- volar-service-css@0.0.45(@volar/language-service@2.2.5):
+ volar-service-css@0.0.59(@volar/language-service@2.4.0-alpha.18):
dependencies:
- vscode-css-languageservice: 6.2.14
+ vscode-css-languageservice: 6.3.0
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
optionalDependencies:
- '@volar/language-service': 2.2.5
+ '@volar/language-service': 2.4.0-alpha.18
- volar-service-emmet@0.0.45(@volar/language-service@2.2.5):
+ volar-service-emmet@0.0.59(@volar/language-service@2.4.0-alpha.18):
dependencies:
'@emmetio/css-parser': 0.4.0
'@emmetio/html-matcher': 1.3.0
'@vscode/emmet-helper': 2.9.3
+ vscode-uri: 3.0.8
optionalDependencies:
- '@volar/language-service': 2.2.5
+ '@volar/language-service': 2.4.0-alpha.18
- volar-service-html@0.0.45(@volar/language-service@2.2.5):
+ volar-service-html@0.0.59(@volar/language-service@2.4.0-alpha.18):
dependencies:
- vscode-html-languageservice: '@johnsoncodehk/vscode-html-languageservice@5.2.0-34a5462'
+ vscode-html-languageservice: 5.3.0
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
optionalDependencies:
- '@volar/language-service': 2.2.5
+ '@volar/language-service': 2.4.0-alpha.18
- volar-service-prettier@0.0.45(@volar/language-service@2.2.5):
+ volar-service-prettier@0.0.59(@volar/language-service@2.4.0-alpha.18):
dependencies:
vscode-uri: 3.0.8
optionalDependencies:
- '@volar/language-service': 2.2.5
+ '@volar/language-service': 2.4.0-alpha.18
- volar-service-typescript-twoslash-queries@0.0.45(@volar/language-service@2.2.5):
+ volar-service-typescript-twoslash-queries@0.0.59(@volar/language-service@2.4.0-alpha.18):
+ dependencies:
+ vscode-uri: 3.0.8
optionalDependencies:
- '@volar/language-service': 2.2.5
+ '@volar/language-service': 2.4.0-alpha.18
- volar-service-typescript@0.0.45(@volar/language-service@2.2.5):
+ volar-service-typescript@0.0.59(@volar/language-service@2.4.0-alpha.18):
dependencies:
path-browserify: 1.0.1
- semver: 7.6.2
- typescript-auto-import-cache: 0.3.2
+ semver: 7.6.3
+ typescript-auto-import-cache: 0.3.3
vscode-languageserver-textdocument: 1.0.11
vscode-nls: 5.2.0
+ vscode-uri: 3.0.8
optionalDependencies:
- '@volar/language-service': 2.2.5
+ '@volar/language-service': 2.4.0-alpha.18
- vscode-css-languageservice@6.2.14:
+ vscode-css-languageservice@6.3.0:
dependencies:
'@vscode/l10n': 0.0.18
vscode-languageserver-textdocument: 1.0.11
vscode-languageserver-types: 3.17.5
vscode-uri: 3.0.8
- vscode-html-languageservice@5.2.0:
+ vscode-html-languageservice@5.3.0:
dependencies:
'@vscode/l10n': 0.0.18
vscode-languageserver-textdocument: 1.0.11
@@ -8013,8 +7181,6 @@ snapshots:
web-namespaces@2.0.1: {}
- web-streams-polyfill@3.3.3: {}
-
which-pm-runs@1.1.0: {}
which-pm@3.0.0:
@@ -8025,27 +7191,19 @@ snapshots:
dependencies:
isexe: 2.0.0
- widest-line@5.0.0:
+ widest-line@4.0.1:
dependencies:
- string-width: 7.2.0
-
- workerd@1.20240610.1:
- optionalDependencies:
- '@cloudflare/workerd-darwin-64': 1.20240610.1
- '@cloudflare/workerd-darwin-arm64': 1.20240610.1
- '@cloudflare/workerd-linux-64': 1.20240610.1
- '@cloudflare/workerd-linux-arm64': 1.20240610.1
- '@cloudflare/workerd-windows-64': 1.20240610.1
+ string-width: 5.1.2
- workerd@1.20240620.1:
+ workerd@1.20240725.0:
optionalDependencies:
- '@cloudflare/workerd-darwin-64': 1.20240620.1
- '@cloudflare/workerd-darwin-arm64': 1.20240620.1
- '@cloudflare/workerd-linux-64': 1.20240620.1
- '@cloudflare/workerd-linux-arm64': 1.20240620.1
- '@cloudflare/workerd-windows-64': 1.20240620.1
+ '@cloudflare/workerd-darwin-64': 1.20240725.0
+ '@cloudflare/workerd-darwin-arm64': 1.20240725.0
+ '@cloudflare/workerd-linux-64': 1.20240725.0
+ '@cloudflare/workerd-linux-arm64': 1.20240725.0
+ '@cloudflare/workerd-windows-64': 1.20240725.0
- wrangler@3.62.0(@cloudflare/workers-types@4.20240529.0):
+ wrangler@3.68.0(@cloudflare/workers-types@4.20240729.0):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
'@esbuild-plugins/node-globals-polyfill': 0.2.3(esbuild@0.17.19)
@@ -8054,7 +7212,7 @@ snapshots:
chokidar: 3.6.0
date-fns: 3.6.0
esbuild: 0.17.19
- miniflare: 3.20240620.0
+ miniflare: 3.20240725.0
nanoid: 3.3.7
path-to-regexp: 6.2.2
resolve: 1.22.8
@@ -8062,9 +7220,10 @@ snapshots:
selfsigned: 2.4.1
source-map: 0.6.1
unenv: unenv-nightly@1.10.0-1717606461.a117952
+ workerd: 1.20240725.0
xxhash-wasm: 1.0.2
optionalDependencies:
- '@cloudflare/workers-types': 4.20240529.0
+ '@cloudflare/workers-types': 4.20240729.0
fsevents: 2.3.3
transitivePeerDependencies:
- bufferutil
@@ -8083,15 +7242,9 @@ snapshots:
string-width: 5.1.2
strip-ansi: 7.1.0
- wrap-ansi@9.0.0:
- dependencies:
- ansi-styles: 6.2.1
- string-width: 7.2.0
- strip-ansi: 7.1.0
-
wrappy@1.0.2: {}
- ws@8.17.0: {}
+ ws@8.18.0: {}
xxhash-wasm@1.0.2: {}
@@ -8101,7 +7254,7 @@ snapshots:
yallist@4.0.0: {}
- yaml@2.4.3: {}
+ yaml@2.4.2: {}
yargs-parser@21.1.1: {}
@@ -8130,7 +7283,7 @@ snapshots:
mustache: 4.2.0
stacktracey: 2.1.8
- zod-to-json-schema@3.23.1(zod@3.23.8):
+ zod-to-json-schema@3.23.2(zod@3.23.8):
dependencies:
zod: 3.23.8