+ class="absolute shadow-sm z-[999] bg-white rounded-b-lg p-4 w-64 top-[28px] flex flex-col content-left text-left">
Products
+ class="flex items-center text-[12px] font-medium font-inter py-2 group text-black">
@@ -39,7 +44,7 @@
+ class="flex items-center text-[12px] font-medium font-inter py-2 group text-black">
@@ -65,7 +70,7 @@
+ class="flex items-center text-[12px] font-medium font-inter py-2 group text-black">
@@ -91,7 +96,7 @@
+ class="flex items-center text-[12px] font-medium font-inter py-2 group text-black">
@@ -108,7 +113,7 @@
+ class="flex items-center text-[12px] font-medium font-inter py-2 group text-black">
@@ -122,7 +127,7 @@
+ class="flex items-center text-[12px] font-medium font-inter py-2 group text-black">
@@ -142,7 +147,7 @@
+ class="flex items-center text-[12px] font-medium font-inter py-2 group text-black">
@@ -167,7 +172,7 @@
diff --git a/docs/app/components/Sponsors.vue b/docs/app/components/Sponsors.vue
new file mode 100644
index 000000000..bc157a2da
--- /dev/null
+++ b/docs/app/components/Sponsors.vue
@@ -0,0 +1,19 @@
+
+
+
Platinum Sponsors
+
+
+
+
+
+
+
+ Become a Sponsor
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/app/components/TemplateMenu.vue b/docs/app/components/TemplateMenu.vue
new file mode 100644
index 000000000..3b63a1c6d
--- /dev/null
+++ b/docs/app/components/TemplateMenu.vue
@@ -0,0 +1,49 @@
+
+
+
+
+
diff --git a/docs/components/content/MarketingTestimonials.vue b/docs/app/components/Testimonials.vue
similarity index 100%
rename from docs/components/content/MarketingTestimonials.vue
rename to docs/app/components/Testimonials.vue
diff --git a/docs/app/components/content/StarsBg.vue b/docs/app/components/content/StarsBg.vue
new file mode 100644
index 000000000..708437567
--- /dev/null
+++ b/docs/app/components/content/StarsBg.vue
@@ -0,0 +1,183 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/app/error.vue b/docs/app/error.vue
new file mode 100644
index 000000000..f66678c2c
--- /dev/null
+++ b/docs/app/error.vue
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/app/layouts/docs.vue b/docs/app/layouts/docs.vue
new file mode 100644
index 000000000..7e9b6919d
--- /dev/null
+++ b/docs/app/layouts/docs.vue
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/app/pages/[...slug].vue b/docs/app/pages/[...slug].vue
new file mode 100644
index 000000000..b818cf0e9
--- /dev/null
+++ b/docs/app/pages/[...slug].vue
@@ -0,0 +1,143 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/app/pages/index.vue b/docs/app/pages/index.vue
new file mode 100644
index 000000000..aeb520f34
--- /dev/null
+++ b/docs/app/pages/index.vue
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
diff --git a/docs/assets/css/animations.css b/docs/assets/css/animations.css
deleted file mode 100644
index 59de441cf..000000000
--- a/docs/assets/css/animations.css
+++ /dev/null
@@ -1,69 +0,0 @@
-.slide-in-right-enter-active {
- -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
- animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
-}
-
-.slide-in-right-leave-active {
- -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both reverse;
- animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both reverse;
-}
-
-@-webkit-keyframes slide-in-right {
- 0% {
- -webkit-transform: translateX(1000px);
- transform: translateX(1000px);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- opacity: 1;
- }
-}
-@keyframes slide-in-right {
- 0% {
- -webkit-transform: translateX(1000px);
- transform: translateX(1000px);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- opacity: 1;
- }
-}
-
-.slide-in-top-enter-active {
- -webkit-animation: slide-in-top 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
- animation: slide-in-top 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
-}
-
-.slide-in-top-leave-active {
- -webkit-animation: slide-in-top 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both reverse;
- animation: slide-in-top 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both reverse;
-}
-
- @-webkit-keyframes slide-in-top {
- 0% {
- -webkit-transform: translateY(-1000px);
- transform: translateY(-1000px);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translateY(0);
- transform: translateY(0);
- opacity: 1;
- }
-}
-@keyframes slide-in-top {
- 0% {
- -webkit-transform: translateY(-1000px);
- transform: translateY(-1000px);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translateY(0);
- transform: translateY(0);
- opacity: 1;
- }
-}
diff --git a/docs/assets/css/docsearch.css b/docs/assets/css/docsearch.css
deleted file mode 100644
index 311867038..000000000
--- a/docs/assets/css/docsearch.css
+++ /dev/null
@@ -1,49 +0,0 @@
-button.DocSearch-Button{
- background: transparent;
- font-family: "Inter", sans-serif;
- border-radius: 4px;
- margin: 0px;
-}
-
-button.DocSearch-Button .DocSearch-Search-Icon{
- margin-right: 8px;
- width: 20px;
- height: 20px;
- stroke-width: 2;
- stroke-linecap: round;
- stroke-linejoin: round;
- color: #CBD5E1;
-}
-
-button.DocSearch-Button .DocSearch-Button-Placeholder{
- font-weight: bold;
- color: rgb(203, 213, 225);
- font-size: 0.875rem/* 14px */;
- line-height: 1.5rem/* 24px */;
- padding: 0px;
- display: none;
-}
-
-@media (min-width: 1024px) {
- button.DocSearch-Button .DocSearch-Button-Placeholder{
- display: block;
- }
-}
-
-@media (min-width: 1280px) {
- button.DocSearch-Button .DocSearch-Button-Placeholder{
- font-size: 1.125rem/* 18px */;
- line-height: 1.75rem/* 28px */;
- }
-}
-
-button.DocSearch-Button:hover,
-button.DocSearch-Button:active,
-button.DocSearch-Button:focus {
- background: rgb(17, 24, 39);
- box-shadow: none;
-}
-
-button.DocSearch-Button .DocSearch-Button-Keys{
- display: none;
-}
diff --git a/docs/assets/css/hamburger.css b/docs/assets/css/hamburger.css
deleted file mode 100644
index ed8ad076c..000000000
--- a/docs/assets/css/hamburger.css
+++ /dev/null
@@ -1,82 +0,0 @@
-#nav-icon span {
- display: block;
- position: absolute;
- height: 2px;
- width: 50%;
- background: #FFF;
- opacity: 1;
- -webkit-transform: rotate(0deg);
- -moz-transform: rotate(0deg);
- -o-transform: rotate(0deg);
- transform: rotate(0deg);
- -webkit-transition: .25s ease-in-out;
- -moz-transition: .25s ease-in-out;
- -o-transition: .25s ease-in-out;
- transition: .25s ease-in-out;
-}
-
-#nav-icon span:nth-child(even) {
- left: 50%;
- border-radius: 0 9px 9px 0;
-}
-
-#nav-icon span:nth-child(odd) {
- left:0px;
- border-radius: 9px 0 0 9px;
-}
-
-#nav-icon span:nth-child(1), #nav-icon span:nth-child(2) {
- top: 0px;
-}
-
-#nav-icon span:nth-child(3), #nav-icon span:nth-child(4) {
- top: 6px;
-}
-
-#nav-icon span:nth-child(5), #nav-icon span:nth-child(6) {
- top: 12px;
-}
-
-#nav-icon.open span:nth-child(1),#nav-icon.open span:nth-child(6) {
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- transform: rotate(45deg);
-}
-
-#nav-icon.open span:nth-child(2),#nav-icon.open span:nth-child(5) {
- -webkit-transform: rotate(-45deg);
- -moz-transform: rotate(-45deg);
- -o-transform: rotate(-45deg);
- transform: rotate(-45deg);
-}
-
-#nav-icon.open span:nth-child(1) {
- left: 3px;
- top: 3px;
-}
-
-#nav-icon.open span:nth-child(2) {
- left: calc(50%);
- top: 3px;
-}
-
-#nav-icon.open span:nth-child(3) {
- left: -50%;
- opacity: 0;
-}
-
-#nav-icon.open span:nth-child(4) {
- left: 100%;
- opacity: 0;
-}
-
-#nav-icon.open span:nth-child(5) {
- left: 3px;
- top: 10px;
-}
-
-#nav-icon.open span:nth-child(6) {
- left: calc(50%);
- top: 10px;
-}
\ No newline at end of file
diff --git a/docs/assets/css/tailwind.css b/docs/assets/css/tailwind.css
deleted file mode 100644
index da2ef7b59..000000000
--- a/docs/assets/css/tailwind.css
+++ /dev/null
@@ -1,10 +0,0 @@
-@import "animations.css";
-@import "hamburger.css";
-@import "docsearch.css";
-@import 'tailwindcss/base';
-@import 'tailwindcss/components';
-@import 'tailwindcss/utilities';
-::-webkit-scrollbar {
- width: 0px;
- height: 0px;
-}
\ No newline at end of file
diff --git a/docs/components/Docs/Anchor.vue b/docs/components/Docs/Anchor.vue
deleted file mode 100644
index 007ce17cc..000000000
--- a/docs/components/Docs/Anchor.vue
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Docs/Eyebrow.vue b/docs/components/Docs/Eyebrow.vue
deleted file mode 100644
index d685d2fcb..000000000
--- a/docs/components/Docs/Eyebrow.vue
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
- {{ tag }}
-
- {{ label }}
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Docs/Footer.vue b/docs/components/Docs/Footer.vue
deleted file mode 100644
index 21c6903a1..000000000
--- a/docs/components/Docs/Footer.vue
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Docs/Header.vue b/docs/components/Docs/Header.vue
deleted file mode 100644
index 377fff50e..000000000
--- a/docs/components/Docs/Header.vue
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- API
-
-
-
-
- Documentation
-
-
-
-
- Support
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Docs/Logo.vue b/docs/components/Docs/Logo.vue
deleted file mode 100644
index 5a5555178..000000000
--- a/docs/components/Docs/Logo.vue
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Docs/ModeToggle.vue b/docs/components/Docs/ModeToggle.vue
deleted file mode 100644
index 2199639c9..000000000
--- a/docs/components/Docs/ModeToggle.vue
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Docs/Navigation.vue b/docs/components/Docs/Navigation.vue
deleted file mode 100644
index edf7a265d..000000000
--- a/docs/components/Docs/Navigation.vue
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
-
- {{ navigation[0].title }}
-
-
-
-
-
-
-
-
- {{ navigation[0].title }}
-
-
-
-
-
-
-
-
-
-
- Sign in
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Docs/NavigationGroup.vue b/docs/components/Docs/NavigationGroup.vue
deleted file mode 100644
index 65a1099a4..000000000
--- a/docs/components/Docs/NavigationGroup.vue
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
- {{ group.title }}
-
-
-
-
-
-
-
-
-
- {{ link.title }}
-
-
-
-
-
- {{ link.text }}
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/components/Docs/PageLink.vue b/docs/components/Docs/PageLink.vue
deleted file mode 100644
index a96b6e40a..000000000
--- a/docs/components/Docs/PageLink.vue
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
- {{ label }}
-
-
- {{ page.title }}
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Docs/Search.vue b/docs/components/Docs/Search.vue
deleted file mode 100644
index 519dbd774..000000000
--- a/docs/components/Docs/Search.vue
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
- Find Something...
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Docs/SmallPrint.vue b/docs/components/Docs/SmallPrint.vue
deleted file mode 100644
index 34f700ec1..000000000
--- a/docs/components/Docs/SmallPrint.vue
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
- © Copyright {{ copyright }}. All rights reserved.
-
-
-
- Twitter
-
-
-
- GitHub
-
-
-
- Discord
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Docs/Tag.vue b/docs/components/Docs/Tag.vue
deleted file mode 100644
index c7eef6fef..000000000
--- a/docs/components/Docs/Tag.vue
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Docs/TopLevelNavItem.vue b/docs/components/Docs/TopLevelNavItem.vue
deleted file mode 100644
index e1f9a5c23..000000000
--- a/docs/components/Docs/TopLevelNavItem.vue
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/docs/components/DocumentDrivenNotFound.vue b/docs/components/DocumentDrivenNotFound.vue
deleted file mode 100644
index cef8d7f67..000000000
--- a/docs/components/DocumentDrivenNotFound.vue
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Global/MobileMenu.vue b/docs/components/Global/MobileMenu.vue
deleted file mode 100644
index 7d6287d2a..000000000
--- a/docs/components/Global/MobileMenu.vue
+++ /dev/null
@@ -1,133 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/Anchor.vue b/docs/components/Icons/Anchor.vue
deleted file mode 100644
index f41e4d155..000000000
--- a/docs/components/Icons/Anchor.vue
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/Arrow.vue b/docs/components/Icons/Arrow.vue
deleted file mode 100644
index 42ff71696..000000000
--- a/docs/components/Icons/Arrow.vue
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/ChatBubbleIcon.vue b/docs/components/Icons/ChatBubbleIcon.vue
deleted file mode 100644
index 3298b10af..000000000
--- a/docs/components/Icons/ChatBubbleIcon.vue
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/Check.vue b/docs/components/Icons/Check.vue
deleted file mode 100644
index 54fd1954a..000000000
--- a/docs/components/Icons/Check.vue
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/CheckIcon.vue b/docs/components/Icons/CheckIcon.vue
deleted file mode 100644
index 014d9ef48..000000000
--- a/docs/components/Icons/CheckIcon.vue
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/ClipboardIcon.vue b/docs/components/Icons/ClipboardIcon.vue
deleted file mode 100644
index 09dd8781f..000000000
--- a/docs/components/Icons/ClipboardIcon.vue
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/EnvelopeIcon.vue b/docs/components/Icons/EnvelopeIcon.vue
deleted file mode 100644
index b31dee807..000000000
--- a/docs/components/Icons/EnvelopeIcon.vue
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/Moon.vue b/docs/components/Icons/Moon.vue
deleted file mode 100644
index 6c333c391..000000000
--- a/docs/components/Icons/Moon.vue
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/Resource.vue b/docs/components/Icons/Resource.vue
deleted file mode 100644
index 09d279056..000000000
--- a/docs/components/Icons/Resource.vue
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/Search.vue b/docs/components/Icons/Search.vue
deleted file mode 100644
index 5e5f05652..000000000
--- a/docs/components/Icons/Search.vue
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/Social/Discord.vue b/docs/components/Icons/Social/Discord.vue
deleted file mode 100644
index 7685e8e7a..000000000
--- a/docs/components/Icons/Social/Discord.vue
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/Social/GitHub.vue b/docs/components/Icons/Social/GitHub.vue
deleted file mode 100644
index a7c60e047..000000000
--- a/docs/components/Icons/Social/GitHub.vue
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/Social/Twitter.vue b/docs/components/Icons/Social/Twitter.vue
deleted file mode 100644
index ab316f7e3..000000000
--- a/docs/components/Icons/Social/Twitter.vue
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/Sun.vue b/docs/components/Icons/Sun.vue
deleted file mode 100644
index f9f8917a8..000000000
--- a/docs/components/Icons/Sun.vue
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/UserIcon.vue b/docs/components/Icons/UserIcon.vue
deleted file mode 100644
index 35921194d..000000000
--- a/docs/components/Icons/UserIcon.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/Icons/UsersIcon.vue b/docs/components/Icons/UsersIcon.vue
deleted file mode 100644
index 6fecb3520..000000000
--- a/docs/components/Icons/UsersIcon.vue
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/About.vue b/docs/components/content/About.vue
deleted file mode 100644
index 10de30837..000000000
--- a/docs/components/content/About.vue
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/AppButton.vue b/docs/components/content/AppButton.vue
deleted file mode 100644
index 50d43ce29..000000000
--- a/docs/components/content/AppButton.vue
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/AppHeading2.vue b/docs/components/content/AppHeading2.vue
deleted file mode 100644
index 91742040f..000000000
--- a/docs/components/content/AppHeading2.vue
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/AppHeading3.vue b/docs/components/content/AppHeading3.vue
deleted file mode 100644
index f3c624691..000000000
--- a/docs/components/content/AppHeading3.vue
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/AppHeading4.vue b/docs/components/content/AppHeading4.vue
deleted file mode 100644
index 144250153..000000000
--- a/docs/components/content/AppHeading4.vue
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/AppLink.vue b/docs/components/content/AppLink.vue
deleted file mode 100644
index e89bbd81a..000000000
--- a/docs/components/content/AppLink.vue
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Code/ClipboardIcon.vue b/docs/components/content/Code/ClipboardIcon.vue
deleted file mode 100644
index b5714761b..000000000
--- a/docs/components/content/Code/ClipboardIcon.vue
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Code/CopyButton.vue b/docs/components/content/Code/CopyButton.vue
deleted file mode 100644
index c47bc3964..000000000
--- a/docs/components/content/Code/CopyButton.vue
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
- Copy
-
-
-
- Copied!
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Code/PanelHeader.vue b/docs/components/content/Code/PanelHeader.vue
deleted file mode 100644
index 642072ed0..000000000
--- a/docs/components/content/Code/PanelHeader.vue
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
- {{ tag }}
-
-
-
-
-
{{ label }}
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/CodeGroup.vue b/docs/components/content/CodeGroup.vue
deleted file mode 100644
index 1f6776032..000000000
--- a/docs/components/content/CodeGroup.vue
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
- {{ title }}
-
-
-
- {{ tab.name }}
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/CodePanel.vue b/docs/components/content/CodePanel.vue
deleted file mode 100644
index 3367487a0..000000000
--- a/docs/components/content/CodePanel.vue
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
- {{ label }}
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Column.vue b/docs/components/content/Column.vue
deleted file mode 100644
index 780c01e43..000000000
--- a/docs/components/content/Column.vue
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/DiscordIcon.vue b/docs/components/content/DiscordIcon.vue
deleted file mode 100644
index 520b7f6ae..000000000
--- a/docs/components/content/DiscordIcon.vue
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/DocsIcon.vue b/docs/components/content/DocsIcon.vue
deleted file mode 100644
index eb2879583..000000000
--- a/docs/components/content/DocsIcon.vue
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Features.vue b/docs/components/content/Features.vue
deleted file mode 100644
index e33df059f..000000000
--- a/docs/components/content/Features.vue
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
-
Production-ready
-
Built to be performant and secure to exist on the wild web.
-
-
-
-
Native Health Checks
-
Be 100% confident your application is actually running.
-
-
-
-
High Performance
-
Get the easiest experience for fine tuning performance.
-
-
-
-
Customizable & Flexible
-
Environment variables make customizations a breeze.
-
-
-
-
Native CloudFlare Support
-
Get real IP addresses from visitors from trusted proxies.
-
-
-
-
Based on official PHP
-
Upgrade from the official PHP docker images with confidence.
-
-
-
-
NGINX Unit
-
Ditch FPM for a modern way of running PHP. Designed for containers from the ground up.
-
-
-
-
Unified Logging
-
All logs are directed to STDOUT & STDERR for centralized output.
-
-
-
-
FPM + S6 Overlay
-
Our FPM-Apache & FPM-NGINX images use this intelligent init system.
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/GitHubIcon.vue b/docs/components/content/GitHubIcon.vue
deleted file mode 100644
index 620c36f81..000000000
--- a/docs/components/content/GitHubIcon.vue
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/GridPattern.vue b/docs/components/content/GridPattern.vue
deleted file mode 100644
index 03c586124..000000000
--- a/docs/components/content/GridPattern.vue
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/components/content/Guide.vue b/docs/components/content/Guide.vue
deleted file mode 100644
index bc2404a77..000000000
--- a/docs/components/content/Guide.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
- {{ name }}
-
-
- {{ description }}
-
-
-
- Read More
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Guides.vue b/docs/components/content/Guides.vue
deleted file mode 100644
index abe57cc9a..000000000
--- a/docs/components/content/Guides.vue
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/HeartIcon.vue b/docs/components/content/HeartIcon.vue
deleted file mode 100644
index 3e4aaaa3a..000000000
--- a/docs/components/content/HeartIcon.vue
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/HeroPattern.vue b/docs/components/content/HeroPattern.vue
deleted file mode 100644
index 1252c7d9d..000000000
--- a/docs/components/content/HeroPattern.vue
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
diff --git a/docs/components/content/InfoIcon.vue b/docs/components/content/InfoIcon.vue
deleted file mode 100644
index b201ee462..000000000
--- a/docs/components/content/InfoIcon.vue
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/LeadP.vue b/docs/components/content/LeadP.vue
deleted file mode 100644
index fc1a2018d..000000000
--- a/docs/components/content/LeadP.vue
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Libraries.vue b/docs/components/content/Libraries.vue
deleted file mode 100644
index fc959289f..000000000
--- a/docs/components/content/Libraries.vue
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
- {{ library.name }}
-
-
- {{ library.description }}
-
-
-
- Read more
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/MarketingDevToProd.vue b/docs/components/content/MarketingDevToProd.vue
deleted file mode 100644
index ece493cc0..000000000
--- a/docs/components/content/MarketingDevToProd.vue
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
- Built to run from Dev â Prod
-
-
-
Get the full benefits of containerization. Stop using containers in dev only. Works with Kubernetes, Docker Swarm and more.
-
-
-
-
- Get Started đ
- 100% free & open source. Available on GitHub & DockerHub.
-
-
-
- View the Images →
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/MarketingGrid.vue b/docs/components/content/MarketingGrid.vue
deleted file mode 100644
index 3a4c2fd87..000000000
--- a/docs/components/content/MarketingGrid.vue
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
- These images give a lot more than other PHP Docker Images.
-
-
-
-
-
-
Production-ready
-
Built to be performant and secure to exist on the wild web.
-
-
-
-
Native Health Checks
-
Be 100% confident your application is actually running.
-
-
-
-
High Performance
-
Get the easiest experience for fine tuning performance.
-
-
-
-
Customizable & Flexible
-
Environment variables make customizations a breeze.
-
-
-
-
Native CloudFlare Support
-
Get real IP addresses from visitors from trusted proxies.
-
-
-
-
Based on official PHP
-
Upgrade from the official PHP docker images with confidence.
-
-
-
-
NGINX Unit
-
Ditch FPM for a modern way of running PHP. Designed for containers from the ground up.
-
-
-
-
Unified Logging
-
All logs are directed to STDOUT & STDERR for centralized output.
-
-
-
-
FPM + S6 Overlay
-
Our FPM-Apache & FPM-NGINX images use this intelligent init system.
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/MarketingHeader.vue b/docs/components/content/MarketingHeader.vue
deleted file mode 100644
index 83ccc4abc..000000000
--- a/docs/components/content/MarketingHeader.vue
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/MarketingHero.vue b/docs/components/content/MarketingHero.vue
deleted file mode 100644
index 542a909e5..000000000
--- a/docs/components/content/MarketingHero.vue
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- Supercharge your PHP experience, in seconds.
-
-
-
Built upon the official PHP images, our production-ready serversideup/php images take your Docker PHP experience to the next level. Enjoy variable-first configurations, nginx-unit variation, native CloudFlare support, and more.
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/MarketingOptimized.vue b/docs/components/content/MarketingOptimized.vue
deleted file mode 100644
index 7ac31e242..000000000
--- a/docs/components/content/MarketingOptimized.vue
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- Highly optimized for Laravel đĒ
-
-
-
Horizon, queues, tasks, storage linking, migrations - these images handle it all.
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/NotProse.vue b/docs/components/content/NotProse.vue
deleted file mode 100644
index 2752ea5b6..000000000
--- a/docs/components/content/NotProse.vue
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Note.vue b/docs/components/content/Note.vue
deleted file mode 100644
index aaf76c923..000000000
--- a/docs/components/content/Note.vue
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Orchestrators.vue b/docs/components/content/Orchestrators.vue
deleted file mode 100644
index 3e494caca..000000000
--- a/docs/components/content/Orchestrators.vue
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
-
-
-
- Docker
-
-
- Docker is a tool that enables users to deploy applications inside isolated containers for easy development and deployment.
-
-
-
- Read more
-
-
-
-
-
-
-
-
- Kubernetes
-
-
- Kubernetes is an open-source system for automating deployment, scaling, and management of containerized applications.
-
-
-
- Read more
-
-
-
-
-
-
-
-
- HashiCorp Nomad
-
-
- HashiCorp Nomad is an open-source cluster scheduler that automates deployment, management & scaling of apps across public, private or hybrid clouds.
-
-
-
- Read more
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Properties.vue b/docs/components/content/Properties.vue
deleted file mode 100644
index d21d6260c..000000000
--- a/docs/components/content/Properties.vue
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Property.vue b/docs/components/content/Property.vue
deleted file mode 100644
index 7ffd119fc..000000000
--- a/docs/components/content/Property.vue
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
- Name
-
-
-
- Type
-
- Description
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Resources.vue b/docs/components/content/Resources.vue
deleted file mode 100644
index 376361202..000000000
--- a/docs/components/content/Resources.vue
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
diff --git a/docs/components/content/Resources/Pattern.vue b/docs/components/content/Resources/Pattern.vue
deleted file mode 100644
index 01d2d9771..000000000
--- a/docs/components/content/Resources/Pattern.vue
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Resources/Resource.vue b/docs/components/content/Resources/Resource.vue
deleted file mode 100644
index 72e6050ba..000000000
--- a/docs/components/content/Resources/Resource.vue
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- {{ resource.name }}
-
-
-
- {{ resource.description }}
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Resources/ResourceIcon.vue b/docs/components/content/Resources/ResourceIcon.vue
deleted file mode 100644
index 78f1b566c..000000000
--- a/docs/components/content/Resources/ResourceIcon.vue
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Row.vue b/docs/components/content/Row.vue
deleted file mode 100644
index 580ef8512..000000000
--- a/docs/components/content/Row.vue
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/Search.vue b/docs/components/content/Search.vue
deleted file mode 100644
index 032f7b9de..000000000
--- a/docs/components/content/Search.vue
+++ /dev/null
@@ -1,215 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Results
-
-
-
-
-
-
-
-
- Jump to...
-
-
-
-
-
-
-
{{ group.title }}
-
-
-
-
- {{ link.name }}
-
-
-
-
-
-
-
-
-
-
- We couldn't find any results with that term. Please try again.
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/components/content/VideoEmbed.vue b/docs/components/content/VideoEmbed.vue
deleted file mode 100644
index 06e27620c..000000000
--- a/docs/components/content/VideoEmbed.vue
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/composables/states.ts b/docs/composables/states.ts
deleted file mode 100644
index c36c16477..000000000
--- a/docs/composables/states.ts
+++ /dev/null
@@ -1 +0,0 @@
-export const usePreferredProgrammingLanguage = () => useState('programming-language', () => '')
\ No newline at end of file
diff --git a/docs/content.config.ts b/docs/content.config.ts
new file mode 100644
index 000000000..e81cfdf98
--- /dev/null
+++ b/docs/content.config.ts
@@ -0,0 +1,26 @@
+import { defineContentConfig, defineCollection, z } from '@nuxt/content'
+
+export default defineContentConfig({
+ collections: {
+ landing: defineCollection({
+ type: 'page',
+ source: 'index.md'
+ }),
+ docs: defineCollection({
+ type: 'page',
+ source: {
+ include: '**',
+ exclude: ['index.md']
+ },
+ schema: z.object({
+ redirect: z.string().optional(),
+ links: z.array(z.object({
+ label: z.string(),
+ icon: z.string(),
+ to: z.string(),
+ target: z.string().optional()
+ })).optional()
+ })
+ })
+ }
+})
diff --git a/docs/content/docs/1.getting-started/.navigation.yml b/docs/content/docs/1.getting-started/.navigation.yml
new file mode 100644
index 000000000..6dca48e92
--- /dev/null
+++ b/docs/content/docs/1.getting-started/.navigation.yml
@@ -0,0 +1,2 @@
+title: Getting Started
+icon: false
diff --git a/docs/content/docs/1.getting-started/1.index.md b/docs/content/docs/1.getting-started/1.index.md
new file mode 100644
index 000000000..8cfd53719
--- /dev/null
+++ b/docs/content/docs/1.getting-started/1.index.md
@@ -0,0 +1,137 @@
+---
+title: Introduction
+description: 'Production-ready PHP Docker images built on official PHP. Optimized for security, performance, and developer experience.'
+---
+
+::hero-video
+---
+src: https://docker-php-public-assets.serversideup.net/docker-demo.mp4
+---
+::
+
+## What's "serversideup/php"
+
+:badges
+
+**serversideup/php** takes the official PHP Docker images and adds everything you need for production: better security, performance optimizations, and a developer experience that just works.
+
+## These images are very different from other PHP Docker Images
+::u-page-grid
+ :::u-page-card
+ ---
+ icon: i-features-rocket-square
+ orientation: vertical
+ ---
+ #title
+ Production Ready
+
+ #description
+ Built to be performant and secure to exist on the wild web.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-heart-square
+ orientation: vertical
+ ---
+ #title
+ Native Health Checks
+
+ #description
+ Be 100% confident your application is actually running.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-lightning-square
+ orientation: vertical
+ ---
+ #title
+ High Performance
+
+ #description
+ Get the easiest experience for fine tuning performance.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-stars-square
+ orientation: vertical
+ ---
+ #title
+ Customizable & Flexible
+
+ #description
+ Environment variables make customizations a breeze.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-cloudflare-square
+ orientation: vertical
+ ---
+ #title
+ Native CloudFlare Support
+
+ #description
+ Get real IP addresses from visitors from trusted proxies.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-php-square
+ orientation: vertical
+ ---
+ #title
+ Based on official PHP
+
+ #description
+ Upgrade from the official PHP docker images with confidence.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-frankenphp-square
+ orientation: vertical
+ ---
+ #title
+ FrankenPHP
+
+ #description
+ Ditch FPM for a modern way of running PHP. Designed for containers from the ground up.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-logging-square
+ orientation: vertical
+ ---
+ #title
+ Unified Logging
+
+ #description
+ All logs are directed to STDOUT & STDERR for centralized output.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-heartbeat-square
+ orientation: vertical
+ ---
+ #title
+ FPM + S6 Overlay
+
+ #description
+ Our FPM-Apache & FPM-NGINX images use this intelligent init system.
+ :::
+::
+
+
+
+:u-button{to="/docs/getting-started/these-images-vs-others" label="See all advantages" aria-label="Read more about the advantages" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Ready to get started?
+
+Ship PHP applications faster with a production-ready setup that includes everything you need out of the box.
+
+:u-button{to="/docs/getting-started/installation" label="Installation" aria-label="Installation" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
\ No newline at end of file
diff --git a/docs/content/docs/1.getting-started/2.container-basics.md b/docs/content/docs/1.getting-started/2.container-basics.md
new file mode 100644
index 000000000..af5e30ff5
--- /dev/null
+++ b/docs/content/docs/1.getting-started/2.container-basics.md
@@ -0,0 +1,206 @@
+---
+title: Container Basics
+description: 'Learn the basics of containers with PHP and how to use it to deploy your PHP applications.'
+---
+
+## Why even care about containers?
+
+If you're new to Docker or containers, you might be wondering why you should containerize your application in the first place. The short answer: **containers let you run your application anywhere** â from your laptop to any cloud provider â with zero changes.
+
+Key benefits of containerization:
+- **Consistency** - Your app runs the same on Mac, Windows, Linux, and production
+- **Confidence** - Infrastructure as code means easier testing and rollbacks
+- **Freedom** - No vendor lock-in; migrate hosts with minimal effort
+- **Simplicity** - Scaling from 1 to 100 containers is straightforward
+
+There are some important terms to understand when working with containers:
+
+| Term | Definition |
+|------|------------|
+| Container | A running instance of an image. |
+| Image | A template for a container to start with (ie. `serversideup/php:8.4-frankenphp`). |
+| Tag | A specific version of an image (ie. `8.4-frankenphp`). |
+| Registry | A repository of images. This is where users can pull images from to start a container. This can be places like [Docker Hub](https://hub.docker.com/r/serversideup/php) or [GitHub Packages](https://github.com/serversideup/docker-php/pkgs/container/php). |
+| Volume | A directory on your host machine that is mounted into a container. This allows you to share files between your host machine and the container. |
+| Port | Ports are virtual numbers organizing network data traffic, directing it to the correct application on a device. If you want to expose traffic to work with `http://localhost`, you would map port `80` on your host machine to port `8080` on the container. |
+| Environment Variable | A variable that is set in the container's environment. This allows you to configure the container's behavior. |
+
+## What are containers?
+Containers are isolated environments that can run on any host. They are a great way to package your application and all of its dependencies into a single unit that can be easily deployed to any environment.
+
+
+
+### Why containerize at all?
+Going through the efforts of containerizing your application gives you one extremely powerful capability:
+
+> đ **You can run your application anywhere.**
+
+Once you're at this level, you unlock a ton of new possibilities:
+
+- **Your application runs the same across Mac, Windows, and Linux** - no more "it works on my machine". Run 100% of your application on any operating system. All they need is Docker installed.
+- **Ship with more confidence** - all infrastructure configurations are *centrally managed* in Git, so you can change, test and rollback with ease
+- **No more vendor lock-in** - if a host raises their prices on you, you can migrate with very little effort
+- **Scaling is a breeze** - once you get your application in one container, it's so easy to scale up to any number of containers
+- **Improved security** - containerized apps are more secure than traditional apps because they are isolated from the host
+- **Better uptime** - if something fails during deployment, you can roll back your application to a previous version
+
+The crazier part is you don't need a Platform as an expensive Service (PaaS) to get all these benefits. Everything can be done with 100% free and open source tools.
+
+## Docker vs. Containers
+When you're first learning about containers, you'll likely hear the terms "Docker" and "containers" used interchangeably. While they are related, they are not the same thing. [Docker](https://www.docker.com/) is an open source utility for building, shipping, and running applications in containers. It's one of the most popular tools for containerization.
+
+Although you may see us reference things as "Docker containers", we're actually referring to the broader concept of containers because containers follow a standard known as the [OCI (Open Container Initiative)](https://opencontainers.org/). This means Docker containers can run on any container orchestrator that supports the OCI standard (like Kubernetes, Docker Swarm, Docker Compose, HashiCorp Nomad, etc.).
+
+So although we're going to show you best practices with Docker, this means you'll maintain your freedom and flexibility to choose how you want to run your containers.
+
+## How containers work
+If you followed our [installation guide](/docs/getting-started/installation), you've already run containers and seen them in action. Let's break down what actually happened when you ran `docker compose up`.
+
+### Images vs Containers
+Think of an **image** as a blueprint and a **container** as the actual running instance of that blueprint. When you specified `image: serversideup/php:8.4-fpm-nginx` in your `compose.yml`, you told Docker to:
+
+1. Download the `serversideup/php:8.4-fpm-nginx` image (the blueprint)
+2. Create a container from that image (the running instance)
+3. Start the container with your specified configuration
+
+You can create multiple containers from the same image â just like you can build multiple houses from the same blueprint. Each container runs independently with its own isolated filesystem and processes.
+
+### Understanding image layers
+Container images are built in layers, like a stack of pancakes. Each layer adds something new: the operating system, PHP, web servers, and configurations. When you pull an image, Docker downloads only the layers you don't already have, making updates incredibly efficient.
+
+This is why switching from PHP 8.3 to 8.4 in the installation guide was so fast â most of the layers were already on your machine, and Docker only downloaded the differences.
+
+::tip
+Image tags like `8.3-fpm-nginx` and `8.4-frankenphp` aren't just version numbers â they describe the entire stack that's included in that image. The tag tells you the PHP version and which variation (web server stack) you're getting.
+::
+
+## Key concepts
+
+### Service names
+A **service** in Docker Compose is a named container definition. Think of it as a label for a specific part of your application â like your web server, database, or cache. Each service runs in its own container and can be managed independently.
+
+In your `compose.yml`, when you define a service called `php`, you're telling Docker Compose "this is my PHP application server." You can name it anything you want â we use `php` to keep it simple, but `web`, `app`, or `backend` would work just as well.
+
+```yml [compose.yml] {2}
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+ ports:
+ - 80:8080
+```
+
+Whenever you run commands, you'll need to reference the service name you gave it.
+
+```bash [Terminal]
+docker compose run php php -v
+```
+
+If you named your service `app`, you would run the following command:
+
+```bash [Terminal]
+docker compose run app php -v
+```
+
+### Volumes: Sharing files with containers
+When you added this to your `compose.yml`:
+
+```yml
+volumes:
+ - ./:/var/www/html
+```
+
+You created a **bind mount** that connects your local project directory to the container's `/var/www/html` directory. This means:
+
+- Changes you make on your computer are instantly visible inside the container
+- The container serves your actual project files, not a copy
+- When the container stops, your files remain on your computer
+
+This is perfect for development because you can edit files with your favorite editor and see changes immediately without rebuilding the container.
+
+::note
+In production, you'll typically build your application files directly into the image instead of using volumes. We cover this in our [packaging guide](/docs/deployment-and-production/packaging-your-app-for-deployment).
+::
+
+### Ports: Accessing your container
+The `ports` configuration maps ports between your computer and the container:
+
+```yml
+ports:
+ - 80:8080
+```
+
+This means "take port 8080 inside the container and make it available on port 80 on my computer." When you visited `http://localhost` in your browser, you were actually connecting to port 80 on your computer, which Docker forwarded to port 8080 inside the container where NGINX or FrankenPHP was listening.
+
+::warning
+Only one service can use a port at a time. If you get a "port already in use" error, another service on your computer is already using that port. Try using a different port like `8000:8080`.
+::
+
+### Environment variables: Configuring your container
+Environment variables let you configure your container without modifying the image. When you set:
+
+```yml
+environment:
+ PHP_UPLOAD_MAX_FILE_SIZE: "500M"
+ PHP_OPCACHE_ENABLE: "1"
+```
+
+You're telling our PHP images to adjust PHP's configuration. Our images read these variables at startup and automatically configure PHP accordingly. This means the same image can be configured differently for development, staging, and production â just by changing environment variables.
+
+::tip{to="/docs/reference/environment-variable-specification"}
+Check out our [Environment Variable Specification](/docs/reference/environment-variable-specification) to see all available configuration options.
+::
+
+## The container lifecycle
+Understanding the lifecycle helps you work more effectively with containers:
+
+1. **Create & Start** - `docker compose up` creates and starts containers
+2. **Running** - Your application is active and serving requests
+3. **Stop** - `docker compose down` stops containers (but keeps configurations)
+4. **Remove** - Containers are deleted (but images remain for faster restarts)
+
+Important to know:
+- Stopping a container doesn't always delete it
+- Restarting is fast because the image is already downloaded
+- Any data stored inside the container (not in volumes) is lost when the container is removed
+- Your images remain on your machine until you explicitly remove them
+
+## Common Docker commands
+Here are the essential commands you'll use regularly:
+
+```bash [Terminal]
+# Start containers (creates if they don't exist)
+docker compose up
+
+# Start in background (detached mode)
+docker compose up -d
+
+# Stop and remove containers
+docker compose down
+
+# View running containers
+docker compose ps
+
+# View container logs
+docker compose logs
+
+# Follow logs in real-time
+docker compose logs -f
+
+# Execute a command in a running container
+docker compose exec php php -v
+
+# Rebuild containers after image changes
+docker compose up --build
+
+# Remove images to force fresh download
+docker compose down --rmi all
+```
+
+::tip
+The `-f` flag in `docker compose logs -f` means "follow" â it keeps showing new log entries as they happen. Press :kbd{value="ctrl"} + :kbd{value="C"} to stop following.
+::
+
+## What's next?
+Now that you understand the fundamentals of containers, let's create your first containerized PHP project.
+
+:u-button{to="/docs/getting-started/installation" label="Create your first Docker PHP project" aria-label="Create your first Docker PHP project" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
diff --git a/docs/content/docs/1.getting-started/3.installation.md b/docs/content/docs/1.getting-started/3.installation.md
new file mode 100644
index 000000000..e1680e47d
--- /dev/null
+++ b/docs/content/docs/1.getting-started/3.installation.md
@@ -0,0 +1,170 @@
+---
+head.title: 'Installation - Docker PHP - Server Side Up'
+description: 'Learn how to get started with serversideup/php Docker Images.'
+layout: docs
+title: Installation
+---
+
+::lead-p
+`serversideup/php` is compatible with any container orchestrator that supports Docker images (Kubernetes, Docker Swarm, Docker Compose, HashiCorp Nomad, etc.). All images are hosted on [DockerHub](https://hub.docker.com/r/serversideup/php) and [GitHub Packages](https://github.com/serversideup/docker-php/pkgs/container/php) for free. Containers default to running Debian, but Alpine images are also available.
+::
+
+## Quick Start
+::tip{to="/docs/getting-started/container-basics"}
+New to containers? Check out our [Container Basics guide](/docs/getting-started/container-basics) for a beginner-friendly introduction to Docker and containerization.
+::
+
+In order to run containers, we need a container engine installed such as Docker. You can follow [Docker's installation guide](https://docs.docker.com/get-started/get-docker/) to get started. Confirm Docker is working by running these commands in your terminal:
+```bash [Terminal]
+# Check Docker version
+docker --version
+
+# Check Docker Compose version
+docker compose version
+```
+
+If you see version numbers after running the commands, you're ready to go!
+
+### Create a new sample project
+Let's create a new sample project to test our Docker setup. Open up your terminal and run the following commands:
+
+```bash [Terminal]
+# Create a project directory with a public directory
+mkdir -p my-php-project/public
+
+# Change directory to our project
+cd my-php-project
+```
+
+Once we're in our project directory, we will want to create two files:
+
+1. `public/index.php` - The file that will be served when someone visits our site
+1. `compose.yml` - The place where we will put our configuration files
+
+The content of these files should look like:
+
+::code-tree{defaultValue="public/index.php"}
+
+```yml [compose.yml]
+services:
+ php:
+ # Choose our PHP version and variation
+ image: serversideup/php:8.3-fpm-nginx
+ # Expose localhost:80 to NGINX's port 8080
+ ports:
+ - 80:8080
+ # Mount current directory to /var/www/html
+ volumes:
+ - ./:/var/www/html
+ # PHP settings that we can override
+ environment:
+ PHP_UPLOAD_MAX_FILE_SIZE: "250M"
+ PHP_OPCACHE_ENABLE: "0"
+```
+
+```php [public/index.php]
+
+```
+::
+
+Save these files and ensure they are in the exact structure above.
+
+### Bringing up your PHP app
+From your project root directory, run the following command to start your PHP app:
+
+::warning
+Make sure you are running the following commands from your **project root directory** (`my-php-project`). If you do not have `compose.yml` in the same directory as you run this command, the command will not work. Also, make sure you don't have any other containers or services that are currently running on port 80. If you do, you will need to stop them before running the following command.
+::
+
+::steps{level="4"}
+
+#### Start the PHP container
+```bash [Terminal]
+docker compose up
+```
+You'll see the logs appear in your terminal. **Keep your terminal open** as we'll need it to control the container.
+
+
+
+#### Viewing your PHP app
+To view your PHP app, open your browser and navigate to `http://localhost`. You should see the PHP info page showing PHP `8.3` with the `fpm-nginx` variation:
+
+
+
+You can see the PHP version is in the upper left corner of the page. But what's also cool is you can see the settings we configured in the `compose.yml` file are being applied.
+
+Look for these values in the PHP info page:
+
+- `upload_max_filesize` - This should show `250M`
+- `opcache.enable` - This should show `Off`
+
+::
+
+### Making changes
+::caution
+To have our changes take effect, we must restart the containers.
+::
+
+Let's make some upgrades to our PHP app:
+
+1. Let's upgrade to PHP 8.4
+1. Let's use FrankenPHP instead of FPM-NGINX
+2. Turn on OPCache
+3. Increase the upload limit to 500M
+
+To do this, we need to need to:
+
+::steps{level="4"}
+
+#### Stop the container
+**Press :kbd{value="ctrl"} + :kbd{value="C"} on the original terminal window** or you can run the following command *in a new terminal window from your project root directory*:
+```bash [Terminal]
+docker compose down
+```
+
+#### Making changes to your PHP app
+Make the updates below to your `compose.yml` file:
+
+```yml [compose.yml]{3-4,10-13}
+services:
+ php:
+ # Change image to 8.4 with FrankenPHP
+ image: serversideup/php:8.4-frankenphp
+ ports:
+ - 80:8080
+ volumes:
+ - ./:/var/www/html
+ environment:
+ # Increase the upload limit to 500M
+ PHP_UPLOAD_MAX_FILE_SIZE: "500M"
+ # Turn OPCache on
+ PHP_OPCACHE_ENABLE: "1"
+```
+
+#### Bring the container up again
+```bash [Terminal]
+docker compose up
+```
+You'll see the logs appear in your terminal. **Keep your terminal open** as we'll need it to control the container.
+
+#### Refresh your browser
+
+Check `http://localhost` again and you should see the changes we made:
+
+
+
+Holy smokes! We've upgraded to PHP 8.4 and you're using FrankenPHP! You can also find the changes to the PHP settings have been applied.
+
+
+
+::
+
+## You've got this đĒ
+You've successfully created your first PHP app with Docker. Better yet, you've seen the power of serversideup/php where it's easy to change your PHP version and variation by changing a single line in your configuration file.
+
+If you're curious what the whole process looks like from Development to Production, check out out guide below.
+
+:u-button{to="/docs/deployment-and-production/development-to-production" label="Learn how to deploy your PHP app from Development to Production" aria-label="Learn how to deploy your PHP app from Development to Production" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
\ No newline at end of file
diff --git a/docs/content/docs/1.getting-started/4.these-images-vs-others.md b/docs/content/docs/1.getting-started/4.these-images-vs-others.md
new file mode 100644
index 000000000..503a07fa4
--- /dev/null
+++ b/docs/content/docs/1.getting-started/4.these-images-vs-others.md
@@ -0,0 +1,327 @@
+---
+title: These Images vs Others
+description: 'Discover why thousands of developers trust serversideup/php for their production PHP applications.'
+---
+
+## The Problem with Traditional PHP Deployment
+
+If you've ever deployed a PHP application to production, you've probably experienced one (or all) of these frustrations:
+
+- **"It works on my machine"** - Your local environment doesn't match production, leading to mysterious bugs that only appear after deployment
+- **Configuration Hell** - Spending hours tweaking `php.ini`, `www.conf`, and web server configs across multiple servers
+- **Security Vulnerabilities** - Running as root, outdated extensions, or misconfigured permissions exposing your application to attacks
+- **Manual Server Management** - SSH-ing into servers to update PHP, install extensions, or troubleshoot issues
+- **Inconsistent Environments** - Each server is slightly different, making debugging and scaling a nightmare
+- **Framework-Specific Tweaks** - Researching and applying dozens of optimizations for Laravel or WordPress performance
+
+You're not alone. These are the exact problems that led us to create `serversideup/php`.
+
+## How serversideup/php Solves These Problems
+
+`serversideup/php` is built on the official PHP images but adds everything needed for real-world production use:
+
+- â
**Works Identically Everywhere** - Same container runs on your laptop, CI/CD, and production
+- â
**Zero Configuration Required** - Production-ready defaults with simple environment variable customization
+- â
**Secure by Default** - Runs as unprivileged user, hardened for the open internet
+- â
**Batteries Included** - Composer, common extensions, and helpful utilities pre-installed
+- â
**Framework Optimized** - Pre-configured for Laravel and WordPress best practices
+- â
**Modern Architecture** - FrankenPHP, S6 Overlay, native health checks, and multi-process support
+
+::note
+**Trusted by the Community** - Over 1 million Docker image pulls and actively used by Laravel and PHP developers worldwide.
+::
+
+## Feature Comparison
+
+See how `serversideup/php` stacks up against other PHP deployment options:
+
+| Feature | **Traditional Server** | **Official PHP Images** | **serversideup/php** |
+|---------|------------------------|-------------------------|----------------------|
+| Consistent environments | â | â
| â
|
+| Easy to scale | â | â
| â
|
+| Base OS Options | Manual Setup | Debian, Alpine | Debian, Alpine |
+| PHP Version Management | Manual Updates | Easy Upgrades | Easy Upgrades |
+| Multi-arch support | â | â
| â
|
+| Production-ready defaults | â ī¸ Manual | â | â
|
+| Runs as non-root user | â ī¸ Manual | â | â
|
+| Variable-first configuration | â | â | â
|
+| Includes `composer` | â ī¸ Manual | â | â
|
+| Includes `install-php-extensions` | â | â | â
|
+| Built-in security hardening | â ī¸ Manual | â | â
|
+| Laravel & WordPress optimizations | â ī¸ Manual | â | â
|
+| NGINX + FPM variation | â ī¸ Manual | â | â
|
+| FrankenPHP support | â | â | â
|
+| Native health checks | â ī¸ Manual | â | â
|
+| S6 Overlay init system | â | â | â
|
+| Published Registries | N/A | DockerHub | [DockerHub](https://hub.docker.com/r/serversideup/php) + [GitHub Packages](https://github.com/serversideup/docker-php/pkgs/container/php) |
+
+## Key Advantages Explained
+
+### Security First: Unprivileged by Default
+
+::caution
+Running containers as `root` in production is a critical security vulnerability. If your application is compromised, an attacker gains root access to your container which could lead to a full system compromise.
+::
+
+Our images run as the `www-data` user by default, following the principle of least privilege. This means:
+
+- **Limited Blast Radius** - If your application is compromised, don't have root privileges
+- **Kubernetes Compatible** - Many Kubernetes clusters require non-root containers by policy
+- **Production Best Practice** - Aligns with NIST and CIS security benchmarks
+
+We also include additional security hardening:
+- Disabled dangerous PHP functions by default (but you control them)
+- Proper file permissions out of the box
+- CloudFlare trusted proxy support for accurate IP logging
+- Regular security updates from official PHP base images
+
+### Performance Optimized
+
+Every image includes production-tuned defaults based on real-world PHP applications:
+
+**OPcache Configuration**
+- Pre-configured for optimal memory usage and caching strategy
+- Easily toggle between development and production modes
+- Smart defaults that work for most applications
+
+**Process Management**
+- PHP-FPM tuned for typical low resource usage for Laravel/WordPress workloads
+- S6 Overlay for intelligent process supervision
+- Graceful shutdown handling for zero-downtime deployments
+
+**Modern Options**
+- FrankenPHP support for incredible performance gains (2-3x faster than FPM in many claims made by developers)
+- Native support for NGINX Unit
+- HTTP/2 and HTTP/3 ready configurations
+
+::tip
+Need to customize performance settings? Just set an environment variable like `PHP_OPCACHE_ENABLE=1` or `PHP_MEMORY_LIMIT=512M`. No config files needed.
+::
+
+### Developer Experience: Variable-First Configuration
+
+Stop editing config files. Stop rebuilding images for simple changes. Just set environment variables:
+
+```yml [compose.yml] {5-9,11-12}
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+ environment:
+ # Change any PHP setting with environment variables
+ PHP_MEMORY_LIMIT: "512M"
+ PHP_UPLOAD_MAX_FILE_SIZE: "100M"
+ PHP_MAX_EXECUTION_TIME: "180"
+ PHP_OPCACHE_ENABLE: "1"
+
+ # Run Migrations, Storage Link, Caching, and more
+ AUTORUN_ENABLED: "true"
+```
+
+No Dockerfile modifications. No config file mounting. No image rebuilds. Just simple environment variables with production-ready defaults.
+
+:u-button{to="/docs/reference/environment-variable-specification" label="View all environment variables" aria-label="View all environment variables" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### Production-Ready Out of the Box
+
+Our images are built for the wild internet:
+
+**Security Hardening**
+- Unprivileged user execution
+- Disabled dangerous PHP functions (you control which ones)
+- Proper file permissions and ownership
+- Regular security updates
+
+**Monitoring & Observability**
+- Built-in health check endpoints
+- All logs to STDOUT/STDERR for centralized logging
+- Compatible with Prometheus, DataDog, and other monitoring tools
+
+**Deployment Features**
+- Zero-downtime deployment support
+- Graceful shutdown handling
+- Queue worker and scheduler support for Laravel
+- Automatic migration running on container start (optional)
+
+**Infrastructure as Code**
+- Version your entire PHP stack in a `compose.yml` file
+- Reproduce every environment with 100% consistency
+- Easy rollbacks to previous versions
+
+### Framework Optimized for Laravel & WordPress
+
+We've done the hard work of optimizing for PHP's most popular frameworks:
+
+**Laravel Automations**
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+ environment:
+ # Run migrations, storage link, caching, and more
+ AUTORUN_ENABLED: "true"
+```
+
+:u-button{to="/docs/framework-guides/laravel/automations" label="Learn More About Laravel Automations" aria-label="Learn More About Laravel Automations" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+**WordPress Optimizations**
+- Pre-installed PHP extensions WordPress needs
+- Optimized PHP settings for WordPress performance
+- Support for popular WordPress hosting patterns
+
+**All Frameworks Welcome**
+
+While we optimize for Laravel and WordPress, our images work great with:
+- Symfony
+- CodeIgniter
+- Drupal
+- Joomla
+- Custom PHP applications
+
+### Batteries Included
+
+Unlike the official PHP images, we include tools you'll actually use:
+
+**Composer**
+- Pre-installed and ready to use
+- No need to install it in every Dockerfile
+- Supports Composer v2 for lightning-fast installs
+
+**install-php-extensions**
+- The popular [mlocati/docker-php-extension-installer](https://github.com/mlocati/docker-php-extension-installer) included
+- Install any PHP extension with a single command
+- Handles all dependencies automatically
+
+```dockerfile [Dockerfile]
+FROM serversideup/php:8.4-cli
+
+# Switch to root to install extensions
+USER root
+
+# Install any PHP extension easily
+RUN install-php-extensions redis imagick mongodb
+
+# Switch back to unprivileged user
+USER www-data
+```
+
+**Modern Init System**
+- S6 Overlay for our FPM-Apache and FPM-NGINX variations
+- Proper process supervision in containers
+- Better than Supervisor for containerized workloads
+- Graceful handling of signals for zero-downtime deployments
+
+**Multiple Variations**
+Choose the right tool for your use case:
+- [`cli`](/docs/image-variations/cli) - Command-line scripts, Composer, CI/CD
+- [`fpm`](/docs/image-variations/fpm) - Just PHP-FPM (bring your own web server)
+- [`fpm-nginx`](/docs/image-variations/fpm-nginx) - PHP-FPM + NGINX (most popular)
+- [`fpm-apache`](/docs/image-variations/fpm-apache) - PHP-FPM + Apache
+- [`frankenphp`](/docs/image-variations/frankenphp) - Modern, incredibly fast (2-3x FPM performance)
+- [`unit`](/docs/image-variations/unit) - NGINX Unit for high-performance applications (deprecated)
+
+## Real-World Impact
+
+Don't just take our word for it. Here's what developers are experiencing:
+
+::note
+**By the Numbers**
+- **1,000,000+** Docker image pulls
+- **2,000+** GitHub stars
+- **Active Community** with regular updates and contributions
+- **Production-Proven** across startups to enterprise applications
+::
+
+**Time Savings**
+- **Minutes vs Hours** - Go from zero to production-ready PHP in minutes, not hours of server configuration
+- **Consistent Deployments** - Eliminate "works on my machine" debugging sessions
+- **Pre-configured** - Stop researching optimal PHP settings for Laravel
+
+**Better Security**
+- **Hardened by Default** - Security best practices built-in, not bolted on
+- **Regular Updates** - Based on official PHP images with security patches
+- **Audit Trail** - Infrastructure as code means every change is tracked
+
+**Happier Developers**
+- **Simple Configuration** - Environment variables instead of config file archaeology
+- **Modern Tools** - FrankenPHP, native health checks, and container-native features
+- **Community Support** - Active community and comprehensive documentation
+
+## Making the Switch
+
+### From Traditional Servers (LAMP/LEMP)
+
+If you're currently managing PHP on traditional servers, the switch to containers might seem daunting, but it's easier than you think:
+
+**Benefits You'll Gain**
+- Identical environments from development to production
+- Scale horizontally by adding more containers
+- Roll back bad deployments in seconds
+- Version control your entire infrastructure
+
+See our quick start guide to run your first PHP container.
+:u-button{to="/docs/getting-started/installation" label="Quick Start Guide" aria-label="Quick Start Guide" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### From Official PHP Images
+
+Already using Docker with official PHP images? Switching is trivially easy.
+
+:u-button{to="/docs/guide/migrating-from-official-php-images" label="Official PHP Migration Guide" aria-label="Official PHP Migration Guide" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### From Other Docker Images
+
+Switching from Bitnami, custom images, or other PHP Docker images is straightforward:
+
+**Key Differences to Note**
+- We run as `www-data` (UID 33) by default, not root
+- Configuration via environment variables, not config file mounts
+- Web root is `/var/www/html` by default
+- All variations expose port `8080` (unprivileged port)
+
+**Migration Strategy**
+1. Review our [environment variable specification](/docs/reference/environment-variable-specification)
+2. Map your current config to environment variables
+3. Test in development first
+4. Switch image tag in production
+
+::warning
+Always test in a development or staging environment first to ensure your application works correctly with the new image.
+::
+
+## Ready to Get Started?
+
+You're just minutes away from a better PHP deployment experience.
+
+::steps
+
+### Choose Your Path
+
+**Quick Start (New Projects)**
+Follow our installation guide to create your first PHP app with Docker in under 5 minutes.
+
+:u-button{to="/docs/getting-started/installation" label="Quick Start Guide" aria-label="Quick Start Guide" size="md" color="primary" variant="solid" trailing-icon="i-lucide-rocket" class="font-bold text-white bg-blue-600 hover:bg-blue-700"}
+
+**Migration Guide (Existing Apps)**
+Already have a PHP application? Learn how to containerize it with serversideup/php.
+
+:u-button{to="/docs/guide/migrating-from-official-php-images" label="Migration Guides" aria-label="Migration Guides" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### Choose an Image Variation
+
+Not sure which image variation is right for you? We have a guide for that.
+
+:u-button{to="/docs/getting-started/choosing-an-image" label="Choosing an Image" aria-label="Choosing an Image" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+::
+
+## Questions?
+
+We're here to help! Check out these resources:
+
+- đ [Full Documentation](/docs) - Comprehensive guides and references
+- đŦ [GitHub Discussions](https://github.com/serversideup/docker-php/discussions) - Ask questions and share experiences
+- đ [GitHub Issues](https://github.com/serversideup/docker-php/issues) - Report bugs or request features
+- đŖī¸ [Discord](https://serversideup.net/discord) - Join our community and get help from the team and other developers.
+
+::tip
+Join our community! Star us on [GitHub](https://github.com/serversideup/docker-php) and follow updates.
+::
\ No newline at end of file
diff --git a/docs/content/docs/1.getting-started/5.choosing-an-image.md b/docs/content/docs/1.getting-started/5.choosing-an-image.md
new file mode 100644
index 000000000..5512fed40
--- /dev/null
+++ b/docs/content/docs/1.getting-started/5.choosing-an-image.md
@@ -0,0 +1,148 @@
+---
+title: Choosing an Image
+description: 'Learn how to choose the right image for your use case.'
+---
+::lead-p
+Choosing an image might be a little intimidating because there are so many options, but this ultimately gives you a ton of flexibility. This guide will help simplify your decision making process on choosing the right image.
+::
+
+## Registry: Where images are located
+Before diving into the different options available, let's understand where these images come from. The source code is [hosted on GitHub](https://github.com/serversideup/docker-php){target="_blank"} with an automated process that builds and uploads images to container registries:
+
+1. [Docker Hub](https://hub.docker.com/r/serversideup/php)
+2. [GitHub Packages](https://github.com/serversideup/docker-php/pkgs/container/php)
+
+To use these images, you need to specify a certain "tag" for the image you want. For example, the `8.4` version of the `fpm-nginx` variation is tagged as:
+
+```bash
+serversideup/php:8.4-fpm-nginx
+```
+
+This image gives you the latest stable patch version of PHP 8.4 running the `fpm-nginx` variation. Since no registry is specified, it defaults to Docker Hub.
+
+When selecting an image, you'll need to decide on:
+
+1. PHP version
+2. PHP variation
+3. Base operating system
+4. serversideup/php version (for production environments)
+
+## Our most popular images
+All images are intelligently tagged with the PHP version and variation, allowing you to easily select the right image for your use case.
+
+If you don't specify a variation, it defaults to `cli` and the latest supported Debian release for that variation.
+
+Our most popular tags include:
+| âī¸ Variation | đ Version |
+| ------------ | ---------- |
+| cli | **Debian Based** [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.4-cli&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.3-cli&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.2-cli&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.1-cli&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.0-cli&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=7.4-cli&page=1&ordering=-name) **Alpine Based** [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.4-cli-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.3-cli-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.2-cli-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.1-cli-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.0-cli-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=7.4-cli-alpine&page=1&ordering=-name) |
+| fpm | **Debian Based** [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.4-fpm&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.3-fpm&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.2-fpm&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.1-fpm&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.0-fpm&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=7.4-fpm&page=1&ordering=-name) **Alpine Based** [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.4-fpm-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.3-fpm-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.2-fpm-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.1-fpm-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.0-fpm-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=7.4-fpm-alpine&page=1&ordering=-name) |
+| fpm-apache | **Debian Based** [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.4-fpm-apache&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.3-fpm-apache&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.2-fpm-apache&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.1-fpm-apache&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.0-fpm-apache&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=7.4-fpm-apache&page=1&ordering=-name) |
+| fpm-nginx | **Debian Based** [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.4-fpm-nginx&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.3-fpm-nginx&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.2-fpm-nginx&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.1-fpm-nginx&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.0-fpm-nginx&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=7.4-fpm-nginx&page=1&ordering=-name) **Alpine Based** [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.4-fpm-nginx-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.3-fpm-nginx-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.2-fpm-nginx-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.1-fpm-nginx-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.0-fpm-nginx-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=7.4-fpm-nginx-alpine&page=1&ordering=-name) |
+| frankenphp | **Debian Based** [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.4-frankenphp&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.3-frankenphp&page=1&ordering=-name) **Alpine Based** â ī¸ Some users are experiencing [known performance issues](https://frankenphp.dev/docs/known-issues/){target="_blank"} with FrankenPHP on Alpine. Consider using the Debian version. [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.4-frankenphp-alpine&page=1&ordering=-name) [{.h-5.w-auto :zoom=false}](https://hub.docker.com/r/serversideup/php/tags?name=8.3-frankenphp-alpine&page=1&ordering=-name) |
+| unit (deprecated) | NGINX stopped supporting NGINX Unit and archived the project. NGINX Unit will eventually be removed from our project. [Learn more â](/docs/image-variations/unit/) |
+
+## The full tag schema
+Our tagging process is quite flexible, and it can become quite complex, but don't worry -- we've spent a ton of time applying sensible defaults to give you the best experience.
+
+The full tag schema is as follows:
+```jinja
+{{registry-url}}/serversideup/php:{{release-prefix}}-{{php-version}}-{{variation-name}}-{{operating-system}}-v{{github-release-version}}
+```
+
+Here's what each part means:
+
+| Option | Default | Other Options |
+|--------|---------|---------------|
+| `{{registry-url}}` Which registry to pull images from. | `''` (Docker Hub) | `ghcr.io` (GitHub Packages) |
+| `{{release-prefix}}` The prefix of the release. | `''` (stable) | `beta` (beta releases) |
+| `{{php-version}}` The version of PHP to use. | Latest stable PHP minor version (ie. `8.5`) | `8.4` `8.3` `8.2` `8.1` `8.0` `7.4` (you can also specify the full version number, ie. `8.4.1`) |
+| `{{variation-name}}` The name of the variation to use. | `cli` | `fpm` `fpm-apache` `fpm-nginx` `frankenphp` `unit` (deprecated) |
+| `{{operating-system}}` The operating system to use. | `debian` | `alpine` `bullseye` `bookworm` `trixie` |
+| `{{github-release-version}}` The version of the GitHub release to use. | (latest stable release) | See our [GitHub Releases](https://github.com/serversideup/docker-php/releases){target="_blank"} for specific versions. |
+
+## PHP version
+There are many factors to consider when choosing the right PHP version. Best practices include:
+
+1. Choose the latest PHP version (as your dependencies allow)
+2. Choose a PHP version that is receiving [active and security support by PHP](https://www.php.net/supported-versions.php){target="_blank"}
+
+If you need help understanding what's new in each PHP version, check out [the official PHP changelog](https://www.php.net/ChangeLog-8.php){target="_blank"}. This will give you a detailed overview of the changes and improvements in each version.
+
+## PHP variation
+Choose from several variations to suit your needs. Each variation is optimized for specific use cases.
+
+| Variation | Description |
+|-----------|-------------|
+| `cli` | Minimal image for running PHP from the command line only. No web server included. |
+| `fpm` | Runs PHP-FPM without a web server. Ideal for microservices architectures where you need a dedicated PHP backend. |
+| `fpm-apache` | Combines PHP-FPM with Apache as a reverse proxy. Ideal for running WordPress with Docker. |
+| `fpm-nginx` | Combines PHP-FPM with NGINX as a reverse proxy. This is the traditional setup widely adopted for modern PHP applications, including Laravel. |
+| `frankenphp` | Modern application server built on Caddy that runs everything in a single process. Ideal for Laravel/Symfony applications with worker mode support, automatic HTTPS, and HTTP/2 and HTTP/3 protocols. |
+| `unit` (deprecated) | Uses NGINX Unit as a modern application server that runs everything in a single process. Consider migrating to FrankenPHP for a modern alternative. |
+
+### CLI
+The CLI variation is a minimal image designed for running PHP from the command line only. It does not include a web server. Use this variation when you need a disposable and repeatable method for easily running PHP scripts from your terminal.
+
+:u-button{to="/docs/image-variations/cli" label="Learn more about the CLI variation" aria-label="Learn more about the CLI variation" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### FPM
+The FPM (Fast Process Manager) variation runs PHP-FPM without a web server. This variation is ideal for microservices architectures where you need a dedicated PHP backend.
+
+Use this variation when you already have a separate proxy or load balancer handling static content and routing PHP requests to your FPM container. This is commonly used in larger-scale deployments.
+
+:u-button{to="/docs/image-variations/fpm" label="Learn more about the FPM variation" aria-label="Learn more about the FPM variation" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### FPM-Apache
+The FPM-Apache variation combines PHP-FPM with Apache as a reverse proxy. Apache serves static content directly and forwards PHP requests to PHP-FPM for processing.
+
+This is an excellent choice for WordPress sites and applications that specifically require Apache features or `.htaccess` support.
+
+:u-button{to="/docs/image-variations/fpm-apache" label="Learn more about the FPM-Apache variation" aria-label="Learn more about the FPM-Apache variation" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+
+### FPM-NGINX
+The FPM-NGINX variation combines PHP-FPM with NGINX as a reverse proxy. This is the traditional setup that has been widely adopted for modern PHP applications, including many Laravel deployments.
+
+NGINX serves static files efficiently and proxies PHP requests to PHP-FPM, providing excellent performance and flexibility.
+
+:u-button{to="/docs/image-variations/fpm-nginx" label="Learn more about the FPM-NGINX variation" aria-label="Learn more about the FPM-NGINX variation" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### FrankenPHP
+The FrankenPHP variation is a modern application server built on top of the Caddy web server. It runs everything in a single process, eliminating the complexity of managing PHP-FPM and a separate web server.
+
+Use this variation for Laravel or Symfony applications that can benefit from worker mode, automatic HTTPS, and modern protocols like HTTP/2 and HTTP/3. This is the recommended variation for new projects seeking cutting-edge performance.
+
+:u-button{to="/docs/image-variations/frankenphp" label="Learn more about the FrankenPHP variation" aria-label="Learn more about the FrankenPHP variation" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### Unit (deprecated)
+::warning{to="https://github.com/nginx/unit?tab=readme-ov-file#nginx-unit" target="_blank"}
+In October 2025, NGINX stopped supporting NGINX Unit and archived the project. NGINX Unit will eventually be removed from our project. [See the official announcement â](https://github.com/nginx/unit?tab=readme-ov-file#nginx-unit)
+::
+
+The Unit variation uses NGINX Unit as an application server that runs everything in a single process. Since NGINX Unit is no longer maintained, consider migrating to FrankenPHP for a single-process alternative.
+
+## Operating Systems
+Choosing an operating system comes down to a few preferences, but ultimately you need to make sure your dependencies are available for the operating system you choose.
+
+| Operating System | Description |
+|-----------|-------------|
+| `debian` (default) | Debian is a popular Linux distribution that is known for its stability and reliability. It is the default operating system for our images. |
+| `alpine` | Alpine is a lightweight Linux distribution that is known for its small size and low resource usage. |
+
+### Specific versions
+::note
+Not all operating systems are available for all image variations and PHP versions. Double check [Docker Hub](https://hub.docker.com/r/serversideup/php/tags){target="_blank"} and [GitHub Packages](https://github.com/serversideup/docker-php/pkgs/container/php){target="_blank"} for the most accurate list of available tags.
+::
+We also support specific versions of operating systems. So this means that you can choose versions like:
+
+- `bookworm`
+- `trixie`
+- `alpine3.16`
+- `alpine3.17`
+- `alpine3.18`
+- `alpine3.19`
+- `alpine3.20`
+- `alpine3.21`
+- `alpine3.22`
+
diff --git a/docs/content/docs/1.getting-started/6.default-configurations.md b/docs/content/docs/1.getting-started/6.default-configurations.md
new file mode 100644
index 000000000..eea642749
--- /dev/null
+++ b/docs/content/docs/1.getting-started/6.default-configurations.md
@@ -0,0 +1,158 @@
+---
+head.title: 'Installation - Docker PHP - Server Side Up'
+description: 'Learn how to get started with serversideup/php Docker Images.'
+layout: docs
+---
+
+::lead-p
+`serversideup/php` is configured for real-world deployments right out of the box. This saves you many hours so you can launch faster than ever.
+::
+
+## Production-ready and optimized for Laravel & WordPress
+All values are defaulted to improve security and performance. We also spent the time to carefully review official documentation and include packages that are required specifically for Laravel and WordPress.
+
+## Unprivileged by Default
+
+All images default to running as the OS-native `www-data` user instead of `root`. This is a critical security practice that limits what an attacker can do if they compromise your container.
+
+### Why this matters
+Running as a non-root user means:
+
+- **Better security**: If someone exploits a vulnerability in your app, they can't gain root access to your container or host system
+- **Production-ready**: This follows Docker and Kubernetes security best practices
+- **Easier compliance**: Many security policies require non-root containers
+
+### What this means for you
+Running unprivileged has two practical implications you should know about:
+
+#### Different ports for web servers
+On Linux systems, only root can bind to ports below 1024 (like 80 and 443). Since our containers don't run as root, they use higher port numbers by default:
+
+| **Variation** | **Default Ports** |
+|---------------|-------------------|
+| cli | (none) |
+| fpm | 9000 |
+| fpm-nginx | HTTP: 8080, HTTPS: 8443 |
+| fpm-apache | HTTP: 8080, HTTPS: 8443 |
+| unit | HTTP: 8080, HTTPS: 8443 |
+| frankenphp | HTTP: 8080, HTTPS: 8443 |
+
+#### File permissions to be aware of
+The `www-data` user has different IDs depending on your base operating system:
+- **Debian**: UID/GID `33:33`
+- **Alpine**: UID/GID `82:82`
+
+::tip
+We kept these as the OS defaults to maintain compatibility with other tools and images. If you're mounting volumes from your host machine or switching between Debian and Alpine, you might need to adjust file permissions.
+::
+
+### Running on standard HTTP/HTTPS ports (80 and 443)
+Don't worryâyou have two easy options to run your app on the standard web ports:
+
+#### Docker port mapping (recommended for development)
+Use Docker's built-in port mapping to route traffic from port 80/443 on your host to the container's higher ports:
+
+```bash [Terminal]
+docker run -p 80:8080 -p 443:8443 serversideup/php:8.4-fpm-nginx
+```
+
+This tells Docker: "Take traffic coming to port 80 on my machine and send it to port 8080 in the container."
+
+#### Reverse proxy (recommended for production)
+Use a reverse proxy like [Caddy](https://caddyserver.com/){target="_blank"}, [Traefik](https://traefik.io/){target="_blank"}, or [NGINX](https://nginx.org/){target="_blank"} to handle SSL certificates and route traffic to your containers. This is the preferred approach for production because it:
+- Automatically handles SSL certificate generation and renewal
+- Can route to multiple containers/services
+- Provides additional security features like rate limiting
+
+:u-button{to="/docs/deployment-and-production/configuring-ssl" label="Learn about SSL configuration" aria-label="Learn about SSL configuration" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Default Environment Variables
+Environment variables give you a ton of flexibility to customize your container without the complexity of mounting custom configuration files. By default, these images are set to production-ready values. You can read more about the available environment variables below.
+
+:u-button{to="/docs/reference/environment-variable-specification" label="Learn more about environment variables" aria-label="Learn more about environment variables" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Default PHP INI Settings
+
+| **PHP INI file** | **Description** |
+|-----------------|-----------------|
+| **Image Default** `/usr/local/etc/php/conf.d/serversideup-docker-php.ini` | This is our production-ready PHP ini file that accepts environment variables. You can [review it in greater detail on GitHub](https://github.com/serversideup/docker-php/blob/main/src/common/usr/local/etc/php/conf.d/serversideup-docker-php.ini){target="_blank"}. |
+| **Adding your own PHP INI file** `/usr/local/etc/php/conf.d/*.ini` | If you want to use our defaults, you can simple create a `.ini` file in the `/usr/local/etc/php/conf.d/` directory and it will be loaded automatically. This will be loaded *after* our default ini file, so whatever you set in your own ini file will override the default values. |
+
+:u-button{to="/docs/customizing-the-image/changing-common-php-settings" label="Learn more about changing common PHP settings" aria-label="Learn more about changing common PHP settings" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Default PHP Extensions
+The following extensions are installed by default:
+
+| **Extension** | **Description** | **Why we included it** |
+|---------------|-----------------|------------------------|
+| [opcache](https://www.php.net/manual/en/book.opcache.php) | The Zend OPcache provides faster PHP execution through opcode caching and optimization. | This is a must-have for PHP performance. â ī¸ OPcache is disabled by default but can easily be enabled with [`PHP_OPCACHE_ENABLE=1`](/docs/reference/environment-variable-specification).|
+| [mysqli](https://www.php.net/manual/en/book.mysqli.php) | The "MySQL Improved" extension is an older extension for connecting to MySQL 4.1 and above. | **Enabled for fpm-apache only**. This is a legacy MySQL connector required for WordPress.|
+| [pcntl](https://www.php.net/manual/en/intro.pcntl.php) | Process Control support in PHP implements the Unix style of process creation, program execution, signal handling and process termination. | This is required for [Laravel queues and Laravel Horizon](https://laravel.com/docs/10.x/queues#timeout)|
+| [pdo_mysql](https://www.php.net/manual/en/ref.pdo-mysql.php) | The MySQL PDO extension allows you to connect to MySQL databases. | MySQL and MariaDB databases are very popular. |
+| [pdo_pgsql](https://www.php.net/manual/en/ref.pdo-pgsql.php) | The PostgreSQL PDO extension allows you to connect to PostgreSQL databases. | PostgreSQL databases are very popular. |
+| [redis](https://www.php.net/manual/en/book.redis.php) | The Redis extension allows you to connect to Redis databases. | Redis is very popular for caching and it's also required for [Laravel Horizon](https://laravel.com/docs/10.x/horizon). Our tests concluded adding this package only added 2MB to the image size. |
+| [zip](https://www.php.net/manual/en/book.zip.php) | The Zip extension allows you to create and extract zip files. | We included this for the popularity of apps working with ZIP files. This package is also required if you're working with attachments on [Laravel Dusk](https://laravel.com/docs/10.x/dusk#attaching-files). |
+
+The official PHP images are already providing the following extensions:
+- ctype
+- curl
+- dom
+- fileinfo
+- filter
+- hash
+- mbstring
+- openssl
+- pcre
+- session
+- tokenizer
+- xml
+
+If you need to install additional extensions, you can use the guide below to learn more.
+
+:u-button{to="/docs/customizing-the-image/installing-additional-php-extensions" label="Learn more about installing additional PHP extensions" aria-label="Learn more about installing additional PHP extensions" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Default Operating System Packages
+The following packages are installed by default:
+
+| **Package** | **Description** | **Image variations** | **Why we included it** |
+|-------------|-----------------|----------------------|------------------------|
+| `libfcgi-bin` (Debian) `fcgi` (Alpine) | FastCGI is a protocol for interfacing interactive programs with a web server. | *-fpm *-fpm-nginx *-fpm-apache | This is required for the webserver to interface with PHP-FPM and the [`php-fpm-healthcheck`](https://github.com/renatomefi/php-fpm-healthcheck) project. |
+| `gettext-base` (Debian) `gettext` (Alpine) | GNU gettext is a framework for translating user interfaces. | *-fpm-nginx *-fpm-apache | This is required for the `envsubst` command. We use this command to process templates on container initialization. |
+| `libstdc++6` (Debian) `libstdc++` (Alpine) | The GNU Standard C++ Library is a C++ standard library. | *-frankenphp | This is [required for the watcher to run](https://github.com/php/frankenphp/blob/e917ab79742c9e4703023861fdc7a86cdb59da1e/Dockerfile#L135-L138) with FrankenPHP. |
+| `procps` | The procps package contains programs for monitoring your system and its processes. | * (only Debian images) | This is required for `pgrep` so we can use that for our native health checks. |
+| `shadow` | Shadow is required for the `usermod` command. | *-alpine | This is required to change the UID and GID of the `www-data` user in `docker-php-serversideup-set-id`. |
+
+:u-button{to="/docs/getting-started/choosing-an-image#operating-system" label="Learn which operating systems are available" aria-label="Learn which operating systems are available" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+
+## Health Checks
+By default, all health checks for web servers (Apache, Unit, NGINX, etc.) are located at `/healthcheck`. You should receive an `OK` response if the container is healthy.
+
+For our `fpm` variation, we use the [`php-fpm-healthcheck`](https://github.com/renatomefi/php-fpm-healthcheck) script to verify the health of PHP-FPM. This script is located at `/usr/local/bin/php-fpm-healthcheck`.
+
+The `cli` variation does not have a health check because it doesn't really make sense to have one. Would love to discuss more if you feel different.
+
+:u-button{to="/docs/guide/using-healthchecks-with-laravel" label="Learn more about health checks" aria-label="Learn more about health checks" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+
+## Default Entrypoint Scripts
+We created an entrypoint script that scans the `entrypoint.d` directory for other shell scripts to execute before the main container process starts. All scripts are executed in alphabetical order so you can have full control over what script execution order.
+
+We also provide a few default scripts to help you get started.
+
+| **Script Name** | **Description** | **Image variations** |
+|------------|-----------------|----------------------|
+| `0-container-info.sh` | Shows basic execution information, such as Docker User, UID, GID, etc. | all |
+| `1-log-output-level.sh` | Sets PHP log output level to match `LOG_OUTPUT_LEVEL` | all |
+| `5-generate-ssl.sh` | Generates a self-signed SSL certificate and key for the container. | fpm-nginx, fpm-apache, frankenphp |
+| `5-fpm-pool-user.sh` | Sets the user and group of the PHP-FPM child processes to the values of `PHP_FPM_CHILD_PROCESS_USER` and `PHP_FPM_CHILD_PROCESS_GROUP` if the container is running as root. | fpm |
+| `10-init-unit.sh` | Processes Unit templates, configures SSL (if enabled), and prepares NGINX Unit for launch | unit |
+| `10-init-webserver-config.sh` | Processes web server configuration templates, configures SSL (if enabled), and prepares web server for launch | *-nginx *-apache |
+| `50-laravel-automations.sh` | If `AUTORUN_ENABLED` is set to true, and a Laravel installation is detected, the following commands will automatically execute on container start: - `php artisan config:cache` - `php artisan route:cache` - `php artisan view:cache` - `php artisan event:cache` - `php artisan migrate --force` | all |
+
+If you want to add your own entrypoint scripts, use the guide below to learn more.
+
+:u-button{to="/docs/customizing-the-image/adding-your-own-start-up-scripts" label="Learn more about adding your own start up scripts" aria-label="Learn more about adding your own start up scripts" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Disabling Default Entrypoint Scripts
+We get it. Sometimes you just want our stuff to get out of the way. If you want full control to customize your image, all default entrypoint scripts can be disabled by setting `DISABLE_DEFAULT_CONFIG` to `true`.
diff --git a/docs/content/docs/3.guide/100.migrating-from-v2-to-v3.md b/docs/content/docs/1.getting-started/7.upgrade-guide.md
similarity index 52%
rename from docs/content/docs/3.guide/100.migrating-from-v2-to-v3.md
rename to docs/content/docs/1.getting-started/7.upgrade-guide.md
index 6a3869027..7ebd1c973 100644
--- a/docs/content/docs/3.guide/100.migrating-from-v2-to-v3.md
+++ b/docs/content/docs/1.getting-started/7.upgrade-guide.md
@@ -1,24 +1,128 @@
---
-head.title: 'Migrating from v2 to v3 - Server Side Up'
-description: 'Learn how to migrate from serversideup/php v2 images to v3.'
+head.title: 'Upgrade Guide - Docker PHP - Server Side Up'
+description: 'Learn how the serversideup/php Docker images are built and how to upgrade.'
layout: docs
+title: Upgrade Guide
---
-# Migrating from v2 to v3
-::lead-p
-If you're moving from v2 to v3, there are a number of changes you should be aware of. We've tried to keep these to a minimum, but some of these changes were necessary to make the project more maintainable and easier to use.
-::
+## Subscribe to repository updates
+Regardless if you are choosing to use automatic updates or manual updates, it is highly advised to subscribe to our releases. You can do this through the "Watch" button on our [GitHub](https://github.com/serversideup/docker-php).
+
+{.max-w-md.w-full.h-auto.mx-auto}
+
+:u-button{to="https://github.com/serversideup/docker-php" target="_blank" label="Subscribe to our Repo" aria-label="Subscribe to our Repo" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Choosing an image version
+
+If you do not select a specific patch version, then you will receive automatic PHP updates.
+
+For example, you can select your version based on the different version numbers:
+- Major Version (example: `8` will give you the latest 8.x version)
+- Minor Version (example: `8.4` will give you the latest 8.4.x version)
+- Patch Version (example: `8.4.1` will always stay at the 8.4.1 version)
+
+If you use `latest`, you will always get the latest stable version of the CLI variation of PHP. For the best stability in production environments, you may want to pin to a specific patch version (example: `8.4.1`).
+
+If you need help choosing an image, see our guide below.
+
+:u-button{to="/docs/getting-started/choosing-an-image" label="Learn more about choosing an image" aria-label="Learn more about choosing an image" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Release process
+All source code is merged into the `main` branch, which automatically build our "beta" images.
+
+After testing the images internally and from other community members, we will [publish a release on GitHub](https://github.com/serversideup/docker-php/releases) with a detailed changelog.
+
+## Updating the Docker images on your own
+If you You and simply run `apt-get update && apt-get upgrade` within your own image, but still want the image to receive other operating system updates, you will need to run the following commands on your build.
+
+Any updates that you apply have a risk of breaking other things inside the container. Be sure to have a good testing process in place before applying updates to your production environment.
+
+#### Example Dockerfile with manual updates for Debian
+```dockerfile [Dockerfile]
+FROM serversideup/php:8.4.1-fpm-nginx
-## đ Preparing for the migration
+RUN apt-get update \
+ && apt-get upgrade -y \
+ && apt-get clean \
+ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
+```
+
+If you're running an Alpine-based image, you can use the following commands:
+
+#### Example Dockerfile with manual updates for Alpine
+```dockerfile [Dockerfile]
+FROM serversideup/php:8.4.1-fpm-nginx-alpine
+
+RUN apk update \
+ && apk upgrade \
+ && rm -rf /var/cache/apk/*
+```
+
+## Version 3 â Version 4 Migration
+Version 3 to Version 4 is a much easier migration compared to previous versions. There are **no breaking changes**, so you can simply update your image tag to the latest version and take advantage of the new features.
+
+### New Features in Version 4
+This release focused on expanding image variations, improving Laravel automations, and enhancing the developer experience. Here are the key features:
+
+- **FrankenPHP variation** - A new production-ready FrankenPHP variation with intelligent defaults, flexible environment configuration, native health checks, and support for Debian and Alpine operating systems.
+- **Revamped documentation site** - Completely rewritten documentation with improved navigation, better examples, and a modern user experience.
+- **Enhanced Laravel automations** - Refactored to use `php artisan optimize` by default (following Laravel best practices), with support for migration modes (`fresh`, `refresh`), database connection selection, seeding options, and easier debugging with `AUTORUN_DEBUG`.
+- **Expanded environment variables** - 25+ new environment variables for fine-tuning PHP, NGINX, Apache, and FrankenPHP configurations. [See the full list of environment variables â](/docs/reference/environment-variable-specification)
+- **Improved health checks** - Better container startup detection using `start-period` and `start-interval` for more accurate health readings.
+- **IPv6 support for NGINX** - Control IP listening protocols with `NGINX_LISTEN_IP_PROTOCOL` (supports `ipv4`, `ipv6`, or `all`).
+- **Enhanced file permissions script** - `docker-php-serversideup-set-file-permissions` now includes automated service detection and support for multiple directories with the `--dir` flag.
+- **Quieter logs** - Health check requests no longer appear in access logs for `fpm-nginx` and `fpm-apache` variations.
+
+### Quality of Life Improvements
+- **Startup scripts** - Improved handling of `entrypoint.d` scripts with better error handling and a redesigned container startup info display.
+- **FPM process control** - Default changed to `ondemand` for even lower resource usage in `fpm-nginx` and `fpm-apache` variations.
+- **Better Apache logs** - Access logs now include "Referer" and "User Agent" for better debugging.
+- **NGINX improvements** - Added `absolute_redirect off;` for better proxy compatibility, fixed `svgz` handling with Symfony's asset mapper, and allowed `robots.txt` to be dynamically generated by PHP.
+
+### V4 Migration Checklist
+Since there are no breaking changes, the migration is straightforward:
+
+#### Update Your Images
+Simply update your image tags to the latest version. For example:
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+```
+
+No other changes are required unless you want to take advantage of new features.
+
+#### Optional: Leverage New Features
+
+**Consider enabling Laravel optimizations (if using Laravel):**
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+ environment:
+ AUTORUN_ENABLED: "true"
+ AUTORUN_LARAVEL_OPTIMIZE: "true"
+```
+
+**Try the new FrankenPHP variation:**
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-frankenphp
+ ports:
+ - 80:8080
+ - 443:8443
+```
+
+That's it! Version 4 is designed to be a smooth, non-breaking upgrade that gives you more flexibility and features when you need them.
+
+## Version 2 â Version 3 Migration
If you're an existing user of our v2 images, be sure that your current configurations are NOT set to use the latest images. To do this, you can lock your images into the `v2.2.1` tag. This will ensure that you're not automatically upgraded to the v3 images.
-For example, if you are using `8.2-fpm-nginx`, you would change your `docker-compose.yml` file to use the [`v2.2.1`](https://hub.docker.com/r/serversideup/php/tags?page=1&name=2.2.1) tag:
+For example, if you are using `8.2-fpm-nginx`, you would change your `compose.yml` file to use the [`v2.2.1`](https://hub.docker.com/r/serversideup/php/tags?page=1&name=2.2.1){target="_blank"} tag:
-::code-panel
----
-label: Original `docker-compose.yml` file
----
-```yaml
+```yml [compose.yml] {3}
services:
php:
image: serversideup/php:8.2-fpm-nginx
@@ -27,13 +131,8 @@ services:
volumes:
- .:/var/www/html
```
-::
-::code-panel
----
-label: Updated `docker-compose.yml` file
----
-```yaml
+```yml [compose.yml] {3}
services:
php:
image: serversideup/php:8.2-fpm-nginx-v2.2.1
@@ -42,12 +141,10 @@ services:
volumes:
- .:/var/www/html
```
-::
All you need to do is add `-v2.2.1` to the end of the image tag. This will ensure that you're not automatically upgraded to the v3 images.
-
-## đ New Features
+### New Features in Version 3
We've been busy overhauling our PHP Docker Images to make them more production-ready and easier to use. Here are some of the new features we've added:
- **Based on official PHP Images** - We're now building an improved developer experience on top of the official PHP Docker images.
- **Unprivileged by default** - We're now running our images as an unprivileged user by default. This is a huge step forward in security and compatibility.
@@ -58,46 +155,48 @@ We've been busy overhauling our PHP Docker Images to make them more production-r
- **NGINX Unit Support** - We're offering NGINX Unit as a variation as an alternative to PHP-FPM. This allows you to run PHP applications without the need for a webserver like NGINX or Apache to run with PHP-FPM.
- **Available on GitHub Packages** - We're now publishing our images to GitHub Packages. This means you can use our images without needing to authenticate with Docker Hub.
-## â ī¸ Breaking changes
+### Breaking changes in Version 3
+::caution
The following changes are considered to be "breaking changes" and will require you to make changes to your application.
+::
-### Ubuntu is no longer used as a base image
+#### Ubuntu is no longer used as a base image
We now use Debian or Alpine as our base OS (because we're using the official PHP images as a base). This is a huge change, but we're confident this will be the best direction moving forward.
-### `ppa:ondrej/php` is no longer used
+#### `ppa:ondrej/php` is no longer used
Since we're using PHP.net as the "official source of truth" for getting our PHP versions, this means we're also dropping support for the `ppa:ondrej/php` repository. If you're using things like `apt-get install php-redis` you will need to change your method of installing PHP extensions.
[Learn how to install your own PHP extension â](/docs/customizing-the-image/installing-additional-php-extensions)
-### `webuser` is no longer being used
+#### `webuser` is no longer being used
We used to add a user called `webuser` with the UID of `9999` with shell permissions. To increase security, we're now using the `www-data` user and group that is built into the official PHP images. If you have mounted volumes, you will need to `chown` the files to match the ID of the `www-data` user and groups. For Debian, this is `33:33` and for Alpine, this is `82:82`.
-### NGINX and Apache listen on 8080 (HTTP) and 8443 (HTTPS) by default
+#### NGINX and Apache listen on 8080 (HTTP) and 8443 (HTTPS) by default
Our images are now unprivileged by default. This is a major step forward in security and compatibility. Since we are unprivileged by default, we lose the ability to mount on ports less than 1024. If you're using NGINX or Apache, you will need to update your port mappings to use `8080` and `8443` instead of `80` and `443`.
[Learn more about this change â](/docs/getting-started/default-configurations#unprivileged-by-default)
-### S6 Overlay is only used in `*-fpm-apache` and `*-fpm-nginx` images
+#### S6 Overlay is only used in `*-fpm-apache` and `*-fpm-nginx` images
Due to compatibility issues, we only use S6 Overlay in our `*-fpm-apache` and `*-fpm-nginx` images. If you were using S6 Overlay for our other variations (cli, fpm, etc), you will need to migrate your scripts to use the new `/etc/entrypoint.d` folder.
-### `SSL_MODE` is now set to `off` by default (HTTP only)
+#### `SSL_MODE` is now set to `off` by default (HTTP only)
Running end-to-end SSL by default created more problems than good. By default, we're now shipping HTTP-only by default with the option for people to turn this on.
-### `AUTORUN_ENABLED` is now set to `false` by default.
+#### `AUTORUN_ENABLED` is now set to `false` by default.
Having this set to "true" by default also created more problems than good. If you want to use any of the Laravel Automation Scripts, be sure to set this to `true`.
-### MSMTP is no longer included in the images
+#### MSMTP is no longer included in the images
For security and image size reasons, we removed MSMTP from the images. If you need to send emails, use an external SMTP service like Postmark/Sendgrid/Mailgun. You can also extend the image yourself to include MSMTP specifically for your use case.
-### Variable deprecations
+#### Variable deprecations
- `WEB_APP_DIRECTORY` has now been renamed to `APP_BASE_DIR`
- `DEBUG_OUTPUT` has been removed for in favor of `LOG_OUTPUT_LEVEL=debug`
- `PUID` & `PGID` are no longer used because it requires root privileges. See the [new way to set the UID and GID â](/docs/guide/understanding-file-permissions)
- `MSMTP_RELAY_SERVER_HOSTNAME` & `MSMTP_RELAY_SERVER_PORT` are no longer used because MSMTP is no longer included in the images.
- `PHP_POOL_NAME` has been renamed to `PHP_FPM_POOL_NAME`
-## đ Migration Checklist
-Here is a good list to perform the migration
+### V3 Migration Checklist
+Here is a good list to perform the V3 migration.
#### Repository
- Ensure you're committing to a test environment
@@ -120,11 +219,8 @@ If you're running `fpm-nginx` (or similar) on a runner that's running as your bu
If you have to run things as root in CI, you can do this with a multi stage build and set the targets:
-::code-panel
----
-label: Dockerfile
----
-```dockerfile
+
+```dockerfile [Dockerfile]
############################################
# Base Image
############################################
@@ -151,7 +247,7 @@ ARG GROUP_ID
# Switch to root so we can set the user ID and group ID
USER root
RUN docker-php-serversideup-set-id www-data $USER_ID:$GROUP_ID && \
- docker-php-serversideup-set-file-permissions --owner $USER_ID:$GROUP_ID --service nginx
+ docker-php-serversideup-set-file-permissions --owner $USER_ID:$GROUP_ID
USER www-data
############################################
@@ -160,11 +256,7 @@ USER www-data
FROM base AS ci
# Sometimes CI images need to run as root
-# so we set the ROOT user and configure
-# the PHP-FPM pool to run as www-data
USER root
-RUN echo "user = www-data" >> /usr/local/etc/php-fpm.d/docker-php-serversideup-pool.conf && \
- echo "group = www-data" >> /usr/local/etc/php-fpm.d/docker-php-serversideup-pool.conf
############################################
# Production Image
@@ -173,7 +265,6 @@ FROM base AS deploy
COPY --chown=www-data:www-data . /var/www/html
USER www-data
```
-::
#### Production/Staging Servers
- Update all host volume file permissions to match the `www-data` UID/GID (`33:33` for Debian, `82:82` for Alpine) [Learn how to manage file permissions](/docs/guide/understanding-file-permissions)
@@ -182,3 +273,4 @@ USER www-data
#### Deployment
- CI/CD with valid tests is always encouraged
- After completing all steps above, you're now ready to deploy the new images
+
diff --git a/docs/content/docs/1.getting-started/8.changelog.md b/docs/content/docs/1.getting-started/8.changelog.md
new file mode 100644
index 000000000..2b5191a96
--- /dev/null
+++ b/docs/content/docs/1.getting-started/8.changelog.md
@@ -0,0 +1,13 @@
+---
+head.title: 'Changelog - Docker PHP - Server Side Up'
+description: 'See the latest releases and changes for the PHP Docker Image project.'
+layout: docs
+---
+::lead-p
+All our changes are documented and published on our GitHub. [See our release notes on GitHub â](https://github.com/serversideup/docker-php/releases){target="_blank"}
+::
+
+### Choosing a version
+You may want to review [our guide on selecting the right image](/docs/getting-started/choosing-an-image) to determine which version and image tag is best for you.
+
+:u-button{to="https://github.com/serversideup/docker-php/releases" target="_blank" label="See our release notes on GitHub" aria-label="See our release notes on GitHub" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
\ No newline at end of file
diff --git a/docs/content/docs/2.getting-started/6.about.md b/docs/content/docs/1.getting-started/9.about.md
similarity index 50%
rename from docs/content/docs/2.getting-started/6.about.md
rename to docs/content/docs/1.getting-started/9.about.md
index a96e512d0..a88d67a40 100644
--- a/docs/content/docs/2.getting-started/6.about.md
+++ b/docs/content/docs/1.getting-started/9.about.md
@@ -4,52 +4,57 @@ description: 'Learn more about how this project got started and who inspired it.
layout: docs
---
-# About this project
+::lead-p
We're taking the extra effort to open source as much as we can. Not only could this potentially help someone learn a little bit of Docker, but it makes it a *heck of a lot* easier for us to work with other people on our other open source projects.
-
-## About Us
-We're [Dan](https://twitter.com/danpastori) and [Jay](https://twitter.com/jaydrogers) - a two person team with a passion for open source products. We created [Server Side Up](https://serversideup.net) to help share what we learn.
+::
::about
::
+::tip{to="https://serversideup.net/products/" target="_blank"}
+If you appreciate our work, consider supporting us by buying our products or sponsoring us on GitHub.
+::
+
+## About Us
+We're [Dan](https://x.com/danpastori){target="_blank"} and [Jay](https://x.com/jaydrogers){target="_blank"} - a two person team with a passion for open source products. We created [Server Side Up](https://serversideup.net){target="_blank"} to help share what we learn.
+
### Find us at:
-* **đ [Blog](https://serversideup.net)** - Get the latest guides and free courses on all things web/mobile development.
-* **đ [Community](https://community.serversideup.net)** - Get friendly help from our community members.
-* **đ¤ĩââī¸ [Get Professional Help](https://serversideup.net/professional-support)** - Get video + screen-sharing support from the core contributors.
-* **đģ [GitHub](https://github.com/serversideup)** - Check out our other open source projects.
-* **đĢ [Newsletter](https://serversideup.net/subscribe)** - Skip the algorithms and get quality content right to your inbox.
-* **đĨ [Twitter](https://twitter.com/serversideup)** - You can also follow [Dan](https://twitter.com/danpastori) and [Jay](https://twitter.com/jaydrogers).
-* **â¤ī¸ [Sponsor Us](https://github.com/sponsors/serversideup)** - Please consider sponsoring us so we can create more helpful resources.
+* **đ [Blog](https://serversideup.net){target="_blank"}** - Get the latest guides and free courses on all things web/mobile development.
+* **đ [Community](https://community.serversideup.net){target="_blank"}** - Get friendly help from our community members.
+* **đ¤ĩââī¸ [Get Professional Help](https://serversideup.net/professional-support){target="_blank"}** - Get video + screen-sharing support from the core contributors.
+* **đģ [GitHub](https://github.com/serversideup){target="_blank"}** - Check out our other open source projects.
+* **đĢ [Newsletter](https://serversideup.net/subscribe){target="_blank"}** - Skip the algorithms and get quality content right to your inbox.
+* **đĨ [Twitter](https://x.com/serversideup){target="_blank"}** - You can also follow [Dan](https://x.com/danpastori){target="_blank"} and [Jay](https://x.com/jaydrogers){target="_blank"}.
+* **â¤ī¸ [Sponsor Us](https://github.com/sponsors/serversideup){target="_blank"}** - Please consider sponsoring us so we can create more helpful resources.
## Our products
If you appreciate this project, be sure to check out our other projects.
### đ Books
-- **[The Ultimate Guide to Building APIs & SPAs](https://serversideup.net/ultimate-guide-to-building-apis-and-spas-with-laravel-and-nuxt3/)**: Build web & mobile apps from the same codebase.
-- **[Building Multi-Platform Browser Extensions](https://serversideup.net/building-multi-platform-browser-extensions/)**: Ship extensions to all browsers from the same codebase.
+- **[The Ultimate Guide to Building APIs & SPAs](https://serversideup.net/ultimate-guide-to-building-apis-and-spas-with-laravel-and-nuxt3/){target="_blank"}**: Build web & mobile apps from the same codebase.
+- **[Building Multi-Platform Browser Extensions](https://serversideup.net/building-multi-platform-browser-extensions/){target="_blank"}**: Ship extensions to all browsers from the same codebase.
### đ ī¸ Software-as-a-Service
-- **[Bugflow](https://bugflow.io/)**: Get visual bug reports directly in GitHub, GitLab, and more.
-- **[SelfHost Pro](https://selfhostpro.com/)**: Connect Stripe or Lemonsqueezy to a private docker registry for self-hosted apps.
+- **[Bugflow](https://bugflow.io/){target="_blank"}**: Get visual bug reports directly in GitHub, GitLab, and more.
+- **[SelfHost Pro](https://selfhostpro.com/){target="_blank"}**: Connect Stripe or Lemonsqueezy to a private docker registry for self-hosted apps.
### đ Open Source
-- **[AmplitudeJS](https://521dimensions.com/open-source/amplitudejs)**: Open-source HTML5 & JavaScript Web Audio Library.
-- **[Spin](https://serversideup.net/open-source/spin/)**: Laravel Sail alternative for running Docker from development â production.
-- **[Financial Freedom](https://github.com/serversideup/financial-freedom)**: Open source alternative to Mint, YNAB, & Monarch Money.
+- **[AmplitudeJS](https://serversideup.net/open-source/amplitudejs){target="_blank"}**: Open-source HTML5 & JavaScript Web Audio Library.
+- **[Spin](https://serversideup.net/open-source/spin/){target="_blank"}**: Laravel Sail alternative for running Docker from development â production.
+- **[Financial Freedom](https://github.com/serversideup/financial-freedom){target="_blank"}**: Open source alternative to Mint, YNAB, & Monarch Money.
## Special thanks
This project wouldn't be possible without the help of some amazing people. We're grateful for their support and contributions. We wanted to give them a special shoutout here (in no particular order).
-### [Chris Fidao](https://github.com/fideloper)
+### [Chris Fidao](https://github.com/fideloper){target="_blank"}
Majority of our knowledge came from Chris' course, [Shipping Docker](https://serversforhackers.com/shipping-docker). If you have yet to discover his content, you will be very satisfied with every course he has to offer. He's a great human being and excellent educator. Chris has continuously provided quality feedback that has deeply inspired the direction of this project.
-### [Joel Clermont](https://github.com/joelclermont/)
+### [Joel Clermont](https://github.com/joelclermont/){target="_blank"}
Joel is one of the friendliest people that you'll ever meet. When he's not podcasting on his own show, [No Compromises](https://show.nocompromises.io/), he's busy helping other people in the PHP community. Joel's deep experience with PHP is rare to find, and we're grateful that we were able to pick his brain to bring you the best PHP Docker experience possible.
-### [Patricio](https://github.com/ijpatricio)
+### [Patricio](https://github.com/ijpatricio){target="_blank"}
If there's a new framework or tool in the web development world, Patricio probably has content for it on his [YouTube Channel](https://www.youtube.com/@PatricioOnCode). Patricio is a great resource for all things web development. Frontend, backend, DevOps -- it doesn't matter. Patricio graciously shared his wide spectrum of experiences with us and is a huge supporter of this project.
-### [linuxserver.io](https://www.linuxserver.io/)
+### [linuxserver.io](https://www.linuxserver.io/){target="_blank"}
These guys are absolute aces when it comes to Docker development. They are a great resource for tons of open source Docker images. Check out their work, especially if you're a homelabber.
\ No newline at end of file
diff --git a/docs/content/docs/1.getting-started/99.contributing.md b/docs/content/docs/1.getting-started/99.contributing.md
new file mode 100644
index 000000000..92425ebfa
--- /dev/null
+++ b/docs/content/docs/1.getting-started/99.contributing.md
@@ -0,0 +1,131 @@
+---
+head.title: 'Contributing - Docker PHP - Server Side Up'
+description: 'Learn how you can make a difference and contribute to the Docker PHP project.'
+layout: docs
+---
+
+::lead-p
+Thanks for your interest in contributing to this project! Please use read this entire guide before submitting a pull request.
+::
+
+## Improve the docs
+Improving the docs is very easy. If you find a simple mistake, look at the bottom of the Table Of Contents section and click "Edit this page".
+
+If you'd like to contribute bigger documentation changes, take a look at the `/docs` directory. Our entire site is available in that directory and you can see the process to easily install this on your machine by reading `/docs/README.md`.
+
+:u-button{to="https://github.com/serversideup/docker-php/tree/main/docs" target="_blank" label="Learn how to contribute to the docs" aria-label="Learn how to contribute to the docs" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+
+## Project dependencies
+You must have these installed on your system.
+* Docker (container engine): https://www.docker.com/products/docker-desktop
+
+## How things work
+1. All files are stored in the `/src` folder
+1. GitHub Actions will automatically build and deploy the images
+
+## Running things locally
+To run a build, simply run `./scripts/dev.sh` (with Docker Desktop running). This will show you a help menu with all the available options.
+
+#### Example: Build a Unit image running PHP 8.2.12 on Debian Bookworm
+```bash [Terminal]
+bash scripts/dev.sh --variation unit --version 8.2.12 --os bookworm
+```
+
+This will build `serversideup/php:8.2.12-unit-bookworm` locally on your machine for testing and inspection.
+
+### Published Beta Images
+We also have beta images that are published to our Docker Hub and GitHub Packages repositories.
+
+#### Debian Variations
+| âī¸ Variation | đ Version |
+| ------------ | ---------- |
+| cli | **Debian Based** [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.4-cli&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.3-cli&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.2-cli&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.1-cli&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.0-cli&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-7.4-cli&page=1&ordering=-name) **Alpine Based** [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.4-cli-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.3-cli-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.2-cli-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.1-cli-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.0-cli-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-7.4-cli-alpine&page=1&ordering=-name) |
+| fpm | **Debian Based** [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.4-fpm&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.3-fpm&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.2-fpm&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.1-fpm&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.0-fpm&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-7.4-fpm&page=1&ordering=-name) **Alpine Based** [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.4-fpm-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.3-fpm-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.2-fpm-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.1-fpm-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.0-fpm-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-7.4-fpm-alpine&page=1&ordering=-name) |
+| fpm-apache | **Debian Based** [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.4-fpm-apache&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.3-fpm-apache&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.2-fpm-apache&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.1-fpm-apache&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.0-fpm-apache&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-7.4-fpm-apache&page=1&ordering=-name) |
+| fpm-nginx | **Debian Based** [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.4-fpm-nginx&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.3-fpm-nginx&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.2-fpm-nginx&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.1-fpm-nginx&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.0-fpm-nginx&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-7.4-fpm-nginx&page=1&ordering=-name) **Alpine Based** [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.4-fpm-nginx-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.3-fpm-nginx-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.2-fpm-nginx-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.1-fpm-nginx-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.0-fpm-nginx-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-7.4-fpm-nginx-alpine&page=1&ordering=-name) |
+| frankenphp | **Debian Based** [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.4-frankenphp&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.3-frankenphp&page=1&ordering=-name) **Alpine Based** [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.4-frankenphp-alpine&page=1&ordering=-name) [{.h-5.w-auto}](https://hub.docker.com/r/serversideup/php/tags?name=beta-8.3-frankenphp-alpine&page=1&ordering=-name) |
+
+#### Running a test web server:
+Sometimes you need to just run a test web server locally to see if your changes work. Below is a good example on how to quickly do this.
+
+```bash [Terminal]
+docker run --rm -v $(pwd):/var/www/html -p 80:8080 -p 443:8443 serversideup/php:8.4-fpm-nginx
+```
+
+## How PHP Versions are selected for distribution
+We use the official PHP versions as our base image. To identify which versions should be built, we use a file called `scripts/conf/php-versions-base-config.yml` to explicitly select what versions should be built and any special rules/settings for each version (like base OS, default versions, etc).
+
+We then use a `scripts/get-php-versions.sh` script to download the [latest active releases from PHP](https://www.php.net/releases/active.php) and merge them into a final file called `scripts/conf/php-versions.yml`.
+
+The `php-versions.yml` file will include all final versions for tagging and building.
+
+We generate our tags with a file called `scripts/assemble-docker-tags.sh` which handles all the advanced logic of compiling our tags together.
+
+All the scripts above are designed to run locally and in GitHub Actions. Feel free to execute these scripts to see the help menus and how they work.
+
+## GitHub Actions
+We use GitHub Actions exclusively to publish all of our releases. If the image exists from DockerHub or GitHub Packages, it will never be published from a local machine.
+
+See `.github/workflows/action_publish-beta-images.yml` for an example of how we publish our beta images.
+
+## NGINX Versions
+We use the official NGINX repos to install the latest version of NGINX for each OS. The version to install is set by a build argument, which is loaded from the `scripts/conf/php-versions-base-config.yml` file.
+
+To view the current NGINX versions, run the following command:
+
+#### View NGINX versions
+```bash [Terminal]
+./scripts/get-nginx-versions.sh
+```
+
+This script will look at the official NGINX repos to find the latest version of NGINX for each OS. If you want to update the version, you can run the script with the `--write` flag.
+
+#### Update NGINX versions
+```bash [Terminal]
+./scripts/get-nginx-versions.sh --write
+```
+
+### NGINX repository key verification
+
+- **Debian (APT)**: We import the official NGINX GPG key from `https://nginx.org/keys/nginx_signing.key` and verify it against a pinned fingerprint via the `SIGNING_FINGERPRINT` build arg.
+- **Alpine (APK)**: APK uses a raw RSA public key (`nginx_signing.rsa.pub`). We verify this key by pinning the SHAâ256 of the DERâencoded public key via the `SIGNING_ALPINE_RSA_PUB_SHA256` build arg. You can provide multiple commaâseparated hashes to support key rotation.
+
+#### Compute the Alpine key hash when updating:
+
+```bash [Terminal]
+curl -sS https://nginx.org/keys/nginx_signing.rsa.pub -o /tmp/nginx_signing.rsa.pub
+
+# macOS
+openssl rsa -pubin -in /tmp/nginx_signing.rsa.pub -outform DER 2>/dev/null | shasum -a 256 | awk '{print $1}'
+
+# Linux
+openssl rsa -pubin -in /tmp/nginx_signing.rsa.pub -outform DER 2>/dev/null | sha256sum | awk '{print $1}'
+```
+
+#### Build with the new hash (optionally include the old hash during rotation)
+
+
+```bash [Terminal]
+docker build \
+ --build-arg SIGNING_ALPINE_RSA_PUB_SHA256="," \
+ -f src/variations/fpm-nginx/Dockerfile .
+```
+
+Reference: [Installing NGINX Open Source â Alpine packages](https://docs.nginx.com/nginx/admin-guide/installing-nginx/installing-nginx-open-source/#prebuilt_alpine).
+
+Why allow multiple hashes? This is optional, but useful during a short rotation window:
+
+- Ensure CI builds across branches/runners succeed while the upstream key change propagates.
+- Avoid flakes from CDN/caching delays where some environments still see the old key.
+- Let you pre-stage the new value before the official switch, then remove the old afterwards.
+
+If you control all builds centrally and can update quickly, pass a single hash.
+
+## Helping out
+If you're really eager to help out, here are a few places to get started:
+- Help answer questions on [our GitHub Discussions](https://github.com/serversideup/docker-php/discussions) and [our Discord](https://serversideup.net/discord)
+- Chime in on [issues labeled "Help Wanted"](https://github.com/serversideup/docker-php/issues?q=is%3Aissue+is%3Aopen+label%3A%22%F0%9F%99%8F+Help+Wanted%22)
+- [Open a feature request](https://github.com/serversideup/docker-php/discussions/66) and tell us how we can improve
+- Run performance tests and share your results
+- Say good things and tag us on X (formerly Twitter): [@serversideup](https://x.com/serversideup), [@danpastori](https://x.com/danpastori), [@jaydrogers](https://x.com/jaydrogers)
diff --git a/docs/content/docs/1.index.md b/docs/content/docs/1.index.md
deleted file mode 100644
index e1fa7b976..000000000
--- a/docs/content/docs/1.index.md
+++ /dev/null
@@ -1,26 +0,0 @@
----
-description: 'serversideup/php is an alternate approach to the official Docker images provided by PHP. Compared to the defaults provided by the official PHP Docker images, the serversideup/php Docker images are optimized for more real-world and production use cases and an easier developer experience.'
-head.title: 'Introduction - Docker Images - Server Side Up'
-layout: docs
----
-
-# Introduction
-
-
-
-## What's "serversideup/php"?
-::badges
-::
-
-**serversideup/php** is an alternate approach to the official Docker images provided by PHP. Compared to the defaults provided by the official PHP Docker images, the **serversideup/php** Docker images are optimized for more real-world and production use cases and an easier developer experience.
-
-## These images are very different from other PHP Docker images
-::features
-::
-
-[Read more about the advantages â](/docs/getting-started/these-images-vs-others)
-
-## Why should I use these PHP Docker Images?
-These images are a contribution to the PHP community to help make PHP application management as simple as possible. We focus on making a quick and easy process to get your application running in minutes.
-
-[Installation â](/docs/getting-started/installation)
\ No newline at end of file
diff --git a/docs/content/docs/2.getting-started/1.these-images-vs-others.md b/docs/content/docs/2.getting-started/1.these-images-vs-others.md
deleted file mode 100644
index d46afdb67..000000000
--- a/docs/content/docs/2.getting-started/1.these-images-vs-others.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-head.title: 'These images vs others - Docker PHP - Server Side Up'
-description: 'Learn the important differences between serversideup/php and other PHP images.'
-layout: docs
----
-
-# These images vs others
-
-| | **Official PHP Images** |**serversideup/php** |
-|-------------------------|-------------------------|---------------------|
-| Base Operating System | Debian, Alpine | Debian, Alpine |
-| PHP Compilation | PHP Source Code | PHP Source Code (based on official PHP images) |
-| Run PHP, pinned to the minor version | â
| â
|
-| Multi-arch support | â
| â
|
-| Init System | Docker CMD | Docker CMD or [S6-Overlay](https://github.com/just-containers/s6-overlay) |
-| Published Registry| DockerHub | [DockerHub](https://hub.docker.com/r/serversideup/php), [GitHub Packages](https://github.com/serversideup/docker-php/pkgs/container/php) |
-| Unprivileged by default | â | â
|
-| Variable-first configuration | â | â
|
-| Includes `composer` | â | â
|
-| Includes [`install-php-extensions`](https://github.com/mlocati/docker-php-extension-installer) | â | â
|
-| Production-Ready by default| â | â
|
-| Built-in security optimizations | â | â
|
-| Optimized for Laravel & WordPress| â | â
|
-| NGINX + FPM variation| â | â
|
-| NGINX Unit variation| â | â
|
-| Native health checks | â | â
|
-
-## Unprivileged by Default
-We believe in the principle of least privilege. Our images run as an unprivileged user by default. This means that if your application is compromised, the attacker will have a harder time escalating their privileges to the root user.
-
-Running unprivileged images also improves compatibility of running your containers in a Kubernetes environment, where running as root is not allowed.
-
-## Variable-first Configuration
-Our design philosophy is built all around simplicity. The process of customizing the behavior of PHP is as simple as setting an environment variable. We took every common configuration option and set it up so you can change these values in a simple method, defaulting every single option to production-ready values.
-
-See our [environment variable specifications](/docs/reference/environment-variable-specification) for more information.
-
-## Optimized for Laravel & WordPress
-We did the hard work of customizing the official PHP image and giving you everything to get started with running PHP's most popular frameworks in seconds. We also hardened the images to help protect your PHP application from common attacks.
-
-## Production-ready
-We believe images should be ready for production and able to live in the open and wild Internet. We took our years of experience and tweaked these images to be performant and secure as possible. Having these values published online allows others to review, contribute, and improve the images -- giving you the best security and performance possible.
-
-## What is "S6 Overlay?"
-[S6 Overlay](https://github.com/just-containers/s6-overlay) is a process supervisor designed for containerization from the ground up. It's a modern alternative to [Supervisor (aka Supervisord)](https://supervisord.org/). We only use this in our `serversideup/php:*-fpm-apache` and `serversideup/php:*-fpm-nginx` images, as they require two processes to run a service.
-
-[Learn more about S6 Overlay â](/docs/guide/using-s6-overlay)
\ No newline at end of file
diff --git a/docs/content/docs/2.getting-started/2.installation.md b/docs/content/docs/2.getting-started/2.installation.md
deleted file mode 100644
index 8babb9e56..000000000
--- a/docs/content/docs/2.getting-started/2.installation.md
+++ /dev/null
@@ -1,138 +0,0 @@
----
-head.title: 'Installation - Docker PHP - Server Side Up'
-description: 'Learn how to get started with serversideup/php Docker Images.'
-layout: docs
----
-
-# Installation
-::lead-p
-`serversideup/php` is compatible with any container orchestrator that supports Docker images (Kubernetes, Docker Swarm, Docker Compose, HashiCorp Nomad, etc.).
-::
-
-::lead-p
-All images are hosted on [DockerHub](https://hub.docker.com/r/serversideup/php) and [GitHub Packages](https://github.com/serversideup/docker-php/pkgs/container/php) for free. Containers default to running Debian, but Alpine images are also available.
-::
-
-## Our most popular images
-All images are intelligently tagged with the PHP version and variation. This allows you to easily select the right image for your use case.
-
-If you do not specify a variation, it will default to `cli` and the latest supported Debian release for that variation.
-
-Our most popular tags include:
-| âī¸ Variation | đ Version |
-| ------------ | ---------- |
-| cli | Debian Based [](https://hub.docker.com/r/serversideup/php/tags?name=8.4-cli&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.3-cli&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.2-cli&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.1-cli&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.0-cli&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=7.4-cli&page=1&ordering=-name) Alpine Based [](https://hub.docker.com/r/serversideup/php/tags?name=8.4-cli-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.3-cli-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.2-cli-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.1-cli-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.0-cli-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=7.4-cli-alpine&page=1&ordering=-name) |
-| fpm | Debian Based [](https://hub.docker.com/r/serversideup/php/tags?name=8.4-fpm&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.3-fpm&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.2-fpm&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.1-fpm&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.0-fpm&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=7.4-fpm&page=1&ordering=-name) Alpine Based [](https://hub.docker.com/r/serversideup/php/tags?name=8.4-fpm-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.3-fpm-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.2-fpm-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.1-fpm-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.0-fpm-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=7.4-fpm-alpine&page=1&ordering=-name) |
-| fpm-apache | Debian Based [](https://hub.docker.com/r/serversideup/php/tags?name=8.4-fpm-apache&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.3-fpm-apache&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.2-fpm-apache&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.1-fpm-apache&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.0-fpm-apache&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=7.4-fpm-apache&page=1&ordering=-name) |
-| fpm-nginx | Debian Based [](https://hub.docker.com/r/serversideup/php/tags?name=8.4-fpm-nginx&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.3-fpm-nginx&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.2-fpm-nginx&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.1-fpm-nginx&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.0-fpm-nginx&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=7.4-fpm-nginx&page=1&ordering=-name) Alpine Based [](https://hub.docker.com/r/serversideup/php/tags?name=8.4-fpm-nginx-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.3-fpm-nginx-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.2-fpm-nginx-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.1-fpm-nginx-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.0-fpm-nginx-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=7.4-fpm-nginx-alpine&page=1&ordering=-name) |
-| unit | Debian Based [](https://hub.docker.com/r/serversideup/php/tags?name=8.4-unit&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.3-unit&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.2-unit&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.1-unit&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=8.0-unit&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/tags?name=7.4-unit&page=1&ordering=-name) |
-
-## Selecting the right variation
-There are 4 main variations.
-
-### CLI
-If you need to run a quick command with something like `composer` or use PHP to run a CLI program only, this might be a great option for you.
-
-### FPM
-The `fpm` variation is great for people who need to run a PHP "backend" if they already have a proxy serving static content. If you're using FPM only, that means you're probably at a larger scale.
-
-### FPM-Apache
-The `fpm-apache` variation is meant for users who want to run something like WordPress with Docker. Apache is configured to be a "reverse proxy", which will serve any static content with Apache and serve any PHP requests with PHP-FPM. Since there are two processes required to run this variation, we use [S6 Overlay](/docs/guide/using-s6-overlay) to ensure the container health is accurate.
-
-[Learn more about using Docker with WordPress â](/docs/guide/using-wordpress-with-docker)
-
-### FPM-NGINX
-The `fpm-nginx` variation is great for people who want to run Laravel applications or similar. This allows you to serve static content quickly with NGINX but also pass PHP requests to PHP-FPM. Similar to PHP-Apache, there are two processes required to run this variation. We use S6 Overlay to ensure the container health is accurate.
-
-[Learn more about S6 Overlay â](/docs/guide/using-s6-overlay)
-
-### Unit
-The `unit` variation is for NGINX Unit, which is a modern approach to delivering containerized web applications. Instead of relying on the complexities of two processes running NGINX + PHP-FPM, Unit replaces both the NGINX Web Server and PHP-FPM to run everything under one process. Unit is open source and maintained by the NGINX Unit team.
-
-[Learn more about Unit â](https://unit.nginx.org/)
-
-## Selecting the version of PHP
-Selecting the best version of PHP is highly dependent on your use case. In a perfect world, running the latest version of PHP will give you the latest and greatest, but it all depends on the libraries that your application uses.
-
-For example, if you're running a WordPress site with a ton of different plugins, they may be using libraries that do not yet support the latest version of PHP. Be sure to evaluate your dependencies and test your application before deploying to production.
-
-All versions + variations are tagged by:
-- Major Version (example: `8` will give you the latest 8.x version)
-- Minor Version (example: `8.3` will give you the latest 8.3.x version)
-- Patch Version (example: `8.3.2` will always stay at the 8.3.2 version)
-
-If you use `latest`, you will always get the latest stable version of the CLI variation of PHP running the latest version of Debian. For the best stability in production environments, you may want to pin to a specific patch version (example: `8.3.2`).
-
-::code-panel
----
-label: The Full Image Tag Standard
----
-```bash
-{{registry-url}}/serversideup/php:{{release-prefix}}-{{php-version}}-{{variation-name}}-{{operating-system}}-{{github-release-version}}
-```
-::
-
-### Few examples
-
-::code-panel
----
-label: Latest version of 8.3.x running FPM + NGINX from GitHub Packages
----
-```bash
-ghcr.io/serversideup/php:8.3-fpm-nginx
-```
-::
-
-::code-panel
----
-label: PHP 8.1.16, running FPM + Apache on Alpine from DockerHub, locked into our v3.0.0 GitHub Release
----
-```bash
-serversideup/php:8.1.16-fpm-apache-alpine-v3.0.0
-```
-::
-
-In this example, we can lock into the `v3.0.0` release of our image. This is useful if you want to ensure there are no automatic changes that could break your CI process. [View our releases â](https://github.com/serversideup/docker-php/releases)
-
-::code-panel
----
-label: Latest beta version (of this repository, not PHP) running PHP CLI 8.x
----
-```bash
-serversideup/php:beta-8
-```
-::
-
-## Viewing all available images & tags
-All our images are available on DockerHub and GitHub Packages (ghcr.io). You can use their built-in search functions to browse through our entire collection of Docker Images:
-- [View on Docker Hub â](https://hub.docker.com/r/serversideup/php)
-- [View on GitHub Packages â](https://github.com/serversideup/docker-php/pkgs/container/php)
-
-## Downloading an image
-In the simplest form of using the image, you can simply pull it down.
-
-::code-panel
----
-label: Pull an image with Docker
----
-```bash
-docker pull serversideup/php:8.3-fpm-nginx
-```
-::
-
-If you'd like to explore the image a little bit more, you can run `bash` on the image and view the structure of everything.
-
-::code-panel
----
-label: Explore the image with Bash
----
-```bash
-docker run --rm --name php -it serversideup/php:8.3-fpm-nginx bash
-```
-::
-
-## Running with a container orchestrator
-`serversideup/php` is compatible with any container orchestrator that supports Docker images. Learn more below on how to use this image with the orchestrator of your choice.
-
-::orchestrators
-::
\ No newline at end of file
diff --git a/docs/content/docs/2.getting-started/3.default-configurations.md b/docs/content/docs/2.getting-started/3.default-configurations.md
deleted file mode 100644
index 98df5e76e..000000000
--- a/docs/content/docs/2.getting-started/3.default-configurations.md
+++ /dev/null
@@ -1,112 +0,0 @@
----
-head.title: 'Installation - Docker PHP - Server Side Up'
-description: 'Learn how to get started with serversideup/php Docker Images.'
-layout: docs
----
-
-# Default Configurations
-::lead-p
-`serversideup/php` is configured for real-world deployments right out of the box. This saves you many hours so you can launch faster than ever.
-::
-
-## Production-ready and optimized for Laravel & WordPress
-All values are defaulted to improve security and performance. We also spent the time to carefully review official documentation and include packages that are required specifically for Laravel and WordPress.
-
-## Unprivileged by Default
-All images default to running as the OS-native `www-data` user.
-
-::note
-The `www-data` UID/GID is different between Debian (`33:33`) and Alpine (`82:82`). We left these values alone to make these images as native as possible. If you switch between Debian and Alpine, you may need to adjust file permissions in your Docker image and volume mounts.
-::
-
-Since these images are not privileged, that means they are not running on ports less than 1024:
-
-| **Variation** | **Default Ports** |
-|---------------|-------------------|
-| cli | (none) |
-| fpm | 9000 |
-| fpm-nginx | HTTP: 8080, HTTPS: 8443 |
-| fpm-apache | HTTP: 8080, HTTPS: 8443 |
-| unit | HTTP: 8080, HTTPS: 8443 |
-
-### How do I run these services on ports 80 and/or 443?
-Almost everyone will want to run these services on ports 80 and 443. If you have an advanced setup, you can use a reverse proxy like Caddy or Traefik to handle the SSL termination and forward the traffic to the container on the non-privileged port.
-
-Or you can simply use Docker's port mapping feature to map the container port to the host port. For example, to run the `fpm-nginx` variation on port 80 and 443, you can run the following command:
-
-::code-panel
----
-label: Run FPM NGINX on port 80 and 443
----
-```bash
-docker run -p 80:8080 -p 443:8443 serversideup/php:8.4-fpm-nginx
-```
-::
-
-## Default Environment Variables
-We allow the ability to customize the behavior of PHP with environment variables. Be sure to review our production-ready default values on our [environment variable specification](/docs/reference/environment-variable-specification) page.
-
-## Default PHP INI Settings
-We provide a default PHP ini that come with the suggested and hardened settings for running PHP in production. This file is located at `/usr/local/etc/php/conf.d/serversideup-docker-php.ini`.
-
-To customize the PHP ini settings, read our [Changing Common PHP Settings](/docs/customizing-the-image/changing-common-php-settings) guide.
-
-## Default PHP Extensions
-The following extensions are installed by default:
-
-| **Extension** | **Description** | **Why we included it** |
-|---------------|-----------------|------------------------|
-| [opcache](https://www.php.net/manual/en/book.opcache.php) | The Zend OPcache provides faster PHP execution through opcode caching and optimization. | This is a must-have for PHP performance. â ī¸ OPcache is disabled by default but can easily be enabled with [`PHP_OPCACHE_ENABLE=1`](/docs/reference/environment-variable-specification).|
-| [mysqli](https://www.php.net/manual/en/book.mysqli.php) | The "MySQL Improved" extension is an older extension for connecting to MySQL 4.1 and above. | **Enabled for fpm-apache only**. This is a legacy MySQL connector required for WordPress.|
-| [pcntl](https://www.php.net/manual/en/intro.pcntl.php) | Process Control support in PHP implements the Unix style of process creation, program execution, signal handling and process termination. | This is required for [Laravel queues and Laravel Horizon](https://laravel.com/docs/10.x/queues#timeout)|
-| [pdo_mysql](https://www.php.net/manual/en/ref.pdo-mysql.php) | The MySQL PDO extension allows you to connect to MySQL databases. | MySQL and MariaDB databases are very popular. |
-| [pdo_pgsql](https://www.php.net/manual/en/ref.pdo-pgsql.php) | The PostgreSQL PDO extension allows you to connect to PostgreSQL databases. | PostgreSQL databases are very popular. |
-| [redis](https://www.php.net/manual/en/book.redis.php) | The Redis extension allows you to connect to Redis databases. | Redis is very popular for caching and it's also required for [Laravel Horizon](https://laravel.com/docs/10.x/horizon). Our tests concluded adding this package only added 2MB to the image size. |
-| [zip](https://www.php.net/manual/en/book.zip.php) | The Zip extension allows you to create and extract zip files. | We included this for the popularity of apps working with ZIP files. This package is also required if you're working with attachments on [Laravel Dusk](https://laravel.com/docs/10.x/dusk#attaching-files). |
-
-The official PHP images are already providing the following extensions:
-- ctype
-- curl
-- dom
-- fileinfo
-- filter
-- hash
-- mbstring
-- openssl
-- pcre
-- session
-- tokenizer
-- xml
-
-## Default Operating System Packages
-The following packages are installed by default:
-
-| **Package** | **Description** | **Image variations** | **Why we included it** |
-|-------------|-----------------|----------------------|------------------------|
-| `libfcgi-bin` (Debian) `fcgi` (Alpine) | FastCGI is a protocol for interfacing interactive programs with a web server. | *-fpm *-fpm-nginx *-fpm-apache | This is required for the webserver to interface with PHP-FPM and the [`php-fpm-healthcheck`](https://github.com/renatomefi/php-fpm-healthcheck) project. |
-| `gettext-base` (Debian) `gettext` (Alpine) | GNU gettext is a framework for translating user interfaces. | *-fpm-nginx *-fpm-apache | This is required for the `envsubst` command. We use this command to process templates on container initialization. |
-| `procps` (Debian) | The procps package contains programs for monitoring your system and its processes. | * (Debian images) | This is required for `pgrep` so we can use that for our native health checks. |
-| `shadow` | Shadow is required for the `usermod` command. | *-alpine | This is required to change the UID and GID of the `www-data` user in `docker-php-serversideup-set-id`. |
-
-## Health Checks
-By default, all health checks for web servers (Apache, Unit, NGINX, etc.) are located at `/healthcheck`. You should receive an `OK` response if the container is healthy.
-
-For our `fpm` variation, we use the [`php-fpm-healthcheck`](https://github.com/renatomefi/php-fpm-healthcheck) script to verify the health of PHP-FPM. This script is located at `/usr/local/bin/php-fpm-healthcheck`.
-
-The `cli` variation does not have a health check because it doesn't really make sense to have one. Would love to discuss more if you feel different.
-
-## Default Entrypoint Scripts
-We created an entrypoint script that scans the `entrypoint.d` directory for other shell scripts to execute before the main container process starts. All scripts are executed in alphabetical order so you can have full control over what script execution order.
-
-We also provide a few default scripts to help you get started.
-
-| **Script Name** | **Description** | **Image variations** |
-|------------|-----------------|----------------------|
-| `0-container-info.sh` | Shows basic execution information, such as Docker User, UID, GID, etc. | all |
-| `1-log-output-level.sh` | Sets PHP log output level to match `LOG_OUTPUT_LEVEL` | all |
-| `10-init-unit.sh` | Processes Unit templates, configures SSL (if enabled), and prepares NGINX Unit for launch | unit |
-| `10-init-webserver-config.sh` | Processes web server configuration templates, configures SSL (if enabled), and prepares web server for launch | *-nginx *-apache |
-| `50-laravel-automations.sh` | If `AUTORUN_ENABLED` is set to true, and a Laravel installation is detected, the following commands will automatically execute on container start: - `php artisan config:cache` - `php artisan route:cache` - `php artisan view:cache` - `php artisan event:cache` - `php artisan migrate --force` | all |
-
-## Disabling Default Entrypoint Scripts
-If you want full control to customize your image, all default entrypoint scripts can be disabled by setting `DISABLE_DEFAULT_CONFIG` to `true`.
diff --git a/docs/content/docs/2.getting-started/3.upgrade-guide.md b/docs/content/docs/2.getting-started/3.upgrade-guide.md
deleted file mode 100644
index 61536f9be..000000000
--- a/docs/content/docs/2.getting-started/3.upgrade-guide.md
+++ /dev/null
@@ -1,59 +0,0 @@
----
-head.title: 'Upgrade Guide - Docker PHP - Server Side Up'
-description: 'Learn how the serversideup/php Docker images are built and how to upgrade.'
-layout: docs
----
-
-# Upgrading
-If you do not select a specific patch version, then you will receive automatic PHP updates.
-
-For example, you can select your version based on the different version numbers:
-- Major Version (example: `8` will give you the latest 8.x version)
-- Minor Version (example: `8.4` will give you the latest 8.4.x version)
-- Patch Version (example: `8.4.1` will always stay at the 8.4.1 version)
-
-If you use `latest`, you will always get the latest stable version of the CLI variation of PHP. For the best stability in production environments, you may want to pin to a specific patch version (example: `8.4.1`).
-
-## Release process
-All source code is merged into the `main` branch, which automatically build our "beta" images.
-
-After testing the images internally and from other community members, we will [publish a release on GitHub](https://github.com/serversideup/docker-php/releases) with a detailed changelog.
-
-## Updating the Docker images on your own
-If you You and simply run `apt-get update && apt-get upgrade` within your own image, but still want the image to receive other operating system updates, you will need to run the following commands on your build.
-
-Any updates that you apply have a risk of breaking other things inside the container. Be sure to have a good testing process in place before applying updates to your production environment.
-
-::code-panel
----
-label: Example Dockerfile with manual updates for Debian
----
-```dockerfile
-FROM serversideup/php:8.4.1-fpm-nginx
-
-RUN apt-get update \
- && apt-get upgrade -y \
- && apt-get clean \
- && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
-```
-::
-
-If you're running an Alpine-based image, you can use the following commands:
-
-::code-panel
----
-label: Example Dockerfile with manual updates for Alpine
----
-```dockerfile
-FROM serversideup/php:8.4.1-fpm-nginx-alpine
-
-RUN apk update \
- && apk upgrade \
- && rm -rf /var/cache/apk/*
-```
-::
-
-## Subscribe to repository updates
-Regardless if you are choosing to use automatic updates or manual updates, it is highly advised to subscribe to our releases. You can do this through the "Watch" button on our [GitHub](https://github.com/serversideup/docker-php).
-
-
diff --git a/docs/content/docs/2.getting-started/4.choosing-a-host.md b/docs/content/docs/2.getting-started/4.choosing-a-host.md
deleted file mode 100644
index acab7f658..000000000
--- a/docs/content/docs/2.getting-started/4.choosing-a-host.md
+++ /dev/null
@@ -1,27 +0,0 @@
----
-head.title: 'Upgrade Guide - Docker PHP - Server Side Up'
-description: 'Learn where you can run your servers and still have control of your data.'
-layout: docs
----
-
-# Choosing a host
-We get asked where we host our infrastructure. Our biggest principle is: **your infrastructure should be able to run anywhere.**
-
-We believe privacy and control is the #1 priority when it comes to hosting infrastructure. We try to avoid the "big clouds" as much as possible because we're not comfortable that all 3 major players practice data mining of users and their products usually contain some sort of "vendor-lock".
-
-We run all our production servers on the latest LTS release of Ubuntu Server. The hosts we use are below. Some may be affiliate links that kick a few bucks at no extra cost to you, but they do not affect our recommendations at all.
-
-### [Hetzner](https://hetzner.cloud/?ref=lhLUIrkdUPhl)
-**Our current favorite.** Your mind will be blown for the specs you get for the prices. They are based in Europe, but have US datacenters too. We're running full out SaaS products for $5 USD a month. đ¤¯
-
-### [Vultr](https://vultr.grsm.io/create)
-Excellent performance and value. Lots of data center options too.
-
-### [Digital Ocean](https://m.do.co/c/f3bad4b927ca)
-Lots of developer love here. Not the best performing servers, but they do have a lot of awesome products!
-
-## Benchmarks
-If you're shopping for a host, [check out the benchmarks we've ran â](https://521dimensions.notion.site/Benchmark-Results-for-Self-hosted-Gitlab-Server-c6eca7c5f16d4bb8aeb989174fc58ffe)
-
-## Can I run this on another host?
-Sure! It all depends what platform you want to use, but if it supports Docker images, you likely can run it. These images are designed to give you freedom no matter where you want to run them.
\ No newline at end of file
diff --git a/docs/content/docs/2.getting-started/5.changelog.md b/docs/content/docs/2.getting-started/5.changelog.md
deleted file mode 100644
index afa243d3c..000000000
--- a/docs/content/docs/2.getting-started/5.changelog.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-head.title: 'Changelog - Docker PHP - Server Side Up'
-description: 'See the latest releases and changes for the PHP Docker Image project.'
-layout: docs
----
-
-# Changelog
-All our changes are documented and published on our GitHub. [See our release notes on GitHub â](https://github.com/serversideup/docker-php/releases)
-
-### Choosing a version
-You may want to review [our guide on selecting the right image](/docs/getting-started/installation#selecting-the-right-variation) to determine which version and image tag is best for you.
\ No newline at end of file
diff --git a/docs/content/docs/2.getting-started/7.contributing.md b/docs/content/docs/2.getting-started/7.contributing.md
deleted file mode 100644
index 54547ea6f..000000000
--- a/docs/content/docs/2.getting-started/7.contributing.md
+++ /dev/null
@@ -1,152 +0,0 @@
----
-head.title: 'Contributing - Docker PHP - Server Side Up'
-description: 'Learn how you can make a difference and contribute to the Docker PHP project.'
-layout: docs
----
-
-# Contributing
-Thanks for your interest in contributing to this project! Please use read this entire guide before submitting a pull request.
-
-## Improve the docs
-All our docs are located under `/docs`. Contributing is very easy and is documented under `/docs/README.md`.
-
-[Learn how to contribute to the docs](https://github.com/serversideup/docker-php/tree/main/docs)
-
-## Project dependencies
-You must have these installed on your system.
-* Docker (container system): https://www.docker.com/products/docker-desktop
-
-## How things work
-1. All files are stored in the `/src` folder
-1. GitHub Actions will automatically build and deploy the images
-
-## Running things locally
-To run a build, simply run `./scripts/dev.sh` (with Docker Desktop running). This will show you a help menu with all the available options.
-
-::code-panel
----
-label: "Example: Building a Unit image running PHP 8.2.12 on Debian Bookworm"
----
-```bash
-bash scripts/dev.sh --variation unit --version 8.2.12 --os bookworm
-```
-::
-
-This will build `serversideup/php:8.2.12-unit-bookworm` locally on your machine for testing and inspection.
-
-### Published Beta Images
-We also have beta images that are published from the [`release/v3.0`](https://github.com/serversideup/docker-php/tree/release/v3.0) branch (or the "main" branch once v3.0 is released).
-
-#### Debian Variations
-| âī¸ Variation | đ Version |
-| ------------ | ---------- |
-| cli | [](https://hub.docker.com/r/serversideup/php/?name=beta-8.4-cli&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.3-cli&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.2-cli&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.1-cli&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.0-cli&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-7.4-cli&page=1&ordering=-name) |
-| fpm | [](https://hub.docker.com/r/serversideup/php/?name=beta-8.4-fpm&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.3-fpm&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.2-fpm&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.1-fpm&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.0-fpm&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-7.4-fpm&page=1&ordering=-name) |
-| fpm-apache | [](https://hub.docker.com/r/serversideup/php/?name=beta-8.4-fpm-apache&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.3-fpm-apache&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.2-fpm-apache&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.1-fpm-apache&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.0-fpm-apache&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-7.4-fpm-apache&page=1&ordering=-name) |
-| fpm-nginx | [](https://hub.docker.com/r/serversideup/php/?name=beta-8.4-fpm-nginx&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.3-fpm-nginx&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.2-fpm-nginx&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.1-fpm-nginx&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.0-fpm-nginx&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-7.4-fpm-nginx&page=1&ordering=-name) |
-| unit | [](https://hub.docker.com/r/serversideup/php/?name=beta-8.4-unit&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.3-unit&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.2-unit&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.1-unit&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.0-unit&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-7.4-unit&page=1&ordering=-name) |
-
-#### Alpine Variations
-To see the size difference between Debian and Alpine, here is a list of our Alpine versions:
-
-| âī¸ Variation | đ Version |
-| ------------ | ---------- |
-| cli | [](https://hub.docker.com/r/serversideup/php/?name=beta-8.4-cli-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.3-cli-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.2-cli-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.1-cli-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.0-cli-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-7.4-cli-alpine&page=1&ordering=-name) |
-| fpm | [](https://hub.docker.com/r/serversideup/php/?name=beta-8.4-fpm-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.3-fpm-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.2-fpm-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.1-fpm-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.0-fpm-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-7.4-fpm-alpine&page=1&ordering=-name) |
-| fpm-apache | [](https://hub.docker.com/r/serversideup/php/?name=beta-8.4-fpm-apache-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.3-fpm-apache-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.2-fpm-apache-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.1-fpm-apache-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.0-fpm-apache-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-7.4-fpm-apache-alpine&page=1&ordering=-name) |
-| fpm-nginx | [](https://hub.docker.com/r/serversideup/php/?name=beta-8.4-fpm-nginx-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.3-fpm-nginx-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.2-fpm-nginx-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.1-fpm-nginx-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-8.0-fpm-nginx-alpine&page=1&ordering=-name) [](https://hub.docker.com/r/serversideup/php/?name=beta-7.4-fpm-nginx-alpine&page=1&ordering=-name) |
-| unit | â ī¸ Unit does not have an Alpine version. [See the known issue â](https://github.com/serversideup/docker-php/issues/233) |
-
-#### Running a test web server:
-Sometimes you need to just run a test web server locally to see if your changes work. Below is a good example on how to quickly do this.
-
-::code-panel
----
-label: "Example: Run a simple container for testing"
----
-```bash
-docker run --rm -v $(pwd):/var/www/html -p 80:8080 -p 443:8443 serversideup/php:8.4-fpm-nginx
-```
-::
-
-## How PHP Versions are selected for distribution
-We use the official PHP versions as our base image. To identify which versions should be built, we use a file called `scripts/conf/php-versions-base-config.yml` to explicitly select what versions should be built and any special rules/settings for each version (like base OS, default versions, etc).
-
-We then use a `scripts/get-php-versions.sh` script to download the [latest active releases from PHP](https://www.php.net/releases/active.php) and merge them into a final file called `scripts/conf/php-versions.yml`.
-
-The `php-versions.yml` file will include all final versions for tagging and building.
-
-We generate our tags with a file called `scripts/assemble-docker-tags.sh` which handles all the advanced logic of compiling our tags together.
-
-All the scripts above are designed to run locally and in GitHub Actions. Feel free to execute these scripts to see the help menus and how they work.
-
-## GitHub Actions
-We use GitHub Actions exclusively to publish all of our releases. If the image exists from DockerHub or GitHub Packages, it will never be published from a local machine.
-
-See `.github/workflows/action_publish-beta-images.yml` for an example of how we publish our beta images.
-
-## NGINX Versions
-We use the official NGINX repos to install the latest version of NGINX for each OS. The version to install is set by a build argument, which is loaded from the `scripts/conf/php-versions-base-config.yml` file.
-
-To view the current NGINX versions, run the following command:
-
-::code-panel
----
-label: "View NGINX versions"
----
-```bash
-./scripts/get-nginx-versions.sh
-```
-::
-
-This script will look at the official NGINX repos to find the latest version of NGINX for each OS. If you want to update the version, you can run the script with the `--write` flag.
-
-::code-panel
----
-label: "Update NGINX versions"
----
-```bash
-./scripts/get-nginx-versions.sh --write
-```
-::
-
-### NGINX repository key verification
-
-- **Debian (APT)**: We import the official NGINX GPG key from `https://nginx.org/keys/nginx_signing.key` and verify it against a pinned fingerprint via the `SIGNING_FINGERPRINT` build arg.
-- **Alpine (APK)**: APK uses a raw RSA public key (`nginx_signing.rsa.pub`). We verify this key by pinning the SHAâ256 of the DERâencoded public key via the `SIGNING_ALPINE_RSA_PUB_SHA256` build arg. You can provide multiple commaâseparated hashes to support key rotation.
-
-Compute the Alpine key hash when updating:
-
-```bash
-curl -sS https://nginx.org/keys/nginx_signing.rsa.pub -o /tmp/nginx_signing.rsa.pub
-# macOS
-openssl rsa -pubin -in /tmp/nginx_signing.rsa.pub -outform DER 2>/dev/null | shasum -a 256 | awk '{print $1}'
-# Linux
-openssl rsa -pubin -in /tmp/nginx_signing.rsa.pub -outform DER 2>/dev/null | sha256sum | awk '{print $1}'
-```
-
-Then build with the new hash (optionally include the old hash during rotation):
-
-```bash
-docker build \
- --build-arg SIGNING_ALPINE_RSA_PUB_SHA256="," \
- -f src/variations/fpm-nginx/Dockerfile .
-```
-
-Reference: [Installing NGINX Open Source â Alpine packages](https://docs.nginx.com/nginx/admin-guide/installing-nginx/installing-nginx-open-source/#prebuilt_alpine).
-
-Why allow multiple hashes? This is optional, but useful during a short rotation window:
-
-- Ensure CI builds across branches/runners succeed while the upstream key change propagates.
-- Avoid flakes from CDN/caching delays where some environments still see the old key.
-- Let you pre-stage the new value before the official switch, then remove the old afterwards.
-
-If you control all builds centrally and can update quickly, pass a single hash.
-
-## Helping out
-If you're really eager to help out, here are a few places to get started:
-- Help answer questions on [our GitHub Discussions](https://github.com/serversideup/docker-php/discussions) and [our Discord](https://serversideup.net/discord)
-- Chime in on [issues labeled "Help Wanted"](https://github.com/serversideup/docker-php/issues?q=is%3Aissue+is%3Aopen+label%3A%22%F0%9F%99%8F+Help+Wanted%22)
-- [Open a feature request](https://github.com/serversideup/docker-php/discussions/66) and tell us how we can improve
-- Run performance tests and share your results
-- Say good things and tag us on X (formerly Twitter): [@serversideup](https://x.com/serversideup), [@danpastori](https://x.com/danpastori), [@jaydrogers](https://x.com/jaydrogers)
diff --git a/docs/content/docs/2.image-variations/cli.md b/docs/content/docs/2.image-variations/cli.md
new file mode 100644
index 000000000..85d525189
--- /dev/null
+++ b/docs/content/docs/2.image-variations/cli.md
@@ -0,0 +1,78 @@
+---
+title: CLI
+description: 'Learn how to use the CLI variation of the serversideup/php image.'
+---
+
+::lead-p
+The CLI variation is a minimal image designed for running PHP from the command line only. It does not include a web server.
+
+Use this variation for running commands like Composer, running one-off scripts, or executing PHP commands that don't require a web server.
+::
+
+## When to Use CLI
+Use the CLI variation when you need to:
+
+- Run Composer for dependency management
+- Execute one-off PHP scripts
+- Need a very small image size
+
+#### Perfect for
+- Running PHP locally without needing to install PHP on your host system.
+
+#### What's Inside
+
+| Item | Status |
+|------|--------|
+| PHP CLI binary | â
|
+| Common PHP extensions | â
|
+| `composer` executable | â
|
+| `install-php-extensions` script | â
|
+| Essential system utilities | â
|
+| Native health checks | â |
+| Web server | â (no web server included) |
+| Process management | Single entrypoint, single process |
+| Exposed Ports | None |
+| Stop Signal | `SIGTERM` |
+
+## Quick Start
+Here are a few quick examples to get you started.
+
+### Docker CLI
+```bash [Terminal]
+docker run -it -v $(pwd):/var/www/html serversideup/php:cli bash
+```
+
+The above command will mount your current directory as the `/var/www/html` directory in the container and open a bash shell inside the container where PHP is installed. To exit, just type `exit`.
+
+### Docker Compose
+If you want something more repeatable, you can use Docker Compose to start a container with the CLI variation and mount your current directory as the `/var/www/html` directory in the container.
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:cli
+ volumes:
+ - ./:/var/www/html
+```
+
+Once you have your `compose.yml` file set, you can use the `docker compose` cli to start a container with your configuration.
+
+```bash [Terminal]
+docker compose run -it php bash
+```
+
+Or you can pass commands directly to the container without starting a shell.
+
+::note
+Don't get confused. `php` is in this command twice because it's the name of the service and the command to run inside the container. If this is too confusing, you can set your service name to something else like `app` in your `compose.yml` file.
+::
+
+```bash [Terminal]
+docker compose run php php my-script.php
+```
+
+### Further Customization
+If you need to customize the container further, reference the docs below:
+
+- [Environment Variable Specifications](/docs/reference/environment-variable-specification) - See which environment variables are available to customize common PHP settings.
+- [Command Reference](/docs/reference/command-reference) - See which commands are available to run inside the container.
diff --git a/docs/content/docs/2.image-variations/fpm-apache.md b/docs/content/docs/2.image-variations/fpm-apache.md
new file mode 100644
index 000000000..f25d3d301
--- /dev/null
+++ b/docs/content/docs/2.image-variations/fpm-apache.md
@@ -0,0 +1,249 @@
+---
+title: FPM-Apache
+description: 'Learn how to use the FPM-Apache variation of the serversideup/php image.'
+---
+
+::lead-p
+The FPM-Apache variation combines PHP-FPM with Apache as a reverse proxy in a single container. Apache serves static content directly and forwards PHP requests to PHP-FPM for processing.
+
+Use this variation when you need Apache-specific features, `.htaccess` support, or want an all-in-one solution for running PHP applications.
+::
+
+## When to Use FPM-Apache
+Use the FPM-Apache variation when you need to:
+
+- Run WordPress sites that rely on `.htaccess` configurations
+- Use Apache-specific modules like `mod_rewrite` or `mod_security`
+- Deploy applications that require `.htaccess` support
+- Want an all-in-one container with both web server and PHP processing
+- Need Apache's mature ecosystem and widespread documentation
+
+#### Perfect for
+- WordPress hosting with Docker
+- Legacy PHP applications that depend on Apache
+- Teams familiar with Apache configuration
+- Applications requiring `.htaccess` support
+
+#### What's Inside
+
+| Item | Status |
+|------|--------|
+| Apache web server | â
|
+| PHP-FPM process manager | â
|
+| PHP CLI binary | â
|
+| Common PHP extensions | â
|
+| `composer` executable | â
|
+| `install-php-extensions` script | â
|
+| Essential system utilities | â
|
+| S6 Overlay (process supervisor) | â
|
+| Native health checks | â
(via HTTP endpoint) |
+| `.htaccess` support | â
|
+| SSL/TLS support | â
(self-signed certificates or bring your own) |
+| Process management | S6 Overlay supervising both Apache and PHP-FPM |
+| Exposed Ports | `8080` (HTTP), `8443` (HTTPS) |
+| Stop Signal | `SIGQUIT` |
+
+## How FPM-Apache Works
+This variation runs both Apache and PHP-FPM in a single container, managed by S6 Overlay (for the most accurate process supervision). Here's how requests flow:
+
+::steps{level="4"}
+
+#### Client sends HTTP request
+The container listens on port 8080 (or 8443 for HTTPS) for incoming HTTP requests.
+
+#### Apache receives the request
+Apache receives the request and determines if it's a static file or PHP script.
+
+#### Check for static files
+Static files (CSS, JavaScript, images) are served directly by Apache.
+
+#### Forward PHP requests to PHP-FPM
+PHP requests are forwarded to PHP-FPM via FastCGI protocol.
+
+#### Process PHP requests with PHP-FPM
+PHP-FPM processes the PHP script and returns the result to Apache.
+
+#### Send the response back to the client
+Apache sends the response back to the client.
+
+::
+
+S6 Overlay ensures both Apache and PHP-FPM are running and automatically restarts them if either process fails.
+
+::note
+If you don't specifically need Apache, consider using the [`fpm-nginx`](/docs/image-variations/fpm-nginx) or [`frankenphp`](/docs/image-variations/frankenphp) variations instead. They offer better performance for modern PHP applications.
+::
+
+## Quick Start
+Here are a few examples to help you get started with the FPM-Apache variation.
+
+### Docker CLI
+```bash [Terminal]
+docker run -p 80:8080 -v $(pwd):/var/www/html/public serversideup/php:8.4-fpm-apache
+```
+
+Your application will be available at `http://localhost`. The default document root is `/var/www/html/public`.
+
+### Docker Compose
+::warning
+Notice how we're mapping the current directory to `/var/www/html/`, but the actual default document root is `/var/www/html/public`. We're assuming you're creating the `public` directory and putting your PHP code in there. It's not best practice to expose your `compose.yml` file. See the [Installation guide](/docs/getting-started/installation) for a full example.
+::
+
+This is the recommended approach for local development and production deployments.
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm-apache
+ ports:
+ - "80:8080"
+ - "443:8443"
+ volumes:
+ - ./:/var/www/html
+ environment:
+ PHP_OPCACHE_ENABLE: "1"
+ SSL_MODE: "full"
+```
+
+::tip
+The FPM-Apache variation uses ports 8080 and 8443 (instead of 80 and 443) to allow the container to run as a non-root user for better security.
+::
+
+### WordPress Example
+The FPM-Apache variation is excellent for WordPress hosting:
+
+```yml [compose.yml]
+services:
+ wordpress:
+ image: serversideup/php:8.4-fpm-apache
+ ports:
+ - "80:8080"
+ - "443:8443"
+ volumes:
+ - ./wordpress:/var/www/html
+ environment:
+ SSL_MODE: "full"
+ PHP_MEMORY_LIMIT: "512M"
+ PHP_OPCACHE_ENABLE: "1"
+ depends_on:
+ - mariadb
+
+ mariadb:
+ image: mariadb:11
+ environment:
+ MYSQL_ROOT_PASSWORD: rootpassword
+ MYSQL_DATABASE: wordpress
+ MYSQL_USER: wordpress
+ MYSQL_PASSWORD: wordpress
+ volumes:
+ - db_data:/var/lib/mysql
+
+volumes:
+ db_data:
+```
+
+### Health Check
+The FPM-Apache variation includes a built-in health check that verifies Apache is responding:
+
+::note
+The health check endpoint is configurable via the `HEALTHCHECK_PATH` environment variable, which defaults to `/healthcheck`.
+::
+
+If you are using Laravel, you can use the `/up` route to validate that Laravel is running and healthy.
+
+:u-button{to="/docs/guide/using-healthchecks-with-laravel" label="Learn more about using healthchecks with Laravel" aria-label="Learn more about using healthchecks with Laravel" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## SSL/TLS Support
+::tip{to="/docs/deployment-and-production/configuring-ssl"}
+For more information on SSL, see the [Configuring SSL](/docs/deployment-and-production/configuring-ssl) guide.
+::
+The FPM-Apache variation includes built-in SSL support with self-signed certificates for development.
+
+### Enabling SSL
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm-apache
+ ports:
+ - "8080:8080"
+ - "8443:8443"
+ volumes:
+ - ./:/var/www/html
+ environment:
+ SSL_MODE: "full"
+```
+
+Available SSL modes:
+- `off` - SSL disabled (default)
+- `mixed` - Both HTTP (8080) and HTTPS (8443) enabled
+- `full` - HTTPS only on port 8443
+
+### Custom SSL Certificates
+For production, use your own SSL certificates:
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm-apache
+ ports:
+ - "443:8443"
+ volumes:
+ - ./:/var/www/html
+ - ./certs/server.crt:/etc/ssl/private/self-signed-web.crt:ro
+ - ./certs/server.key:/etc/ssl/private/self-signed-web.key:ro
+ environment:
+ SSL_MODE: "full"
+```
+
+::warning
+For production deployments, consider using a reverse proxy like Traefik or Caddy to handle SSL termination instead of managing certificates in the container.
+::
+
+## Environment Variables
+The FPM-Apache variation supports extensive customization through environment variables.
+
+### Apache Configuration
+
+| Variable | Default | Description |
+|----------|---------|-------------|
+| `APACHE_DOCUMENT_ROOT` | `/var/www/html/public` | Document root for Apache |
+| `APACHE_START_SERVERS` | `2` | Number of Apache server processes to start |
+| `APACHE_MIN_SPARE_THREADS` | `10` | Minimum idle threads |
+| `APACHE_MAX_SPARE_THREADS` | `75` | Maximum idle threads |
+| `APACHE_THREADS_PER_CHILD` | `25` | Number of threads per child process |
+| `APACHE_MAX_REQUEST_WORKERS` | `150` | Maximum simultaneous connections |
+| `APACHE_MAX_CONNECTIONS_PER_CHILD` | `0` | Requests before child process restarts (0 = unlimited) |
+| `SSL_MODE` | `off` | SSL mode: `off`, `mixed`, or `full` |
+| `SSL_CERTIFICATE_FILE` | `/etc/ssl/private/self-signed-web.crt` | Path to SSL certificate |
+| `SSL_PRIVATE_KEY_FILE` | `/etc/ssl/private/self-signed-web.key` | Path to SSL private key |
+| `HEALTHCHECK_PATH` | `/healthcheck` | Path for health check endpoint |
+
+::tip{to="/docs/reference/environment-variable-specification"}
+For a complete list of available environment variables, see the [Environment Variable Specification â](/docs/reference/environment-variable-specification).
+::
+
+### PHP-FPM Configuration
+
+| Variable | Default | Description |
+|----------|---------|-------------|
+| `PHP_FPM_POOL_NAME` | `www` | Name of the PHP-FPM pool |
+| `PHP_FPM_PM_CONTROL` | `ondemand` | Process manager control (`dynamic`, `static`, `ondemand`) |
+| `PHP_FPM_PM_MAX_CHILDREN` | `20` | Maximum number of child processes |
+| `PHP_FPM_PM_START_SERVERS` | `2` | Number of child processes created on startup |
+| `PHP_FPM_PM_MIN_SPARE_SERVERS` | `1` | Minimum number of idle processes |
+| `PHP_FPM_PM_MAX_SPARE_SERVERS` | `3` | Maximum number of idle processes |
+| `PHP_MEMORY_LIMIT` | `256M` | Maximum memory a script can use |
+| `PHP_MAX_EXECUTION_TIME` | `99` | Maximum time a script can run (seconds) |
+| `PHP_UPLOAD_MAX_FILE_SIZE` | `100M` | Maximum upload file size |
+| `PHP_POST_MAX_SIZE` | `100M` | Maximum POST request size |
+
+::tip{to="/docs/reference/environment-variable-specification"}
+For a complete list of available environment variables, see the [Environment Variable Specification â](/docs/reference/environment-variable-specification).
+::
+
+## Further Customization
+If you need to customize the container further, reference the docs below:
+
+- [Environment Variable Specification](/docs/reference/environment-variable-specification) - See which environment variables are available to customize PHP and Apache settings.
+- [Command Reference](/docs/reference/command-reference) - See which commands are available to run inside the container.
+
diff --git a/docs/content/docs/2.image-variations/fpm-nginx.md b/docs/content/docs/2.image-variations/fpm-nginx.md
new file mode 100644
index 000000000..b69b7cba3
--- /dev/null
+++ b/docs/content/docs/2.image-variations/fpm-nginx.md
@@ -0,0 +1,337 @@
+---
+title: FPM-NGINX
+description: 'Learn how to use the FPM-NGINX variation of the serversideup/php image.'
+---
+
+::lead-p
+The FPM-NGINX variation combines PHP-FPM with NGINX as a reverse proxy in a single container. This is the traditional setup widely adopted for many PHP applications and is currently is the best balance of performance, stability, and compatibility. If you want the latest and greatest, consider using the [FrankenPHP variation â](/docs/image-variations/frankenphp).
+::
+
+## When to Use FPM-NGINX
+Use the FPM-NGINX variation when you need to:
+
+- Run Laravel applications with excellent performance and stability
+- Want an all-in-one container with both web server and PHP processing
+- Need a fast, lightweight web server with low resource consumption
+- Serve static assets efficiently while processing PHP requests
+
+#### Perfect for
+- Laravel applications (this is our most popular variation for Laravel)
+- Modern PHP frameworks (Symfony, etc.)
+- API-first applications
+- Production deployments requiring high performance and stability
+
+#### What's Inside
+
+| Item | Status |
+|------|--------|
+| NGINX web server | â
|
+| PHP-FPM process manager | â
|
+| PHP CLI binary | â
|
+| Common PHP extensions | â
|
+| `composer` executable | â
|
+| `install-php-extensions` script | â
|
+| Essential system utilities | â
|
+| S6 Overlay (process supervisor) | â
|
+| Native health checks | â
(via HTTP endpoint) |
+| SSL/TLS support | â
(self-signed certificates) |
+| Process management | S6 Overlay supervising both NGINX and PHP-FPM |
+| Exposed Ports | `8080` (HTTP), `8443` (HTTPS) |
+| Stop Signal | `SIGQUIT` |
+
+## How FPM-NGINX Works
+This variation runs both NGINX and PHP-FPM in a single container, managed by S6 Overlay. Here's how requests flow:
+
+::steps{level="4"}
+
+#### Client sends HTTP request
+The container listens on port 8080 (or 8443 for HTTPS) for incoming HTTP requests.
+
+#### NGINX receives the request
+NGINX receives the request and determines if it's a static file or PHP script.
+
+#### Check for static files
+Static files (CSS, JavaScript, images) are served directly by NGINX.
+
+#### Forward PHP requests to PHP-FPM
+PHP requests are forwarded to PHP-FPM via FastCGI protocol.
+
+#### Process PHP requests with PHP-FPM
+PHP-FPM processes the PHP script and returns the result to NGINX.
+
+#### Send the response back to the client
+NGINX sends the response back to the client.
+
+::
+
+S6 Overlay ensures both NGINX and PHP-FPM are running and automatically restarts them if either process fails.
+
+::tip
+This variation offers better performance than FPM-Apache for most modern PHP applications. NGINX is designed to handle high concurrency with lower resource consumption.
+::
+
+## Quick Start
+Here are a few examples to help you get started with the FPM-NGINX variation.
+
+### Docker CLI
+```bash [Terminal]
+docker run -p 80:8080 -v $(pwd):/var/www/html/public serversideup/php:8.4-fpm-nginx
+```
+
+Your application will be available at `http://localhost`. The default webroot is `/var/www/html/public`.
+
+### Docker Compose
+
+::warning
+Notice how we're mapping the current directory to `/var/www/html/`, but the actual default document root is `/var/www/html/public`. We're assuming you're creating the `public` directory and putting your PHP code in there. It's not best practice to expose your `compose.yml` file. See the [Installation guide](/docs/getting-started/installation) for a full example.
+::
+
+This is the recommended approach for local development and production deployments.
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+ ports:
+ - "80:8080"
+ volumes:
+ - ./:/var/www/html
+ environment:
+ PHP_OPCACHE_ENABLE: "1"
+```
+
+::tip
+The FPM-NGINX variation uses ports 8080 and 8443 (instead of 80 and 443) to allow the container to run as a non-root user for better security.
+::
+
+### Laravel Example
+The FPM-NGINX variation is perfectly suited for Laravel applications:
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+ ports:
+ - "80:8080"
+ - "443:8443"
+ volumes:
+ - .:/var/www/html
+ environment:
+ SSL_MODE: "full"
+ PHP_OPCACHE_ENABLE: "1"
+ depends_on:
+ - mariadb
+ - redis
+
+ mariadb:
+ image: mariadb:11
+ environment:
+ MYSQL_ROOT_PASSWORD: rootpassword
+ MYSQL_DATABASE: laravel
+ MYSQL_USER: laravel
+ MYSQL_PASSWORD: laravel
+ volumes:
+ - db_data:/var/lib/mysql
+
+ redis:
+ image: redis:alpine
+ command: redis-server --appendonly yes
+ volumes:
+ - redis_data:/data
+
+volumes:
+ db_data:
+ redis_data:
+```
+
+
+### Health Check
+The FPM-NGINX variation includes a built-in health check that verifies NGINX is responding:
+
+::note
+The health check endpoint is configurable via the `HEALTHCHECK_PATH` environment variable, which defaults to `/healthcheck`.
+::
+
+If you are using Laravel, you can use the `/up` route to validate that Laravel is running and healthy.
+
+:u-button{to="/docs/guide/using-healthchecks-with-laravel" label="Learn more about using healthchecks with Laravel" aria-label="Learn more about using healthchecks with Laravel" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## SSL/TLS Support
+The FPM-NGINX variation includes built-in SSL support with self-signed certificates for development.
+
+### Enabling SSL
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+ ports:
+ - "80:8080"
+ - "443:8443"
+ volumes:
+ - ./:/var/www/html
+ environment:
+ SSL_MODE: "full"
+```
+
+Available SSL modes:
+- `off` - SSL disabled (default)
+- `mixed` - Both HTTP (8080) and HTTPS (8443) enabled
+- `full` - HTTPS only on port 8443
+
+### Custom SSL Certificates
+For production, use your own SSL certificates:
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+ ports:
+ - "443:8443"
+ volumes:
+ - ./:/var/www/html
+ - ./certs/server.crt:/etc/ssl/private/self-signed-web.crt:ro
+ - ./certs/server.key:/etc/ssl/private/self-signed-web.key:ro
+ environment:
+ SSL_MODE: "full"
+```
+
+::warning
+For production deployments, consider using a reverse proxy like Traefik or Caddy to handle SSL termination instead of managing certificates in the container.
+::
+
+## Environment Variables
+The FPM-NGINX variation supports extensive customization through environment variables.
+
+### NGINX Configuration
+
+| Variable | Default | Description |
+|----------|---------|-------------|
+| `NGINX_WEBROOT` | `/var/www/html/public` | Document root for NGINX |
+| `NGINX_ACCESS_LOG` | `/dev/stdout` | Path to access log file |
+| `NGINX_ERROR_LOG` | `/dev/stderr` | Path to error log file |
+| `NGINX_CLIENT_MAX_BODY_SIZE` | `100M` | Maximum upload/request body size |
+| `NGINX_FASTCGI_BUFFERS` | `8 8k` | Number and size of FastCGI buffers |
+| `NGINX_FASTCGI_BUFFER_SIZE` | `8k` | Size of the first FastCGI response buffer |
+| `NGINX_SERVER_TOKENS` | `off` | Show NGINX version in headers (`on`/`off`) |
+| `NGINX_LISTEN_IP_PROTOCOL` | `all` | IP protocol to listen on (`all`, `ipv4`, `ipv6`) |
+| `SSL_MODE` | `off` | SSL mode: `off`, `mixed`, or `full` |
+| `SSL_CERTIFICATE_FILE` | `/etc/ssl/private/self-signed-web.crt` | Path to SSL certificate |
+| `SSL_PRIVATE_KEY_FILE` | `/etc/ssl/private/self-signed-web.key` | Path to SSL private key |
+| `HEALTHCHECK_PATH` | `/healthcheck` | Path for health check endpoint |
+
+::tip{to="/docs/reference/environment-variable-specification"}
+For a complete list of available environment variables, see the [Environment Variable Specification â](/docs/reference/environment-variable-specification).
+::
+
+### PHP-FPM Configuration
+
+| Variable | Default | Description |
+|----------|---------|-------------|
+| `PHP_FPM_POOL_NAME` | `www` | Name of the PHP-FPM pool |
+| `PHP_FPM_PM_CONTROL` | `ondemand` | Process manager control (`dynamic`, `static`, `ondemand`) |
+| `PHP_FPM_PM_MAX_CHILDREN` | `20` | Maximum number of child processes |
+| `PHP_FPM_PM_START_SERVERS` | `2` | Number of child processes created on startup |
+| `PHP_FPM_PM_MIN_SPARE_SERVERS` | `1` | Minimum number of idle processes |
+| `PHP_FPM_PM_MAX_SPARE_SERVERS` | `3` | Maximum number of idle processes |
+| `PHP_MEMORY_LIMIT` | `256M` | Maximum memory a script can use |
+| `PHP_MAX_EXECUTION_TIME` | `99` | Maximum time a script can run (seconds) |
+| `PHP_UPLOAD_MAX_FILE_SIZE` | `100M` | Maximum upload file size |
+| `PHP_POST_MAX_SIZE` | `100M` | Maximum POST request size |
+
+## Performance Tuning
+Here are some tuning recommendations for different scenarios:
+
+### For Production (low memory environments)
+::note{to="/docs/deployment-and-production/packaging-your-app-for-deployment"}
+If you're running an application in production, you'll likely want to package your application inside an image for deployment. Click here to learn more.
+::
+```yml [compose.yml]
+services:
+ php:
+ # You'll likely replace this with your own custom image name
+ image: serversideup/php:8.4-fpm-nginx
+ environment:
+ # Enable OPcache for production
+ PHP_OPCACHE_ENABLE: "1"
+
+ # NGINX Settings (adjust as needed)
+ NGINX_FASTCGI_BUFFERS: "16 16k"
+ NGINX_FASTCGI_BUFFER_SIZE: "32k"
+```
+
+### For High-Traffic Applications
+```yml [compose.yml]
+services:
+ php:
+ # You'll likely replace this with your own custom image name
+ image: serversideup/php:8.4-fpm-nginx
+ environment:
+ # NGINX Settings
+ NGINX_CLIENT_MAX_BODY_SIZE: "200M"
+ NGINX_FASTCGI_BUFFERS: "32 32k"
+
+ # PHP-FPM Settings (adjust as needed)
+ PHP_FPM_PM_CONTROL: "static"
+ PHP_FPM_PM_MAX_CHILDREN: "50"
+ PHP_MEMORY_LIMIT: "512M"
+
+ # OPcache Settings
+ PHP_OPCACHE_ENABLE: "1"
+```
+
+::note{to="/docs/reference/environment-variable-specification"}
+These are just examples. Review the [Environment Variable Specification](/docs/reference/environment-variable-specification) for a complete list of available environment variables to match your needs.
+::
+
+## NGINX Configuration
+Unlike Apache's `.htaccess` files, NGINX uses configuration files. The FPM-NGINX variation comes pre-configured for Laravel and modern PHP applications.
+
+### Default Configuration
+The default NGINX configuration includes:
+- FastCGI caching headers
+- Gzip compression
+- Security headers
+- Laravel-compatible URL rewriting
+- Static file optimization
+
+### Custom NGINX Configuration
+You can add custom NGINX server configuration by mounting files:
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+ ports:
+ - "80:8080"
+ volumes:
+ - ./:/var/www/html
+ - ./custom-nginx.conf:/etc/nginx/conf.d/custom.conf:ro
+```
+
+Example custom configuration:
+
+```nginx [custom-nginx.conf]
+# Add custom headers
+add_header X-Custom-Header "My Value" always;
+
+# Custom location block
+location /api {
+ try_files $uri $uri/ /index.php?$query_string;
+
+ # Additional settings for API endpoints
+ client_max_body_size 50M;
+}
+
+# Rate limiting
+limit_req_zone $binary_remote_addr zone=api:10m rate=10r/s;
+location /api/ {
+ limit_req zone=api burst=20 nodelay;
+}
+```
+
+## Further Customization
+If you need to customize the container further, reference the docs below:
+
+- [Environment Variable Specification](/docs/reference/environment-variable-specification) - See which environment variables are available to customize PHP and NGINX settings.
+- [Command Reference](/docs/reference/command-reference) - See which commands are available to run inside the container.
+
diff --git a/docs/content/docs/2.image-variations/fpm.md b/docs/content/docs/2.image-variations/fpm.md
new file mode 100644
index 000000000..6896e6466
--- /dev/null
+++ b/docs/content/docs/2.image-variations/fpm.md
@@ -0,0 +1,179 @@
+---
+title: FPM
+description: 'Learn how to use the FPM variation of the serversideup/php image.'
+---
+
+::lead-p
+The FPM variation runs PHP-FPM (FastCGI Process Manager) without a web server. It's designed to work alongside a separate web server or load balancer that handles static content and proxies PHP requests to this container.
+
+Use this variation when you're building microservices architectures or have a separate proxy layer handling HTTP traffic.
+::
+
+## When to Use FPM
+Use the FPM variation when you need to:
+
+- Separate your PHP processing from your web server layer
+- Build microservices where PHP runs as a dedicated backend service
+- Use a separate load balancer or API gateway to route traffic
+- Have an existing NGINX, Traefik, or other reverse proxy infrastructure
+- Scale your PHP processing independently from your web server
+
+#### Perfect for
+- Microservices architectures where separation of concerns is important
+- Kubernetes deployments with separate service containers
+- Large-scale deployments with dedicated load balancers
+- Advanced setups where you want full control over your proxy configuration
+
+#### What's Inside
+
+| Item | Status |
+|------|--------|
+| PHP-FPM process manager | â
|
+| PHP CLI binary | â
|
+| Common PHP extensions | â
|
+| `composer` executable | â
|
+| `install-php-extensions` script | â
|
+| Essential system utilities | â
|
+| S6 Overlay (process supervisor) | â
|
+| Native health checks | â
(via [`php-fpm-healthcheck`](https://github.com/renatomefi/php-fpm-healthcheck){target="_blank"} script) |
+| Web server | â (requires external web server) |
+| Process management | Single entrypoint, single process |
+| Exposed Ports | `9000` (FastCGI) |
+| Stop Signal | `SIGQUIT` |
+
+## How FPM Works
+Unlike variations that include a web server, the FPM variation only runs PHP-FPM, which listens on port 9000 for FastCGI requests.
+
+You'll need a separate web server (like NGINX, Apache, or Caddy) to:
+
+::steps{level="4"}
+#### Accept HTTP requests from clients
+#### Serve static files directly (CSS, JavaScript, images)
+#### Forward PHP requests to the FPM container on port 9000
+#### Return the PHP-FPM response back to the client
+::
+This architecture gives you maximum flexibility but requires more configuration than the all-in-one variations.
+
+::note
+If you want a simpler setup with everything in one container, consider using the `fpm-nginx`, `fpm-apache`, or `frankenphp` variations instead. These include both the web server and PHP-FPM in a single container.
+::
+
+## Quick Start
+Here are a few examples to help you get started with the FPM variation.
+
+### Docker Compose with Separate NGINX
+This example shows a common setup with PHP-FPM in one container and NGINX in another.
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm
+ volumes:
+ - ./:/var/www/html
+
+ nginx:
+ image: nginx:alpine
+ ports:
+ - "80:80"
+ volumes:
+ - ./:/var/www/html
+ - ./nginx.conf:/etc/nginx/conf.d/default.conf
+ depends_on:
+ - php
+```
+
+And your NGINX configuration (`nginx.conf`):
+
+```nginx [nginx.conf]
+server {
+ listen 80;
+ server_name localhost;
+ root /var/www/html/public;
+
+ index index.php index.html;
+
+ location / {
+ try_files $uri $uri/ /index.php?$query_string;
+ }
+
+ location ~ \.php$ {
+ fastcgi_pass php:9000;
+ fastcgi_index index.php;
+ fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+ include fastcgi_params;
+ }
+}
+```
+
+::tip
+Notice how the `fastcgi_pass` directive points to `php:9000`. This is the service name from your Docker Compose file. Docker's networking allows services to communicate using their service names.
+::
+
+### Health Check
+The FPM variation includes [`php-fpm-healthcheck`](https://github.com/renatomefi/php-fpm-healthcheck){target="_blank"}, a POSIX-compliant script that monitors PHP-FPM's `/status` endpoint to verify the service is healthy.
+
+::tip
+The `php-fpm-healthcheck` script can also monitor specific metrics like accepted connections or queue length. For example, you could fail the health check if the listen queue exceeds 10 processes: `php-fpm-healthcheck --listen-queue=10`
+::
+
+```yml [compose.yml]{7-10}
+services:
+ php:
+ image: serversideup/php:8.4-fpm
+ volumes:
+ - ./:/var/www/html
+ healthcheck:
+ test: ["CMD", "php-fpm-healthcheck", "--listen-queue=10"]
+ interval: 10s
+ timeout: 3s
+ retries: 3
+```
+
+## Environment Variables
+The FPM variation supports extensive customization through environment variables. Here are some common ones:
+
+| Variable | Default | Description |
+|----------|---------|-------------|
+| `PHP_FPM_POOL_NAME` | `www` | Name of the PHP-FPM pool |
+| `PHP_FPM_PM_CONTROL` | `dynamic` | Process manager control (`dynamic`, `static`, `ondemand`) |
+| `PHP_FPM_PM_MAX_CHILDREN` | `20` | Maximum number of child processes |
+| `PHP_FPM_PM_START_SERVERS` | `2` | Number of child processes created on startup |
+| `PHP_FPM_PM_MIN_SPARE_SERVERS` | `1` | Minimum number of idle processes |
+| `PHP_FPM_PM_MAX_SPARE_SERVERS` | `3` | Maximum number of idle processes |
+| `PHP_MEMORY_LIMIT` | `256M` | Maximum memory a script can use |
+| `PHP_MAX_EXECUTION_TIME` | `99` | Maximum time a script can run (seconds) |
+
+::tip{to="/docs/reference/environment-variable-specification"}
+For a complete list of available environment variables, see the [Environment Variable Specification â](/docs/reference/environment-variable-specification).
+::
+
+## Performance Tuning
+The FPM variation gives you fine-grained control over PHP process management. Here are some tuning tips:
+
+### For High-Traffic Applications
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm
+ environment:
+ PHP_FPM_PM_CONTROL: "static"
+ PHP_FPM_PM_MAX_CHILDREN: "50"
+ PHP_MEMORY_LIMIT: "512M"
+```
+
+### For Low-Memory Environments
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-fpm
+ environment:
+ PHP_FPM_PM_CONTROL: "ondemand"
+ PHP_FPM_PM_MAX_CHILDREN: "10"
+ PHP_FPM_PM_PROCESS_IDLE_TIMEOUT: "10s"
+```
+
+## Further Customization
+If you need to customize the container further, reference the docs below:
+
+- [Environment Variable Specification](/docs/reference/environment-variable-specification) - See which environment variables are available to customize PHP and PHP-FPM settings.
+- [Command Reference](/docs/reference/command-reference) - See which commands are available to run inside the container.
diff --git a/docs/content/docs/2.image-variations/frankenphp.md b/docs/content/docs/2.image-variations/frankenphp.md
new file mode 100644
index 000000000..f3edba26c
--- /dev/null
+++ b/docs/content/docs/2.image-variations/frankenphp.md
@@ -0,0 +1,408 @@
+---
+title: FrankenPHP
+description: 'Learn how to use the FrankenPHP variation of the serversideup/php image.'
+---
+
+::lead-p
+The FrankenPHP variation is a modern application server built on top of the Caddy web server. It runs PHP and the web server in a single process, eliminating the complexity of managing PHP-FPM and a separate web server.
+
+This is the cutting-edge variation that offers worker mode, automatic HTTPS, and modern protocols like HTTP/2 and HTTP/3. It's the recommended variation for new Laravel projects seeking maximum performance.
+::
+
+## When to Use FrankenPHP
+Use the FrankenPHP variation when you need to:
+
+- Run Laravel Octane with maximum performance
+- Use worker mode to keep your application in memory
+- Get automatic HTTPS with zero configuration
+- Support modern protocols like HTTP/2 and HTTP/3
+- Simplify your container architecture (single process)
+- Deploy Symfony applications with the Runtime component
+
+#### Perfect for
+- Laravel Octane applications
+- Symfony applications using the Runtime component
+- Modern PHP applications that can benefit from worker mode
+- Projects requiring automatic HTTPS
+- High-performance APIs that benefit from persistent connections
+- Teams wanting the latest and greatest in PHP application servers
+- Apps that need PHP 8.3 or newer
+
+## Comparing FrankenPHP to Other Variations
+
+| Feature | FrankenPHP | FPM-NGINX | FPM-Apache |
+|---------|-----------|-----------|------------|
+| Performance | âĄī¸ Excellent (worker mode) | â
Very Good | â
Good |
+| Setup Complexity | â
Simple | â
Simple | â
Simple |
+| Worker Mode | â
Yes | â No | â No |
+| Automatic HTTPS | â
Yes | â No | â No |
+| HTTP/3 Support | â
Yes | â No | â No |
+| Laravel Octane | â
Native support | â ī¸ Use Swoole | â ī¸ Use Swoole |
+| .htaccess Support | â No | â No | â
Yes |
+| Maturity | â ī¸ New | â
Mature | â
Mature |
+
+::tip
+FrankenPHP is the newest variation and represents the future of PHP application servers. If you're starting a new project and can commit to modern practices, this is the variation to choose.
+::
+
+#### Known Issues
+::warning{to="https://frankenphp.dev/docs/known-issues/#standalone-binary-and-alpine-based-docker-images" target="_blank"}
+Some people are reporting performance issues on the `alpine` version of FrankenPHP. If you're experiencing this, consider using the `debian` version.
+::
+
+FrankenPHP is cutting edge and is a very active project. Be sure to understand FrankenPHP's known issues before using it in production. If you're looking for better compatibility, consider using the [FPM-NGINX](/docs/image-variations/fpm-nginx) image.
+
+:u-button{to="https://frankenphp.dev/docs/known-issues/" target="_blank" label="View FrankenPHP's known issues" aria-label="FrankenPHP known issues" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Differences from Official FrankenPHP Images
+
+Our FrankenPHP images are built with production deployments and enterprise security in mind. While the official FrankenPHP images are great for getting started, we've made several enhancements that make these images more suitable for production environments, especially when deploying at scale with orchestrators like Kubernetes, Docker Swarm, or managed container platforms.
+
+### Security-First Design: Unprivileged by Default
+
+Unlike the official FrankenPHP images that run as root, our images run as the unprivileged `www-data` user by default. This dramatically reduces your security footprint in production environments.
+
+**What this means for you:**
+- Containers run with minimal privileges, following security best practices
+- HTTP listens on port `8080` (instead of 80)
+- HTTPS listens on port `8443` (instead of 443)
+- Consistent with our other image variations for a unified experience
+
+::tip
+This unprivileged design is consistent across all our image variations. Learn more about our [default configurations](/docs/getting-started/default-configurations#unprivileged-by-default).
+::
+
+### Native Health Checks with Laravel Integration
+
+Health checks are critical for zero-downtime deployments, but the official images don't include them. Our images come with intelligent health check endpoints that work out of the box.
+
+**Built-in features:**
+- Default `/healthcheck` endpoint configured in Caddy
+- Configurable via `HEALTHCHECK_PATH` environment variable
+- Works with Laravel's native `/up` health check endpoint
+- Ensures your application is truly ready before accepting traffic
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-frankenphp
+ environment:
+ # Use Laravel's built-in health check
+ HEALTHCHECK_PATH: /up
+ healthcheck:
+ test: ["CMD", "healthcheck"]
+ interval: 10s
+ timeout: 5s
+ retries: 3
+```
+
+::tip
+Learn more about [using health checks with Laravel](/docs/guide/using-healthchecks-with-laravel) to ensure your application is ready before accepting requests.
+::
+
+### Production-Grade Caddyfile Configuration
+
+The official FrankenPHP Dockerfile provides a basic Caddyfile to get started. We've spent considerable time crafting a production-ready configuration that includes security hardening, performance optimizations, and enterprise features.
+
+**What's included:**
+- **CloudFlare integration** - Trusted IP addresses configured automatically
+- **Security headers** - Best-practice headers included by default
+- **Performance rules** - Smart caching and compression configured
+- **Flexible logging** - Configurable output formats and levels
+- **Self-signed certificates** - Automatic generation for development environments
+- **Let's Encrypt support** - Easy configuration for automatic SSL certificates
+
+### Designed for Orchestrator Deployments
+
+FrankenPHP's tight integration with Caddy enables amazing features like automatic Let's Encrypt SSL certificates. However, in most production deployments, you're likely using a load balancer or reverse proxy for SSL termination, making Caddy's automatic SSL less useful and potentially problematic at scale.
+
+**Our orchestrator-first approach:**
+- Assumes SSL/TLS termination happens at the load balancer level
+- Optimized for zero-downtime rolling deployments
+- Works seamlessly with Kubernetes, Docker Swarm, and managed platforms
+- Simplifies scaling from one container to hundreds
+
+{:zoom=false}
+
+::note
+You can still use Caddy's automatic HTTPS with Let's Encrypt if you prefer. See our [Configuring SSL](/docs/deployment-and-production/configuring-ssl) guide for all available options.
+::
+
+### Consistent Environment Variable Experience
+
+Just like all our other PHP variations, the FrankenPHP images support the same environment variables and helper scripts you're already familiar with.
+
+**Unified configuration across all variations:**
+- `SSL_MODE` - Control SSL behavior (`off`, `mixed`, `full`)
+- `LOG_OUTPUT_LEVEL` - Adjust logging verbosity
+- PHP INI settings via environment variables
+- Helper scripts for permissions management
+- Consistent startup script behavior
+
+This means you can switch between variations (FrankenPHP, FPM-NGINX, FPM-Apache) with minimal configuration changes.
+
+:u-button{to="/docs/reference/environment-variable-specification" label="View all environment variables" aria-label="View environment variable specification" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### More Operating System Variations
+
+We compile FrankenPHP from source, which allows us to support multiple operating systems for maximum flexibility.
+
+**Available platforms:**
+- Debian Bookworm (12)
+- Debian Trixie (13)
+- Alpine 3.21
+- Alpine 3.22
+
+This gives you the freedom to choose the base OS that best fits your infrastructure and security requirements.
+
+#### What's Inside
+
+| Item | Status |
+|------|--------|
+| FrankenPHP application server | â
|
+| Caddy web server | â
(built-in) |
+| PHP CLI binary | â
|
+| Common PHP extensions | â
|
+| `composer` executable | â
|
+| `install-php-extensions` script | â
|
+| Essential system utilities | â
|
+| Worker mode support | â
|
+| Automatic HTTPS | â
|
+| HTTP/2 support | â
|
+| HTTP/3 support | â
|
+| Mercure (real-time) | â
|
+| Native health checks | â
(via HTTP endpoint) |
+| SSL/TLS support | â
(automatic + self-signed) |
+| Process management | Single process (no supervisor needed) |
+| Exposed Ports | `8080` (HTTP), `8443` (HTTPS + HTTP/3), `2019` (Caddy admin) |
+| Stop Signal | `SIGTERM` |
+
+## Classic Mode vs Worker Mode
+Unlike traditional setups that require a separate web server and PHP-FPM, FrankenPHP runs everything in a single process. It also operates in two modes:
+
+#### Classic Mode (Default)
+- FrankenPHP functions like a traditional PHP server (similar to PHP-FPM)
+- Each request bootstraps your application fresh
+- No additional configuration needed
+- Safe for any existing PHP applications
+
+#### Worker Mode (Advanced)
+Worker mode is FrankenPHP's killer feature. Instead of bootstrapping your application for every request, it stays loaded in memory:
+
+- **Traditional**: Bootstrap app â Handle request â Teardown â Repeat
+- **Worker Mode**: Bootstrap app once â Handle requests indefinitely
+
+This can result in dramatic performance improvements for Laravel applications.
+
+::tip
+Worker mode is perfect for Laravel Octane. Your application boots once and handles thousands of requests without reloading, dramatically improving response times.
+::
+
+## How FrankenPHP Works
+
+::steps{level="4"}
+
+#### Client sends request
+The client sends an HTTP request to port 8080 (or 8443 for HTTPS).
+
+#### FrankenPHP receives and processes the request
+FrankenPHP receives and processes the request directly in a single process. This includes:
+
+1. Static files
+2. PHP requests
+
+#### Send response back to client
+The response is sent back to the client.
+
+::
+
+## Quick Start
+Here are a few examples to help you get started with the FrankenPHP variation.
+
+### Docker CLI
+
+```bash [Terminal]
+docker run -p 80:8080 -v $(pwd):/var/www/html/public serversideup/php:8.4-frankenphp
+```
+
+Your application will be available at `http://localhost`. The default webroot is `/var/www/html/public`.
+
+### Docker Compose
+Here's a basic example getting FrankenPHP up and running with Docker Compose.
+
+::warning
+Don't forget to create a `public` directory and put your PHP code in there.
+::
+
+::code-tree{defaultValue="compose.yml"}
+
+```yml [compose.yml]
+services:
+ php:
+ # Choose our PHP version and variation
+ image: serversideup/php:8.4-frankenphp
+ # Expose and map HTTP and HTTPS ports
+ ports:
+ - 80:8080
+ - 443:8443
+ # Mount current directory to /var/www/html
+ volumes:
+ - ./:/var/www/html
+ # Support both HTTP and HTTPS
+ environment:
+ SSL_MODE: mixed
+```
+
+```php [public/index.php]
+
+```
+::
+
+::tip
+The FrankenPHP variation uses ports 8080 and 8443 (instead of 80 and 443) to allow the container to run as a non-root user for better security.
+::
+
+### Laravel Octane
+Laravel Octane natively supports FrankenPHP. Use our guide below to learn more.
+
+:u-button{to="/docs/framework-guides/laravel/octane" label="Learn more about Laravel Octane" aria-label="Learn more about Laravel Octane" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### Health Check
+The FrankenPHP variation includes a built-in health check that verifies the server is responding:
+
+::note
+The health check endpoint is configurable via the `HEALTHCHECK_PATH` environment variable, which defaults to `/healthcheck`.
+::
+
+If you are using Laravel, you can use the `/up` route to validate that Laravel is running and healthy.
+
+:u-button{to="/docs/guide/using-healthchecks-with-laravel" label="Learn more about using healthchecks with Laravel" aria-label="Learn more about using healthchecks with Laravel" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Automatic HTTPS
+One of FrankenPHP's standout features is automatic HTTPS powered by Caddy. It can automatically obtain and renew SSL certificates from Let's Encrypt.
+
+::tip{to="/docs/deployment-and-production/configuring-ssl"}
+See our [Configuring SSL](/docs/deployment-and-production/configuring-ssl) guide for more information on the best strategies for running SSL in production.
+::
+
+### Enabling Automatic HTTPS
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-frankenphp
+ ports:
+ - "80:8080"
+ - "443:8443"
+ volumes:
+ - ./:/var/www/html
+ environment:
+ CADDY_AUTO_HTTPS: "on"
+ # Your domain for automatic certificate
+ SERVER_NAME: "example.com"
+ SSL_MODE: "full"
+```
+
+::warning
+Automatic HTTPS requires a public domain name and ports 80/443 accessible from the internet for Let's Encrypt validation. For local development, use self-signed certificates with `SSL_MODE`.
+::
+
+### SSL Modes for Development
+For local development, use the `SSL_MODE` environment variable:
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-frankenphp
+ ports:
+ - "80:8080"
+ - "443:8443"
+ volumes:
+ - ./:/var/www/html
+ environment:
+ SSL_MODE: "full"
+```
+
+Available SSL modes:
+- `off` - SSL disabled (default)
+- `mixed` - Both HTTP (8080) and HTTPS (8443) enabled
+- `full` - HTTPS only on port 8443
+
+Learn more about SSL modes in the [Configuring SSL](/docs/deployment-and-production/configuring-ssl) guide.
+
+:u-button{to="/docs/deployment-and-production/configuring-ssl" label="Learn more about SSL modes" aria-label="Learn more about SSL modes" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Environment Variables
+The FrankenPHP variation supports extensive customization through environment variables.
+
+### FrankenPHP/Caddy Configuration
+
+| Variable | Default | Description |
+|----------|---------|-------------|
+| `FRANKENPHP_CONFIG` | `""` | FrankenPHP-specific configuration (e.g., worker mode) |
+| `CADDY_SERVER_ROOT` | `/var/www/html/public` | Document root for the application |
+| `CADDY_AUTO_HTTPS` | `off` | Enable automatic HTTPS (`on`/`off`) |
+| `CADDY_HTTP_PORT` | `8080` | HTTP port |
+| `CADDY_HTTPS_PORT` | `8443` | HTTPS port |
+| `CADDY_ADMIN` | `off` | Caddy admin API endpoint |
+| `CADDY_LOG_FORMAT` | `console` | Log format (`console`/`json`) |
+| `CADDY_LOG_OUTPUT` | `stdout` | Log output destination |
+| `CADDY_GLOBAL_OPTIONS` | `""` | Additional Caddy global options |
+| `CADDY_SERVER_EXTRA_DIRECTIVES` | `""` | Additional Caddy server directives |
+| `SSL_MODE` | `off` | SSL mode: `off`, `mixed`, or `full` |
+| `SSL_CERTIFICATE_FILE` | `/etc/ssl/private/self-signed-web.crt` | Path to SSL certificate |
+| `SSL_PRIVATE_KEY_FILE` | `/etc/ssl/private/self-signed-web.key` | Path to SSL private key |
+| `HEALTHCHECK_PATH` | `/healthcheck` | Path for health check endpoint |
+| `SERVER_NAME` | `""` | Domain name for automatic HTTPS |
+
+::tip{to="/docs/reference/environment-variable-specification"}
+For a complete list of available environment variables, see the [Environment Variable Specification â](/docs/reference/environment-variable-specification).
+::
+
+### PHP Configuration
+
+| Variable | Default | Description |
+|----------|---------|-------------|
+| `PHP_MEMORY_LIMIT` | `256M` | Maximum memory a script can use |
+| `PHP_MAX_EXECUTION_TIME` | `99` | Maximum time a script can run (seconds) |
+| `PHP_UPLOAD_MAX_FILE_SIZE` | `100M` | Maximum upload file size |
+| `PHP_POST_MAX_SIZE` | `100M` | Maximum POST request size |
+| `PHP_OPCACHE_ENABLE` | `0` | Enable OPcache (`0`/`1`) |
+| `PHP_OPCACHE_REVALIDATE_FREQ` | `2` | How often to check for file changes (seconds) |
+| `PHP_OPCACHE_VALIDATE_TIMESTAMPS` | `1` | Whether to validate timestamps (`0`/`1`) |
+
+## Caddy Configuration
+FrankenPHP uses Caddy's configuration format (Caddyfile) instead of NGINX configuration.
+
+### Adding Custom Options
+There are a few areas where you can use environment variables to customize your Caddy configuration:
+
+| Variable | Description | Official Documentation |
+|----------|-------------|-------------|
+| `CADDY_GLOBAL_OPTIONS` | Global Caddy options | [Caddy Global Options](https://caddyserver.com/docs/caddyfile/options){target="_blank"} |
+| `CADDY_SERVER_EXTRA_DIRECTIVES` | Server-specific Caddy directives | [Caddy Server Directives](https://caddyserver.com/docs/caddyfile/directives){target="_blank"} |
+| `CADDY_PHP_SERVER_OPTIONS` | PHP-specific Caddy directives (site-specific) | [FrankenPHP PHP Server Options](https://frankenphp.dev/docs/config/#caddyfile-config){target="_blank"} |
+| `FRANKENPHP_CONFIG` | FrankenPHP-specific configuration (global) | [FrankenPHP Configuration](https://frankenphp.dev/docs/config/#caddyfile-config){target="_blank"} |
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-frankenphp
+ environment:
+ CADDY_SERVER_EXTRA_DIRECTIVES: |
+ # Add custom headers
+ header {
+ X-Custom-Header "My Value"
+ -Server
+ }
+```
+
+## Further Customization
+If you need to customize the container further, reference the docs below:
+
+- [Environment Variable Specification](/docs/reference/environment-variable-specification) - See which environment variables are available to customize PHP and Caddy settings.
+- [Command Reference](/docs/reference/command-reference) - See which commands are available to run inside the container.
+- [FrankenPHP Documentation](https://frankenphp.dev/){target="_blank"} - Official FrankenPHP documentation for advanced features.
+- [Caddy Documentation](https://caddyserver.com/docs/){target="_blank"} - Official Caddy documentation for web server configuration.
\ No newline at end of file
diff --git a/docs/content/docs/2.image-variations/unit.md b/docs/content/docs/2.image-variations/unit.md
new file mode 100644
index 000000000..62652fa36
--- /dev/null
+++ b/docs/content/docs/2.image-variations/unit.md
@@ -0,0 +1,74 @@
+---
+title: Unit (Deprecated)
+description: 'NGINX Unit has been archived. This guide helps you understand what happened and how to migrate to actively maintained alternatives.'
+---
+
+## NGINX Unit Has Been Archived
+
+In October 2025, NGINX officially archived the NGINX Unit project and stopped all maintenance. If you're seeing this page, you're likely using our Unit-based images and wondering what to do next.
+
+::caution{to="https://github.com/nginx/unit?tab=readme-ov-file#nginx-unit" target="_blank"}
+**The Unit variation is deprecated and will be removed in the next major release.** [View official NGINX announcement â](https://github.com/nginx/unit?tab=readme-ov-file#nginx-unit){target="_blank"}
+::
+
+**The good news:** Your application will continue to work, and you have time to plan your migration. Below, we'll answer your most important questions and guide you through your options.
+
+## Common Questions
+
+### Will my application stop working immediately?
+
+No. Your existing containers will continue to run without interruption. However:
+
+- **No security updates:** NGINX Unit will not receive security patches
+- **No bug fixes:** Any issues with Unit itself won't be resolved
+- **No new PHP versions:** Unit may not support future PHP releases
+
+You should prioritize your migration, but you're not in a downtime situation.
+
+### What should I migrate to?
+
+We recommend **FrankenPHP** as the best alternative because it offers:
+
+- **Single-process architecture** (similar to Unit's design)
+- **Built-in HTTP/2 and HTTP/3 support**
+- **Active development** by the PHP community
+- **Laravel Octane support** for enhanced performance
+- **Better performance** than traditional PHP-FPM setups
+
+:u-button{to="/docs/image-variations/frankenphp" label="Learn about FrankenPHP" aria-label="Learn about FrankenPHP variation" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### What if FrankenPHP doesn't work for me?
+
+You have other proven options:
+
+- **[FPM + NGINX](/docs/image-variations/fpm-nginx)** - Traditional, highly scalable setup (recommended for most production apps)
+- **[FPM + Apache](/docs/image-variations/fpm-apache)** - If you need `.htaccess` support or prefer Apache
+- **[CLI](/docs/image-variations/cli)** - For queue workers, scheduled tasks, and CLI-only workloads
+
+All of these variations are actively maintained and production-ready.
+
+### How urgent is this migration?
+
+**Timeline:**
+- **Now:** Unit images work but receive no updates
+- **Next release:** Unit images will be removed from our project
+
+**Recommendation:** Start planning your migration now. Don't rush, but don't delay indefinitely.
+
+### Where can I get help?
+
+We're here to support you through this transition:
+
+- **Community Support:** [Post on our forum](https://serversideup.net/php/community) or [join our Discord](https://serversideup.net/discord) for migration questions
+- **Migration Assistance:** Ask questions specific to your setup
+- **Documentation:** Follow our comprehensive guides for each variation
+
+## Need More Information?
+
+Explore the documentation for your chosen variation:
+
+- [FrankenPHP Documentation](/docs/image-variations/frankenphp)
+- [FPM + NGINX Documentation](/docs/image-variations/fpm-nginx)
+- [FPM + Apache Documentation](/docs/image-variations/fpm-apache)
+
+Each variation includes detailed configuration examples, performance tuning tips, and deployment guides.
\ No newline at end of file
diff --git a/docs/content/docs/3.framework-guides/1.laravel/.navigation.yml b/docs/content/docs/3.framework-guides/1.laravel/.navigation.yml
new file mode 100644
index 000000000..2cbfff2b5
--- /dev/null
+++ b/docs/content/docs/3.framework-guides/1.laravel/.navigation.yml
@@ -0,0 +1,3 @@
+title: Laravel
+icon: false
+defaultOpen: false
\ No newline at end of file
diff --git a/docs/content/docs/3.framework-guides/1.laravel/1.automations.md b/docs/content/docs/3.framework-guides/1.laravel/1.automations.md
new file mode 100644
index 000000000..6f88dbfc4
--- /dev/null
+++ b/docs/content/docs/3.framework-guides/1.laravel/1.automations.md
@@ -0,0 +1,163 @@
+---
+head.title: 'Laravel Automations Script - Docker PHP - Server Side Up'
+description: 'Automate your deployments and minimize your efforts with Laravel.'
+layout: docs
+title: Automations
+---
+
+::lead-p
+`serversideup/php` has a "Laravel Automations" script that helps automate common tasks to maintain your Laravel application and improve it's performance. By default, the script is **DISABLED**. We only recommend enabling this script in production environments.
+::
+
+## What the script does
+
+::note
+In order for this script to run,`AUTORUN_ENABLED` must be set to `true`. Once the main part of the script is enabled, you can control the individual tasks by setting the corresponding environment variables to `true` or `false`. See our [variable reference document](/docs/reference/environment-variable-specification) for more details.
+::
+
+| Environment Variable | Default | Description |
+| -------------------- | -------------- | ----------- |
+| `AUTORUN_ENABLED` | `false` | Enables the Laravel Automations script. **âšī¸ Note:** This must be set to `true` for the script to run. |
+| `AUTORUN_DEBUG` | `false` | Enables a special debug mode, specifically for the Laravel Automations script. |
+| `AUTORUN_LARAVEL_CONFIG_CACHE` | `true` | `php artisan config:cache`: Caches the configuration files into a single file. |
+| `AUTORUN_LARAVEL_EVENT_CACHE` | `true` | `php artisan event:cache`: Creates a manifest of all your application's events and listeners. |
+| `AUTORUN_LARAVEL_MIGRATION` | `true` | `php artisan migrate`: Runs migrations. |
+| `AUTORUN_LARAVEL_MIGRATION_DATABASE` | `null` | Run migrations on a specific database. In the rare case you need to use multiple databases, you can provide a comma-delimited list of connection names (e.g., "mysql,pgsql"). If `null`, it will use the default database connection. |
+| `AUTORUN_LARAVEL_MIGRATION_FORCE` | `true` | Force migrations to run in production without confirmation. Set to `false` to disable the `--force` flag. |
+| `AUTORUN_LARAVEL_MIGRATION_ISOLATION` | `false` | Run your migrations with the [`--isolated`](https://laravel.com/docs/12.x/migrations#running-migrations) flag. **âšī¸ Note:** Requires Laravel v9.38.0+. Only works with `default` migration mode. |
+| `AUTORUN_LARAVEL_MIGRATION_MODE` | `default` | Migration mode: `default`, `fresh`, or `refresh`. **â ī¸ Warning:** `fresh` and `refresh` drop all tables. |
+| `AUTORUN_LARAVEL_MIGRATION_SEED` | `false` | Automatically seed the database after migrations using the `--seed` flag. |
+| `AUTORUN_LARAVEL_MIGRATION_SKIP_DB_CHECK` | `false` | Skip the database connection check before running migrations. |
+| `AUTORUN_LARAVEL_MIGRATION_TIMEOUT` | `30` | Number of seconds to wait for database connection before timing out during migrations. |
+| `AUTORUN_LARAVEL_OPTIMIZE` | `true` | `php artisan optimize`: Optimizes the application. |
+| `AUTORUN_LARAVEL_ROUTE_CACHE` | `true` | `php artisan route:cache`: Caches the routes. |
+| `AUTORUN_LARAVEL_STORAGE_LINK` | `true` | `php artisan storage:link`: Creates a symbolic link from `public/storage` to `storage/app/public`. |
+| `AUTORUN_LARAVEL_VIEW_CACHE` | `true` | `php artisan view:cache`: Caches the views. |
+
+## Database Connection Checks
+Before running migrations, the automation script performs connection checks to ensure your database is ready. Understanding this process helps you configure timeouts and troubleshoot connection issues.
+
+::note
+You can skip database connection checks entirely by setting `AUTORUN_LARAVEL_MIGRATION_SKIP_DB_CHECK=true`. This is useful when you're certain your database is ready or when using alternative connection verification methods.
+::
+
+::steps{level="3"}
+
+### Clear configuration cache
+The script runs `php artisan config:clear` to ensure fresh database configuration is loaded before attempting any connections.
+
+### Attempt database connection
+The script tests the database connection using a retry mechanism:
+- Attempts to connect every second
+- Continues for up to `AUTORUN_LARAVEL_MIGRATION_TIMEOUT` seconds (default: 30)
+- Shows connection progress in real-time
+- Logs detailed attempts every 5 seconds when `AUTORUN_DEBUG=true`
+
+### Verify each database connection
+If you've specified multiple databases via `AUTORUN_LARAVEL_MIGRATION_DATABASE`, the script waits for each database connection individually before proceeding with migrations for that database.
+
+### Run migrations
+Once the database connection is confirmed, the script executes the appropriate migration command based on your configuration.
+
+::
+
+::tip
+Set `AUTORUN_DEBUG=true` to see detailed connection attempt logs, which is helpful for troubleshooting connection issues.
+::
+
+## Laravel Artisan Commands
+Below is an overview of what Laravel Artisan commands do and how they can be configured.
+
+### php artisan storage:link
+Creates a symbolic link from `public/storage` to `storage/app/public`.
+
+:u-button{to="https://laravel.com/docs/12.x/filesystem#the-public-disk" target="_blank" label="Read more about storage links" aria-label="Read more about storage links" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### php artisan migrate
+Before running migrations, we ensure the database is online and ready to accept connections. By default, we will wait 30 seconds before timing out.
+
+#### Migration Modes
+You can control how migrations run using `AUTORUN_LARAVEL_MIGRATION_MODE`:
+
+| Mode | Description |
+|------|-------------|
+| `default` | Runs `php artisan migrate` - standard forward migrations |
+| `fresh` | Runs `php artisan migrate:fresh` - drops all tables and re-runs migrations |
+| `refresh` | Runs `php artisan migrate:refresh` - rolls back and re-runs migrations |
+
+::caution
+Using `fresh` or `refresh` modes will **drop all tables** in your database. Only use these in development or testing environments.
+::
+
+#### Force Flag
+By default, migrations run with the `--force` flag to bypass production warnings. You can disable this by setting `AUTORUN_LARAVEL_MIGRATION_FORCE` to `false`.
+
+#### Seeding
+You can automatically seed your database after migrations by setting `AUTORUN_LARAVEL_MIGRATION_SEED` to `true`. This adds the `--seed` flag to your migration command.
+
+#### Specific Database Migrations
+If you need to specify the exact database connection to use for migrations, you can set `AUTORUN_LARAVEL_MIGRATION_DATABASE` to the name of the database connection you want to use.
+
+| Use case | Description | Value |
+|----------|-------|-------------|
+| Single database | Run migrations on the `mysql` database connection. | `AUTORUN_LARAVEL_MIGRATION_DATABASE=mysql` |
+| Multiple databases | In the rare case you need to use multiple databases, you can provide a comma-delimited list of connection names (e.g., "mysql,pgsql"). | `AUTORUN_LARAVEL_MIGRATION_DATABASE=mysql,pgsql` |
+
+#### Isolated Migrations
+You can enable the [`--isolated`](https://laravel.com/docs/12.x/migrations#running-migrations) flag by setting `AUTORUN_LARAVEL_MIGRATION_ISOLATION` to `true`, which will ensure no other containers are running a migration.
+
+**Special Notes for Isolated Migrations:**
+- Requires Laravel v9.38.0+
+- Only works with `default` migration mode (not compatible with `fresh` or `refresh`)
+- Your application must be using the memcached, redis, dynamodb, database, file, or array cache driver as your application's default cache driver. In addition, all servers must be communicating with the same central cache server.
+
+:u-button{to="https://laravel.com/docs/12.x/migrations#running-migrations" target="_blank" label="Read more about migrations" aria-label="Read more about migrations" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### php artisan optimize
+Laravel comes with an artisan command called `optimize`, which will optimize the application by caching the configuration, routes, views, and events all in one command.
+
+You can disable any cache features by setting the corresponding environment variable to `false` (for example, `AUTORUN_LARAVEL_CONFIG_CACHE` would disable configuration caching).
+
+If your application is running Laravel v11.38.0 or higher, we will utilize the `optimize --except` parameter to exclude any cache features you have disabled. Otherwise, we will run the individual optimizations separately.
+
+It's possible to disable the `optimize` command by setting `AUTORUN_LARAVEL_OPTIMIZE` to `false`, but the major advantage of using the `optimize` command is other dependencies may hook into this action and run other commands.
+
+:u-button{to="https://laravel.com/docs/12.x/deployment#optimization" target="_blank" label="Read more about optimizing Laravel" aria-label="Read more about optimizing Laravel" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### php artisan config:cache
+This command caches all configuration files into a single file, which can then be quickly loaded by Laravel. Once the configuration is cache, the `.env` file will no longer be loaded.
+
+:u-button{to="https://laravel.com/docs/12.x/configuration#configuration-caching" target="_blank" label="Read more about configuration caching" aria-label="Read more about configuration caching" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### php artisan route:cache
+This command caches the routes, dramatically decrease the time it takes to register all of your application's routes. After running this command, your cached routes file will be loaded on every request.
+
+:u-button{to="https://laravel.com/docs/12.x/routing#route-caching" target="_blank" label="Read more about route caching" aria-label="Read more about route caching" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### php artisan view:cache
+This command caches all of the views in your application, which can greatly decrease the time it takes to render your views.
+
+:u-button{to="https://laravel.com/docs/12.x/views#optimizing-views" target="_blank" label="Read more about view caching" aria-label="Read more about view caching" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### php artisan event:cache
+This command creates a manifest of all your application's events and listeners, which can greatly speed up the process of registering them with Laravel.
+
+:u-button{to="https://laravel.com/docs/12.x/events#event-discovery-in-production" target="_blank" label="Read more about event caching" aria-label="Read more about event caching" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Debugging the AUTORUN script
+It's very important to understand the nature of how containerized environments work when debugging the AUTORUN script. In some cases, some users may become frustrated when they push an update but their changes are never deployed.
+
+In most cases, this is due to a bug in their application code that causes a migration or some other process to fail.
+
+::note
+If a failure occurs in the Laravel Automations script, it will exit with a non-zero exit code -- preventing the container from starting.
+::
+
+If you are experiencing issues, you can enable the `AUTORUN_DEBUG` environment variable to get more detailed output of what could be going wrong.
+
+If you need even more information, you can set `LOG_OUTPUT_LEVEL` to `debug` to get **A TON** of output of what's exactly happening.
+
+### Preventing issues with the AUTORUN script
+- Ensure you are running the latest version of `serversideup/php`
+- Ensure you have dependencies installed (ie. `composer install`) before calling this script
+- Use automated testing to catch issues before deploying
\ No newline at end of file
diff --git a/docs/content/docs/3.framework-guides/1.laravel/2.task-scheduler.md b/docs/content/docs/3.framework-guides/1.laravel/2.task-scheduler.md
new file mode 100644
index 000000000..fbf75f4ff
--- /dev/null
+++ b/docs/content/docs/3.framework-guides/1.laravel/2.task-scheduler.md
@@ -0,0 +1,126 @@
+---
+head.title: 'Laravel Task Scheduler with Docker - Docker PHP - Server Side Up'
+description: 'Learn how to configure a Laravel Task Scheduler with Docker.'
+layout: docs
+title: Task Scheduler
+---
+
+## Laravel Task Scheduler with Docker
+Run Laravel's task scheduler by using the `schedule:work` command. This runs the scheduler in the foreground and checks for scheduled tasks every minuteâperfect for containers.
+
+::tip{to="https://getspin.pro/docs/services/laravel-scheduler" target="_blank"}
+Want to skip the setup? [Spin Pro](https://getspin.pro/docs/services/laravel-scheduler){target="_blank"} handles Laravel schedulers on your VPS with Docker and zero-downtime deploymentsâall configured for you.
+::
+
+## Why not use cron?
+
+::note
+Unlike traditional server setups, we don't use `cron` in containers. Instead, Laravel's [schedule:work](https://laravel.com/docs/12.x/scheduling#running-the-scheduler-locally){target="_blank"} command keeps the process running in the foreground and checks for tasks every minute. You define the actual schedule (daily, hourly, etc.) in your Laravel application using [scheduled tasks](https://laravel.com/docs/12.x/scheduling#scheduling-artisan-commands){target="_blank"}.
+::
+
+
+## Docker Compose example
+
+This example runs a dedicated scheduler container using the same image as your web service. Use the full path to Artisan (`/var/www/html/artisan`) when defining the container command.
+
+**Key points:**
+- Use the same image for both your web and scheduler services
+- Set `SIGTERM` as the stop signal for graceful shutdown (especially for `fpm-apache` and `fpm-nginx`)
+- Include a health check to monitor scheduler status
+- Define your actual schedule times in Laravel, not in Docker
+
+```yml [compose.yml]
+services:
+ php:
+ image: my/laravel-app
+
+ task:
+ image: my/laravel-app
+ command: ["php", "/var/www/html/artisan", "schedule:work"]
+ stop_signal: SIGTERM
+ healthcheck:
+ test: ["CMD", "healthcheck-schedule"]
+ start_period: 10s
+```
+
+## Defining your schedule in Laravel
+
+Configure your scheduled tasks in Laravel. The file location depends on your Laravel version:
+
+::tabs
+
+:::tabs-item{label="Laravel 11+"}
+
+
+```php [routes/console.php]
+daily() // Run this task once per day
+ ->at('02:00') // At 2:00 AM
+ ->timezone('America/Chicago'); // In the Chicago timezone
+
+Schedule::command('app:process-latefees')
+ ->daily() // Run this task once per day
+ ->at('04:00') // At 4:00 AM
+ ->timezone('America/Chicago'); // In the Chicago timezone
+```
+
+:::
+
+:::tabs-item{label="Laravel 10 and below" }
+
+```php [app/Console/Kernel.php]
+command('process:invoices')->daily()->at('02:00')->timezone('America/Chicago');
+ $schedule->command('process:latefees')->daily()->at('04:00')->timezone('America/Chicago');
+ }
+
+ /**
+ * Register the commands for the application.
+ *
+ * @return void
+ */
+ protected function commands()
+ {
+ $this->load(__DIR__.'/Commands');
+
+ require base_path('routes/console.php');
+ }
+}
+```
+
+:::
+
+::
+
+::tip
+**Multiple processes in one container:** If you're running `fpm-nginx` or `fpm-apache` and you'd like to have everything in a single container, you can [write your own S6 Overlay service script](https://github.com/just-containers/s6-overlay/tree/master#writing-a-service-script){target="_blank"} to properly manage multiple processes in a single container. Learn more about about this in our [Using S6 Overlay guide](/docs/guide/using-s6-overlay).
+::
\ No newline at end of file
diff --git a/docs/content/docs/3.framework-guides/1.laravel/3.queue.md b/docs/content/docs/3.framework-guides/1.laravel/3.queue.md
new file mode 100644
index 000000000..7671a63dd
--- /dev/null
+++ b/docs/content/docs/3.framework-guides/1.laravel/3.queue.md
@@ -0,0 +1,45 @@
+---
+head.title: 'Laravel Queue with Docker - Docker PHP - Server Side Up'
+description: 'Learn how to configure a Laravel Queue with Docker.'
+layout: docs
+title: Queue
+---
+
+## Laravel Queue with Docker
+Run Laravel queue workers by passing the Artisan queue command as the container's command. This allows you to scale queue workers independently from your web server.
+
+## Docker Compose example
+
+::tip{to="https://getspin.pro/docs/services/laravel-scheduler" target="_blank"}
+Want to skip the setup? [Spin Pro](https://getspin.pro/docs/services/laravel-scheduler){target="_blank"} handles Laravel queue workers on your VPS with Docker and zero-downtime deploymentsâall configured for you.
+::
+
+This example runs a dedicated queue container using the same image as your web service. Use the full path to Artisan (`/var/www/html/artisan`) when defining the container command.
+
+**Key points:**
+- Use the same image for both your web and queue services
+- Set `SIGTERM` as the stop signal for graceful shutdown (especially for `fpm-apache` and `fpm-nginx`)
+- Include a health check to monitor queue worker status
+
+```yml [compose.yml]
+services:
+ php:
+ image: my/laravel-app
+
+ queue:
+ image: my/laravel-app
+ command: ["php", "/var/www/html/artisan", "queue:work", "--tries=3"]
+ stop_signal: SIGTERM
+ healthcheck:
+ # This is our native healthcheck script for the queue
+ test: ["CMD", "healthcheck-queue"]
+ start_period: 10s
+```
+
+## Advanced configuration
+
+**Graceful shutdown:** The `SIGTERM` signal ensures queue workers finish processing current jobs before stopping. This is especially important for `fpm-apache` and `fpm-nginx` images.
+
+::tip
+**Multiple processes in one container:** If you're running `fpm-nginx` or `fpm-apache` and you'd like to have everything in a single container, you can [write your own S6 Overlay service script](https://github.com/just-containers/s6-overlay/tree/master#writing-a-service-script){target="_blank"} to properly manage multiple processes in a single container. Learn more about about this in our [Using S6 Overlay guide](/docs/guide/using-s6-overlay).
+::
diff --git a/docs/content/docs/3.framework-guides/1.laravel/4.horizon.md b/docs/content/docs/3.framework-guides/1.laravel/4.horizon.md
new file mode 100644
index 000000000..79da35826
--- /dev/null
+++ b/docs/content/docs/3.framework-guides/1.laravel/4.horizon.md
@@ -0,0 +1,50 @@
+---
+head.title: 'Laravel Horizon with Docker - Docker PHP - Server Side Up'
+description: 'Learn how to configure Laravel Horizon with Docker.'
+layout: docs
+title: Horizon
+---
+
+## Laravel Horizon with Docker
+Run Laravel Horizon by passing the Artisan command as the container's command. Horizon provides a dashboard and monitoring for your Redis queues.
+
+## Docker Compose example
+
+::tip{to="https://getspin.pro/docs/services/laravel-scheduler" target="_blank"}
+Want to skip the setup? [Spin Pro](https://getspin.pro/docs/services/laravel-scheduler){target="_blank"} handles Laravel Horizon on your VPS with Docker and zero-downtime deploymentsâall configured for you.
+::
+
+This example runs a dedicated Horizon container using the same image as your web service. Horizon requires Redis to be running and properly configured in your `.env` file.
+
+**Key points:**
+- Use the same image for both your web and Horizon services
+- Ensure Redis is running before starting Horizon
+- Configure Redis connection details in your `.env` file
+- Set `SIGTERM` as the stop signal for graceful shutdown (especially for `fpm-apache` and `fpm-nginx`)
+- Include a health check to monitor Horizon status
+
+```yml [compose.yml]
+services:
+ php:
+ image: my/laravel-app
+
+ redis:
+ image: redis:6
+ command: "redis-server --appendonly yes --requirepass redispassword"
+
+ horizon:
+ image: my/laravel-app
+ command: ["php", "/var/www/html/artisan", "horizon"]
+ stop_signal: SIGTERM
+ healthcheck:
+ test: ["CMD", "healthcheck-horizon"]
+ start_period: 10s
+```
+
+## Advanced configuration
+
+**Graceful shutdown:** The `SIGTERM` signal ensures Horizon finishes processing current jobs before stopping. This is especially important for `fpm-apache` and `fpm-nginx` images.
+
+::tip
+**Multiple processes in one container:** If you're running `fpm-nginx` or `fpm-apache` and you'd like to have everything in a single container, you can [write your own S6 Overlay service script](https://github.com/just-containers/s6-overlay/tree/master#writing-a-service-script){target="_blank"} to properly manage multiple processes in a single container. Learn more about about this in our [Using S6 Overlay guide](/docs/guide/using-s6-overlay).
+::
\ No newline at end of file
diff --git a/docs/content/docs/3.framework-guides/1.laravel/4.reverb.md b/docs/content/docs/3.framework-guides/1.laravel/4.reverb.md
new file mode 100644
index 000000000..3e5ef32fd
--- /dev/null
+++ b/docs/content/docs/3.framework-guides/1.laravel/4.reverb.md
@@ -0,0 +1,75 @@
+---
+head.title: 'Laravel Reverb with Docker - Docker PHP - Server Side Up'
+description: 'Learn how to configure Laravel Reverb with Docker.'
+layout: docs
+title: Reverb
+---
+
+## Laravel Reverb with Docker
+Run Laravel Reverb by passing the Artisan command as the container's command. Reverb is Laravel's WebSocket server for real-time communication.
+
+::tip{to="https://getspin.pro/docs/services/laravel-scheduler" target="_blank"}
+Want to skip the setup? [Spin Pro](https://getspin.pro/docs/services/laravel-scheduler){target="_blank"} handles Laravel Reverb on your VPS with Docker and zero-downtime deploymentsâall configured for you.
+::
+
+::note
+Before using Reverb with Docker, follow the [Laravel Reverb setup instructions](https://laravel.com/docs/12.x/reverb) to install and configure the Reverb package in your Laravel application.
+::
+
+## Docker Compose example
+
+This example runs Reverb as a separate container using the same image as your web service. Reverb requires a reverse proxy (like Traefik) to route WebSocket traffic correctly.
+
+**Key points:**
+- Use the same image for both your web and Reverb services
+- Reverb runs on a different port than your web server (8000 vs 8080)
+- Set `SIGTERM` as the stop signal for graceful shutdown (especially for `fpm-apache` and `fpm-nginx`)
+- Include a health check to monitor Reverb status
+- Configure a reverse proxy to route traffic to the correct container
+```yml [compose.yml]
+services:
+ php:
+ image: my/laravel-app
+ labels:
+ - "traefik.enable=true"
+ - "traefik.http.routers.laravel.tls=true"
+ - "traefik.http.routers.laravel.entrypoints=websecure"
+ - "traefik.http.routers.laravel.rule=Host(`https://app.example.com`)"
+ - "traefik.http.services.laravel.loadbalancer.server.port=8080"
+ - "traefik.http.services.laravel.loadbalancer.server.scheme=http"
+
+ reverb:
+ image: my/laravel-app
+ command: ["php", "/var/www/html/artisan", "reverb:start", "--port=8000"]
+ stop_signal: SIGTERM
+ healthcheck:
+ test: ["CMD", "healthcheck-reverb"]
+ start_period: 10s
+ labels:
+ - "traefik.enable=true"
+ - "traefik.http.routers.reverb.tls=true"
+ - "traefik.http.routers.reverb.entrypoints=websecure"
+ - "traefik.http.routers.reverb.rule=Host(`https://reverb.example.com`)"
+ - "traefik.http.services.reverb.loadbalancer.server.port=8000"
+ - "traefik.http.services.reverb.loadbalancer.server.scheme=http"
+```
+
+## Environment variable configuration
+
+::warning
+Don't confuse **CLIENT** variables with **SERVER** variables. The `REVERB_SERVER_*` variables configure the Reverb daemon itself, while `REVERB_*` variables tell your frontend clients how to connect.
+::
+
+Configure these environment variables in your Laravel application:
+
+| **Laravel ENV Variable** | **Description** | **Value (matching example above)** |
+| ------------------------- | --------------- | ---------------------------------- |
+| `REVERB_HOST` | The hostname the **CLIENT** will connect to | `reverb.example.com` |
+| `REVERB_PORT` | The port the **CLIENT** will connect to | `443` |
+| `REVERB_SCHEME` | The scheme the **CLIENT** will connect to | `https` |
+
+## Advanced configuration
+
+::tip
+**Multiple processes in one container:** If you're running `fpm-nginx` or `fpm-apache` and you'd like to have everything in a single container, you can [write your own S6 Overlay service script](https://github.com/just-containers/s6-overlay/tree/master#writing-a-service-script){target="_blank"} to properly manage multiple processes in a single container. Learn more about about this in our [Using S6 Overlay guide](/docs/guide/using-s6-overlay).
+::
\ No newline at end of file
diff --git a/docs/content/docs/3.framework-guides/1.laravel/octane.md b/docs/content/docs/3.framework-guides/1.laravel/octane.md
new file mode 100644
index 000000000..e5bb948e6
--- /dev/null
+++ b/docs/content/docs/3.framework-guides/1.laravel/octane.md
@@ -0,0 +1,119 @@
+---
+head.title: 'Laravel Octane with Docker - Docker PHP - Server Side Up'
+description: 'Learn how to configure Laravel Octane with Docker.'
+layout: docs
+title: Octane
+---
+
+::lead-p
+Laravel Octane supercharges your application's performance by keeping it loaded in memory and serving requests at incredible speeds. The FrankenPHP variation of our images provides native Octane support with worker mode built-in.
+::
+
+## What is Laravel Octane?
+
+Laravel Octane boots your Laravel application once and keeps it in memory, then processes thousands of requests without reloading. This dramatically improves performance compared to traditional PHP execution.
+
+**Traditional PHP:**
+Bootstrap â Handle Request â Teardown â Repeat for every request
+
+**With Octane:**
+Bootstrap once â Handle unlimited requests
+
+::tip
+FrankenPHP is Laravel's recommended application server for Octane and is included natively in our images. No additional installation required.
+::
+
+## Quick Start
+Let's use this example project to get started.
+
+::warning{to="https://serversideup.net/open-source/spin/docs" target="_blank"}
+This example assumes you already have a Laravel application installed. If you need help installing a new Laravel project with Docker, check out [Spin](https://serversideup.net/open-source/spin/docs){target="_blank"} for a simple way to get started.
+::
+
+### Classic Mode
+By default, FrankenPHP runs in classic mode. Your compose file might look something like this:
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-frankenphp
+ ports:
+ - "80:8080"
+ volumes:
+ - .:/var/www/html/
+```
+
+We'll expand upon this classic mode file and modify it to run Laravel Octane (which uses FrankenPHP's worker mode).
+
+### Install Laravel Octane
+
+First, install Octane in your Laravel application:
+
+```bash [Terminal]
+docker compose run php composer require laravel/octane
+```
+
+When that command runs, you should see a PHP file that Laravel creates in your `/public` directory. This is required for Laravel Octane to work.
+
+```php [public/frankenphp-worker.php]
+(requires a reverse proxy in front of the container) |
+| `fpm-apache` | â
Yes | â No (requires a reverse proxy in front of the container) |
+| `frankenphp` | â
Yes | â
Yes |
+
+## SSL Modes
+You can control SSL behavior with the `SSL_MODE` environment variable:
+
+| SSL Mode | Description |
+|----------|-------------|
+| `off` (default) | HTTP only. |
+| `mixed` | HTTP and HTTPS. |
+| `full` | HTTPS only. HTTP requests will be redirected to HTTPS. |
+
+## Choose How to Run SSL in Production
+
+You have a few options for running SSL in production:
+
+| Approach | Certificate Type | Management Type | Zero-Downtime Deployments | Minimal Number of Containers |
+|----------|----------------|-----------------|-----------------|--------------------------------|
+| Reverse Proxy (like Traefik or Caddy) | â
Trusted Certificate (via Let's Encrypt) | â
Automatic | â
Yes | â ī¸ 2 |
+| FrankenPHP's built-in automatic HTTPS | â
Trusted Certificate (via Let's Encrypt) | â
Automatic | â No | â
1 |
+| Bring Your Own Certificate | â
Trusted Certificate (through any vendor) | â Manual | â No | â
1 |
+| Self-signed | â Self-signed Certificate | â
Automatic | â No | â
1 |
+
+### Reverse Proxy (recommended)
+::tip
+Reverse proxies don't just terminate SSLâthey also give you zero-downtime with rolling updates.
+::
+{:zoom=false}
+Our recommended approach is to use a reverse proxy like [Traefik](https://traefik.io/traefik/){target="_blank"} or [Caddy](https://caddyserver.com/){target="_blank"} that listens on ports 80 (HTTP) and 443 (HTTPS). The reverse proxy will forward traffic to your container on the non-privileged ports of 8080 (HTTP) or 8443 (HTTPS).
+
+Using a reverse proxy unlocks two major benefits:
+1. Automatic SSL certificate management (via Let's Encrypt)
+2. Zero-downtime deployments
+
+When you're running updates on containers, the reverse proxy stays online while updates are deployed to your containers in the background. Configuring a reverse proxy is outside the scope of this documentation, but you can reference the links below to learn more:
+
+- [Traefik](https://traefik.io/traefik/){target="_blank"}
+- [Caddy](https://caddyserver.com/){target="_blank"}
+
+#### Use a Reverse Proxy When You Want...
+- Zero-downtime deployments
+- Automatic SSL certificate management (via Let's Encrypt)
+- Load balancing
+
+If you want a simple way to run your own reverse proxy with zero-downtime deployments, consider using [Spin](https://serversideup.net/open-source/spin/){target="_blank"}.
+
+:u-button{to="https://serversideup.net/open-source/spin/" label="Learn more about Spin" aria-label="Learn more about Spin" target="_blank" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### FrankenPHP's Built-in Automatic HTTPS
+::warning
+Zero-downtime deployments are not possible with FrankenPHP's built-in automatic HTTPS.
+::
+
+FrankenPHP provides automated HTTPS through Caddy. To directly expose FrankenPHP to the internet, you'll need to configure the following:
+1. Environment variables (for Caddy configuration)
+2. Ports (for direct exposure of ports 80 and 443)
+3. Volumes (for certificate files)
+
+#### Environment Variables
+Configure the following environment variables:
+
+| Variable | Expected Value | Description |
+|----------|----------------|----------------|
+| `CADDY_AUTO_HTTPS` *Default: "off"* | `on` | Turn on Caddy's [`auto_https`](https://caddyserver.com/docs/caddyfile/options#auto-https){target="_blank"} global directive.|
+| `CADDY_HTTPS_SERVER_ADDRESS` *Default: "https://"* | `example.com` or `https://example.com` | Set the [server address](https://caddyserver.com/docs/caddyfile/concepts#addresses){target="_blank"} for HTTPS. Pro tip: You can use `$APP_URL` from your `.env` file to set this value. |
+| `SSL_MODE` *Default: "off"* | `full` or `mixed` | Configure how Caddy handles HTTP and HTTPS requests.|
+
+#### Ports
+Configure the following ports:
+
+| Ports to Publish | Description |
+|----------------|----------------|
+| `80` â `8080` | HTTP traffic will be proxied to the container on port 8080. |
+| `443` â `8443` | HTTPS traffic will be proxied to the container on port 8443. |
+
+::note
+Our port mapping remains `80:8080` and `443:8443` because our containers are **unprivileged** by default, meaning we cannot bind to ports less than 1024 (without additional modification).
+::
+
+#### Volumes
+Configure the following volumes:
+
+| Container Directory to Mount | Description |
+|--------------------------------|-------------|
+| `/config` | Directory for Caddy's configuration files (such as Caddyfile or JSON) that must persist for settings to be retained. |
+| `/data` | Directory where Caddy stores SSL/TLS certificates and CA information, required for automatic HTTPS to consistently function. |
+
+::note
+The `config` and `data` volumes must have read/write permissions for the `www-data` user. Caddy will store its configuration and certificates in these volumes (and you want those to persist).
+::
+
+#### Example
+Here's an example of directly exposing FrankenPHP to the internet with automatic HTTPS via Let's Encrypt:
+::code-tree{defaultValue="compose.yml"}
+
+```yml [compose.yml]
+services:
+ php:
+ image: serversideup/php:8.4-frankenphp
+ ports:
+ - 80:8080
+ - 443:8443
+ environment:
+ CADDY_AUTO_HTTPS: "on"
+ CADDY_HTTPS_SERVER_ADDRESS: "https://example.com"
+ SSL_MODE: "full"
+ # Mount the current directory to /var/www/html
+ volumes:
+ - .:/var/www/html
+ - config:/config
+ - data:/data
+
+ volumes:
+ config:
+ data:
+```
+
+```php [public/index.php]
+
+```
+::
+
+#### Use FrankenPHP's Built-in Automatic HTTPS When You Want...
+- To run your application and handle SSL termination all in one container
+- A simple setup without needing zero-downtime deployments
+
+::note
+You can achieve zero-downtime deployments with FrankenPHP by placing a reverse proxy in front of the container.
+::
+
+### Bringing Your Own Certificate
+If automatic HTTPS isn't an option, you can provide your own certificate from a vendor like [ssls.com](https://www.ssls.com/){target="_blank"}. Ensure your certificate issuer provides certificates compatible with your web server in [PEM format](https://en.wikipedia.org/wiki/Privacy-Enhanced_Mail){target="_blank"}.
+
+To add your own certificate, mount the certificate files to the container:
+
+::tip
+Set your private key file permissions to `600` (read/write for owner only). Incorrect permissions will cause errors when loading the private key.
+::
+
+::code-tree{defaultValue="compose.yml"}
+
+```yml [compose.yml]{8-10,13}
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+ ports:
+ - 80:8080
+ - 443:8443
+ environment:
+ SSL_MODE: "mixed"
+ SSL_PRIVATE_KEY_FILE: "/etc/ssl/custom/test-key.pem"
+ SSL_CERTIFICATE_FILE: "/etc/ssl/custom/test.pem"
+ volumes:
+ - .:/var/www/html/
+ - ./certs/:/etc/ssl/custom/
+```
+
+```php [public/index.php]
+
+```
+
+```pem [certs/test-key.pem]
+-----BEGIN PRIVATE KEY-----
+EXAMPLE_PRIVATE_KEY_DO_NOT_USE
+MIIEvQIBADANBgkqhkiG9w0BAQEFASCBKwggSjAgEAAoIBAQDExampleKeyData
+ThisIsNotARealPrivateKeyAndShouldNotBeUsedInProduction123456789
+ReplaceThisWithYourActualPrivateKeyFile
+-----END PRIVATE KEY-----
+```
+
+```pem [certs/test.pem]
+-----BEGIN CERTIFICATE-----
+EXAMPLE_CERTIFICATE_DO_NOT_USE
+MIIEIDCCAwigAwIBAgIQCqH+3yBp80lQ9OVmbNmbRzANBgkqhkiG9w0BAQsFADBh
+MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
+d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD
+QTAeFw0yMTA0MjkwMDAwMDBaFw0zMjA0MjgyMzU5NTlaMFsxCzAJBgNVBAYTAlVT
+MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j
+b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG
+9w0BAQEFAAOCAQ8AMIIBCgKCAQEAumQB+ILtbVLaKTeQeGviJLbfBxMIRZACMpbs
+QFmylhSTSSpLc1bNPrRVWWVmv+Lt8i3HuLjPQF+3M2NzBWVYB7Gixgd13KZBquor
+2W4Sj5SfR2onVzULfBy6SrwxfSTnnykA1NAzGLbGSukNkY4fO7N4V3C1mLGvL8H
+-----END CERTIFICATE-----
+```
+::
+
+#### Use Your Own Certificates When You...
+- Cannot use Let's Encrypt (corporate policy, network restrictions, etc.)
+- Have a specific certificate vendor requirement
+- Don't need zero-downtime deployments
+
+::note
+You can also bring your own certificate and configure it with a reverse proxy to get zero-downtime deployments.
+::
+
+### Self-Signed Certificate
+::warning
+Self-signed certificates will display warnings in the browser.
+::
+
+While browsers will show warnings, self-signed certificates are useful for specific use cases, such as encrypting traffic between containers in a cluster. If you set `SSL_MODE` to `mixed` or `full` without providing a certificate at `$SSL_CERTIFICATE_FILE` and `$SSL_PRIVATE_KEY_FILE`, a self-signed certificate will be automatically generated.
+
+```yml [compose.yml]{7-9}
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+ ports:
+ - 80:8080
+ - 443:8443
+ environment:
+ # Set SSL mode to "mixed" (HTTP + HTTPS)
+ SSL_MODE: "mixed"
+ volumes:
+ - .:/var/www/html
+```
+
+The above will generate a self-signed certificate and configure the server to listen on both HTTP (port 80) and HTTPS (port 443).
+
+#### Use a Self-Signed Certificate When You...
+- Have a reverse proxy in front of the container handling SSL termination
+- Need all traffic to be encrypted (even on the internal network between containers)
+
+::note
+If you have a reverse proxy in front of the container handling SSL termination, you don't need to use `SSL_MODE` at all. You can configure your reverse proxy to communicate with your PHP container via HTTP (port 8080), eliminating the need to configure SSL within the container.
+::
\ No newline at end of file
diff --git a/docs/content/docs/4.deployment-and-production/5.choosing-a-host.md b/docs/content/docs/4.deployment-and-production/5.choosing-a-host.md
new file mode 100644
index 000000000..b0ac136d2
--- /dev/null
+++ b/docs/content/docs/4.deployment-and-production/5.choosing-a-host.md
@@ -0,0 +1,158 @@
+---
+title: Choosing a Host
+description: 'Learn how to choose the right hosting provider for your containerized PHP application.'
+layout: docs
+---
+
+::lead-p
+One of the biggest advantages of containerizing your application is the ability to run your application anywhere. This gives you the freedom to choose the best host for your needs. Here's a guide to help you choose the right host for your needs.
+::
+
+## The beauty of portability
+Because your application runs in a container, you're no longer tied to a specific hosting provider. The same container that runs on your laptop will run on:
+
+- Any VPS provider (DigitalOcean, Hetzner, Vultr, Linode, etc.)
+- Cloud platforms (AWS, Google Cloud, Azure)
+- Managed Kubernetes services
+- Your own hardware in a data center
+- Even a Raspberry Pi in your closet
+
+This portability means:
+- **No vendor lock-in** - Switch hosts without rebuilding your application
+- **Price shopping** - Move to cheaper providers if prices increase
+- **Multi-cloud strategies** - Run on multiple providers for redundancy
+- **Freedom to experiment** - Try different hosts without risk
+
+## Hosting options
+
+Choose your hosting based on your team's experience, budget, and application scale. Here's a quick comparison:
+
+| Hosting Type | Best For | Monthly Cost | Management Level | When to Choose |
+|-------------|----------|--------------|------------------|----------------|
+| **VPS** | Most PHP apps | $5-20 | Self-managed | You want control and best value |
+| **Managed Kubernetes** | Enterprise/high-traffic | $70-100+ | Moderate | You need advanced orchestration |
+| **Cloud Platforms** | Variable workloads | $20-50+ | Low | You want integrated cloud services |
+| **PaaS** | Quick deployment | $25-100+ | Minimal | You want zero infrastructure hassle |
+
+::tip
+**Our recommendation:** Start with a VPS unless you have specific needs. A $10/month VPS can handle what costs $50-100/month on PaaS, and you'll have full control over your infrastructure.
+::
+
+## Recommended Hosts
+Below are our recommended hosts from our experience. Some links may contain referral codes, but these codes give you free credits to help you get started. These referral programs do not influence our recommendations.
+
+### VPS Hosts
+::card-group
+
+::card
+---
+title: Hetzner
+icon: i-hosts-hetzner-square
+to: https://hetzner.cloud/?ref=lhLUIrkdUPhl
+target: _blank
+---
+Hetzner is infamously known for its low prices and high performance. They are a great choice for small to medium-sized applications.
+::
+
+::card
+---
+title: Vultr
+icon: i-hosts-vultr-square
+to: https://www.vultr.com/?ref=7093917
+target: _blank
+---
+Vultr has great performance and and over 32 global data centers.
+::
+
+::card
+---
+title: DigitalOcean
+icon: i-hosts-digitalocean-square
+to: https://m.do.co/c/f3bad4b927ca
+target: _blank
+---
+DigitalOcean is most known for it's simple user experience and vast support of many developer tools.
+::
+
+::
+
+### PaaS Hosts
+::card-group
+
+::card
+---
+title: Sevalla
+icon: i-hosts-sevalla-square
+to: https://sevalla.com/
+target: _blank
+---
+Sevalla is a modern PaaS with transparent usage-based pricing and no artificial limits. **Full disclosure:** Sevalla sponsors this project, but we genuinely recommend them for their refreshingly honest approach to PaaS pricing.
+::
+
+::
+
+## Simplifying VPS setup with Spin
+::tip{to="https://serversideup.net/open-source/spin/" target="_blank"}
+[Spin](https://serversideup.net/open-source/spin/) is a free and open source tool that simplifies Docker workflows from development to production.
+::
+
+
+Spin can automatically provision and configure servers on Hetzner, DigitalOcean, and Vultr, setting up Docker Swarm for zero-downtime deployments. It handles the infrastructure complexity while you maintain full control of your server. Here's a quick example with Laravel:
+
+:iframe{src="https://www.youtube-nocookie.com/embed/5z2JoEt5XIk?si=u5v-bDN-cMv0OE-C" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen style="aspect-ratio: 16/9; width: 100%;"}
+
+Spin is *not required* to run these Docker images, but it can help simplify the setup process. Spin was designed to have native integration with these images, but it can be used with any Docker setup.
+
+:u-button{to="https://serversideup.net/open-source/spin/" label="Learn more about Spin" aria-label="Learn more about Spin" target="_blank" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## What to consider when choosing a host
+
+- **Budget** - VPS offers best value ($10-20/mo), PaaS most expensive ($25-100+/mo)
+- **Technical expertise** - VPS requires Linux knowledge, PaaS abstracts complexity
+- **Scale** - Small/medium apps thrive on VPS, very large apps benefit from Kubernetes
+- **Time investment** - PaaS saves time but costs more, VPS costs less but needs more hands-on
+- **Data sovereignty** - Choose providers with data centers in your required regions
+- **Growth trajectory** - VPS and Kubernetes scale cost-effectively, PaaS gets expensive
+
+#### Specifically for PaaS providers
+- **Pricing** - Is the pricing transparent and upfront? Are there alerts if you're approaching your limits?
+- **Debugging** - Are you able to access logs easily and debug issues?
+- **Vendor lock-in** - Are you building around a proprietary platform, or can you easily migrate to another provider if needed?
+
+## Our recommendation for most projects
+
+If you're running a typical PHP application (Laravel, WordPress, custom app), here's our suggested progression:
+
+::steps{level="4"}
+
+#### Starting out: VPS provider like Hetzner or DigitalOcean ($5-10/month)
+- Use Docker Swarm for single-server deployment
+- Simple, affordable, and plenty of room to grow
+
+#### Growing: Performance tuning and hardware upgrades ($20-40/month)
+- Focus on fine tuning your application for performance
+- Upgrade your server hardware if needed (simple as a few clicks)
+
+#### At scale: Managed Kubernetes or multiple VPS servers (>$100/month)
+- Move to Kubernetes when you need sophisticated orchestration
+- Only consider if you *must* exceed [99.999% of uptime](https://uptime.is/99.999){target="_blank"}
+
+::
+
+Most PHP applications never need to move beyond a well-configured VPS. A $20/month server can serve thousands of requests per second when properly optimized.
+
+::note
+Don't let fancy infrastructure distract you from building your application. Pick what works for you. Start simple, prove your concept, then scale up as needed.
+::
+
+## Key requirements for any host
+Regardless of which provider you choose, ensure they support:
+
+- **Docker installation** - Ability to install and run Docker (most Linux VPS hosts support this)
+- **Adequate resources** - At minimum 1GB RAM, 1 CPU core (2GB+ recommended for most applications)
+- **Security** - Strong security policies and practices to protect your application and data
+- **Performance** - Good performance and quality hardware to handle your application's traffic
+- **Network reliability** - Good uptime SLA and network performance
+- **Responsive support team** - Quality and responsive support team to help you out when you need it
+- **Data center location** - Close to your users for better performance
+- **Backup options** - Either provided by host or easily implemented yourself (and we strongly recommend the [3-2-1 backup rule](https://en.wikipedia.org/wiki/Backup){target="_blank"})
diff --git a/docs/content/docs/4.deployment-and-production/98.orchestrators/.navigation.yml b/docs/content/docs/4.deployment-and-production/98.orchestrators/.navigation.yml
new file mode 100644
index 000000000..13126c183
--- /dev/null
+++ b/docs/content/docs/4.deployment-and-production/98.orchestrators/.navigation.yml
@@ -0,0 +1,3 @@
+title: Orchestrators
+icon: false
+defaultOpen: false
\ No newline at end of file
diff --git a/docs/content/docs/4.deployment-and-production/99.platforms/.navigation.yml b/docs/content/docs/4.deployment-and-production/99.platforms/.navigation.yml
new file mode 100644
index 000000000..85283371c
--- /dev/null
+++ b/docs/content/docs/4.deployment-and-production/99.platforms/.navigation.yml
@@ -0,0 +1,3 @@
+title: Platforms
+icon: false
+defaultOpen: false
\ No newline at end of file
diff --git a/docs/content/docs/4.laravel/1.laravel-automations.md b/docs/content/docs/4.laravel/1.laravel-automations.md
deleted file mode 100644
index f0431c727..000000000
--- a/docs/content/docs/4.laravel/1.laravel-automations.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-head.title: 'Laravel Automations Script - Docker PHP - Server Side Up'
-description: 'Automate your deployments and minimize your efforts with Laravel.'
-layout: docs
----
-
-# Laravel Automations
-`serversideup/php` has a "Laravel Automations" script that helps you automate certain steps during your deployments. By default, the script is **DISABLED**. We only recommend enabling this script in production environments.
-
-::note
-`AUTORUN_ENABLED` must be set to `true` to enable the script. See our [variable reference document](/docs/reference/environment-variable-specification) for more details.
-::
-
-## What the script does
-This script executes on container start up and performs the following tasks:
-
-### php artisan migrate
-Before running migrations, we ensure the database is online and ready to accept connections. By default, we will wait 30 seconds before timing out.
-
-You can enable the [`--isolated`](https://laravel.com/docs/11.x/migrations#running-migrations) flag by setting `AUTORUN_LARAVEL_MIGRATION_ISOLATION` to `true`, which will ensure no other containers are running a migration.
-
-**Special Notes for Isolated Migrations:**
-- Requires Laravel v9.38.0+
-- Your database must support database locks (meaning SQLite is not supported)
-
-### php artisan storage:link
-This command creates a symbolic link from `public/storage` to `storage/app/public`.
-
-### php artisan config:cache
-This command caches all configuration files into a single file, which can then be quickly loaded by Laravel. Once the configuration is cache, the `.env` file will no longer be loaded.
-
-[Read more about configuration caching â](https://laravel.com/docs/11.x/configuration#configuration-caching)
-
-### php artisan route:cache
-This command caches the routes, dramatically decrease the time it takes to register all of your application's routes. After running this command, your cached routes file will be loaded on every request.
-
-[Read more about route caching â](https://laravel.com/docs/11.x/routing#route-caching)
-
-### php artisan view:cache
-This command caches all of the views in your application, which can greatly decrease the time it takes to render your views.
-
-[Read more about view caching â](https://laravel.com/docs/11.x/views#optimizing-views)
-
-### php artisan event:cache
-This command creates a manifest of all your application's events and listeners, which can greatly speed up the process of registering them with Laravel.
-
-[Read more about event caching â](https://laravel.com/docs/11.x/events#event-discovery-in-production)
\ No newline at end of file
diff --git a/docs/content/docs/4.laravel/2.laravel-task-scheduler.md b/docs/content/docs/4.laravel/2.laravel-task-scheduler.md
deleted file mode 100644
index acd6693de..000000000
--- a/docs/content/docs/4.laravel/2.laravel-task-scheduler.md
+++ /dev/null
@@ -1,119 +0,0 @@
----
-head.title: 'Laravel Task Scheduler with Docker - Docker PHP - Server Side Up'
-description: 'Learn how to configure a Laravel Task Scheduler with Docker.'
-layout: docs
----
-
-# Laravel Task Scheduler with Docker
-Running a Laravel task scheduler with Docker can be a little different from the traditional methods.
-
-## Important concepts
-1. If you're using `fpm-apache` or `fpm-nginx`, might need to set the stop signal to `SIGTERM` for a graceful shutdown (see this [PR](https://github.com/serversideup/docker-php/pull/437) for more details why)
-1. Be sure to set the health check
-1. We will **not** use `cron` to run the scheduler
-1. By default `schedule:work` checks every minute, so we will use that to run the system process
-1. The actual time trigger itself is set within Laravel
-
-## More detail
-We need to run the [schedule:work](https://laravel.com/docs/11.x/scheduling#running-the-scheduler-locally) command from Laravel. Although the docs say "Running the scheduler locally", this is what we want in production. It will run the scheduler in the foreground and execute it every minute. You can configure your Laravel app for the exact time that a command should run through a [scheduled task](https://laravel.com/docs/11.x/scheduling#scheduling-artisan-commands).
-
-
-## Examples
-Here is a simplified example of how you can achieve this with Docker Compose:
-
-::note
-Notice we're calling the artisan command explicitly with the full path (`/var/www/html/artisan`). This is because we need to run the command from the context of the container.
-::
-
-::code-panel
----
-label: Example & Simplified Docker Compose File
----
-```yaml
-services:
- php:
- image: my/laravel-app
-
- task:
- image: my/laravel-app
- command: ["php", "/var/www/html/artisan", "schedule:work"]
- stop_signal: SIGTERM # Set this for graceful shutdown if you're using fpm-apache or fpm-nginx
- healthcheck:
- # This is our native healthcheck script for the scheduler
- test: ["CMD", "healthcheck-schedule"]
- start_period: 10s
-```
-::
-
-
-This is an example how we would set the actual execution time within Laravel itself:
-::code-panel
----
-label: Example in Laravel (version <= 10) using `Kernel.php`
----
-```php
-command('process:invoices')->daily()->at('02:00')->timezone('America/Chicago');
- $schedule->command('process:latefees')->daily()->at('04:00')->timezone('America/Chicago');
- }
-
- /**
- * Register the commands for the application.
- *
- * @return void
- */
- protected function commands()
- {
- $this->load(__DIR__.'/Commands');
-
- require base_path('routes/console.php');
- }
-}
-```
-::
-
-::code-panel
----
-label: Example in Laravel (version >= 11) using `routes/console.php`
----
-```php
-delete();
-})->daily()->at('04:00')->timezone('America/Chicago');
-```
-::
-
-## Get Up and Running The Easy Way
-We do all the heavy lifting for you with Spin Pro. It's as easy as selecting it in a menu and we'll configure everything else for you. Learn how easy it is to get up and running with the Task Scheduler on Spin Pro.
-
-[Learn more about Laravel Task Scheduler + Spin Pro â](https://getspin.pro/docs/services/laravel-scheduler)
diff --git a/docs/content/docs/4.laravel/3.laravel-queue.md b/docs/content/docs/4.laravel/3.laravel-queue.md
deleted file mode 100644
index 1c3800485..000000000
--- a/docs/content/docs/4.laravel/3.laravel-queue.md
+++ /dev/null
@@ -1,55 +0,0 @@
----
-head.title: 'Laravel Queue with Docker - Docker PHP - Server Side Up'
-description: 'Learn how to configure a Laravel Queue with Docker.'
-layout: docs
----
-
-# Laravel Queue with Docker
-All you need to do is pass the Laravel Queue command to the container and Laravel will start the queue worker.
-
-
-::code-panel
----
-label: Usual Laravel Queue Command
----
-```sh
-php artisan queue:work --tries=3
-```
-::
-
-## Important concepts
-1. It's usually best to run the queue as a separate container (but using the same image)
-1. If you're using `fpm-apache` or `fpm-nginx`, might need to set the stop signal to `SIGTERM` for a graceful shutdown (see this [PR](https://github.com/serversideup/docker-php/pull/437) for more details why)
-1. Be sure to set the health check
-1. Notice we're using the same `my/laravel-app` image for both the PHP and Queue services. This is a common practice to keep the image consistent.
-1. If you need to run the queue in the same container, you might want to look into [writing your own S6 Overlay script](/docs/guide/using-s6-overlay#customizing-the-initialization-process) to manage and monitor multiple processes in one container.
-
-## Run it with Docker
-::note
-Notice we're calling the artisan command explicitly with the full path (`/var/www/html/artisan`). This is because we need to run the command from the context of the container.
-::
-
-::code-panel
----
-label: Example & Simplified Docker Compose File
----
-```yaml
-services:
- php:
- image: my/laravel-app
-
- queue:
- image: my/laravel-app
- command: ["php", "/var/www/html/artisan", "queue:work", "--tries=3"]
- stop_signal: SIGTERM # Set this for graceful shutdown if you're using fpm-apache or fpm-nginx
- healthcheck:
- # This is our native healthcheck script for the queue
- test: ["CMD", "healthcheck-queue"]
- start_period: 10s
-```
-::
-
-## Get Up and Running The Easy Way
-We do all the heavy lifting for you with Spin Pro. It's as easy as selecting it in a menu and we'll configure everything else for you. Learn how easy it is to get up and running with Queues on Spin Pro.
-
-[Learn more about Laravel Queues + Spin Pro â](https://getspin.pro/docs/services/laravel-queues)
\ No newline at end of file
diff --git a/docs/content/docs/4.laravel/4.laravel-horizon.md b/docs/content/docs/4.laravel/4.laravel-horizon.md
deleted file mode 100644
index fe6ae57c0..000000000
--- a/docs/content/docs/4.laravel/4.laravel-horizon.md
+++ /dev/null
@@ -1,58 +0,0 @@
----
-head.title: 'Laravel Horizon with Docker - Docker PHP - Server Side Up'
-description: 'Learn how to configure Laravel Horizon with Docker.'
-layout: docs
----
-
-# Laravel Horizon with Docker
-We simply pass the command to the Docker container and Laravel will start the Horizon process.
-
-::code-panel
----
-label: Usual Laravel Horizon Command
----
-```sh
-php artisan horizon
-```
-::
-
-## Important concepts
-1. In most cases, you probably want to run this as a separate container from your web container
-1. If you're using `fpm-apache` or `fpm-nginx`, might need to set the stop signal to `SIGTERM` for a graceful shutdown (see this [PR](https://github.com/serversideup/docker-php/pull/437) for more details why)
-1. Be sure to set the health check
-1. Ensure that you have your `.env` configured correctly to authenticate with Redis
-1. Ensure Redis is running before you attempt to connect Horizon to Redis
-1. If you need to run horizon in the same container, you might want to look into [writing your own S6 Overlay script](/docs/guide/using-s6-overlay#customizing-the-initialization-process) to manage and monitor multiple processes in one container.
-
-## Run it with Docker
-::note
-Notice we're calling the artisan command explicitly with the full path (`/var/www/html/artisan`). This is because we need to run the command from the context of the container.
-::
-::code-panel
----
-label: Example Docker Compose File
----
-```yaml
-services:
- php:
- image: my/laravel-app
-
- redis:
- image: redis:6
- command: "redis-server --appendonly yes --requirepass redispassword"
-
- horizon:
- image: my/laravel-app
- command: ["php", "/var/www/html/artisan", "horizon"]
- stop_signal: SIGTERM # Set this for graceful shutdown if you're using fpm-apache or fpm-nginx
- healthcheck:
- # This is our native healthcheck script for Horizon
- test: ["CMD", "healthcheck-horizon"]
- start_period: 10s
-```
-::
-
-## Get Up and Running The Easy Way
-We do all the heavy lifting for you with Spin Pro. It's as easy as selecting it in a menu and we'll configure everything else for you. Learn how easy it is to get up and running with Horizon on Spin Pro.
-
-[Learn more about Laravel Horizon + Spin Pro â](https://getspin.pro/docs/services/laravel-horizon)
\ No newline at end of file
diff --git a/docs/content/docs/4.laravel/4.laravel-reverb.md b/docs/content/docs/4.laravel/4.laravel-reverb.md
deleted file mode 100644
index 3c50ae1fc..000000000
--- a/docs/content/docs/4.laravel/4.laravel-reverb.md
+++ /dev/null
@@ -1,78 +0,0 @@
----
-head.title: 'Laravel Reverb with Docker - Docker PHP - Server Side Up'
-description: 'Learn how to configure Laravel Reverb with Docker.'
-layout: docs
----
-
-# Laravel Reverb with Docker
-We simply pass the command to the Docker container and Laravel will start the Reverb process.
-
-::code-panel
----
-label: Usual Laravel Reverb Command
----
-```sh
-php artisan reverb:start
-```
-::
-
-## Important concepts
-1. You will need to follow the [Laravel Reverb setup instructions](https://laravel.com/docs/11.x/reverb) to install the Laravel Reverb package into your Laravel application.
-1. In most cases, you probably want to run this as a separate container from your web container
-1. If you're using `fpm-apache` or `fpm-nginx`, might need to set the stop signal to `SIGTERM` for a graceful shutdown (see this [PR](https://github.com/serversideup/docker-php/pull/437) for more details why)
-1. Be sure to set the health check
-1. You may need a proxy like Traefik to correctly route traffic to the right container
-1. If you need to run Reverb in the same container, you might want to look into [writing your own S6 Overlay script](/docs/guide/using-s6-overlay#customizing-the-initialization-process) to manage and monitor multiple processes in one container.
-
-## Run it with Docker
-::note
-Notice Laravel Reverb is running on port `8000`, where as Laravel is running on port `8080`. You may need to set additional environment variables and configure a reverse proxy like Traefik to correctly route traffic to the right container.
-::
-::code-panel
----
-label: Example Docker Compose File
----
-```yaml
-services:
- php:
- image: my/laravel-app
- labels:
- - "traefik.enable=true"
- - "traefik.http.routers.laravel.tls=true"
- - "traefik.http.routers.laravel.entrypoints=websecure"
- - "traefik.http.routers.laravel.rule=Host(`https://app.example.com`)"
- - "traefik.http.services.laravel.loadbalancer.server.port=8080"
- - "traefik.http.services.laravel.loadbalancer.server.scheme=http"
-
- reverb:
- image: my/laravel-app
- command: ["php", "/var/www/html/artisan", "--port=8000", "reverb:start"]
- stop_signal: SIGTERM # Set this for graceful shutdown if you're using fpm-apache or fpm-nginx
- healthcheck:
- # This is our native healthcheck script for Reverb
- test: ["CMD", "healthcheck-reverb"]
- start_period: 10s
- labels:
- - "traefik.enable=true"
- - "traefik.http.routers.reverb.tls=true"
- - "traefik.http.routers.reverb.entrypoints=websecure"
- - "traefik.http.routers.reverb.rule=Host(`https://reverb.example.com`)"
- - "traefik.http.services.reverb.loadbalancer.server.port=8000"
- - "traefik.http.services.reverb.loadbalancer.server.scheme=http"
-```
-::
-
-## Laravel ENV updates
-Reverb may require a few ENV variables to be set in your Laravel application.
-| **Laravel ENV Variable** | **Description** | **Value if matching example above** |
-| ------------------------- | --------- | --------- |
-| `REVERB_HOST` | The hostname the **CLIENT** will connect to. | `reverb.example.com` |
-| `REVERB_PORT` | The port the **CLIENT** will connect to. | `443` |
-| `REVERB_SCHEME` | The scheme the **CLIENT** will connect to. | `https` |
-
-Be sure to not get `REVERB_HOST` or `REVERB_PORT` confused with `REVERB_SERVER_HOST` or `REVERB_SERVER_PORT`. The `_SERVER_` variables are for the **SERVER** (the Reverb daemon itself) and the others are for the **CLIENT** (people connecting to your application).
-
-## Get Up and Running The Easy Way
-We do all the heavy lifting for you with Spin Pro. It's as easy as selecting it in a menu and we'll configure everything else for you. Learn how easy it is to get up and running with Reverb on Spin Pro.
-
-[Learn more about Laravel Reverb + Spin Pro â](https://getspin.pro/docs/services/laravel-reverb)
\ No newline at end of file
diff --git a/docs/content/docs/5.customizing-the-image/2.installing-additional-php-extensions.md b/docs/content/docs/5.customizing-the-image/2.installing-additional-php-extensions.md
deleted file mode 100644
index b6db667b9..000000000
--- a/docs/content/docs/5.customizing-the-image/2.installing-additional-php-extensions.md
+++ /dev/null
@@ -1,197 +0,0 @@
----
-head.title: 'Installing additional PHP extensions - Docker PHP - Server Side Up'
-description: 'Learn how to add any PHP extension that you need for your application.'
-layout: docs
----
-
-# How to install additional PHP extensions
-We provide a number of PHP packages by default, but there will be times where you'll need to add additional PHP extensions in order to support a certain PHP library in your application. By default, we've included a popular tool called [`install-php-extensions`](https://github.com/mlocati/docker-php-extension-installer) that allows you to install almost any PHP module that you'll need.
-
-Installing extensions is easy. All you need to do is find the extension you'd like to install on the [docker-php-extension installer README](https://github.com/mlocati/docker-php-extension-installer#supported-php-extensions). Once you have the name of the extensions, you'll need to add it to the `Dockerfile` in your project.
-
-::note
-**Our images are unprivileged by default.** This means you'll need to switch to `root` to do "root things", then switch back to the `www-data` user. This ensures your container image is hardened against security vulnerabilities.
-::
-
-::code-panel
----
-label: "Example: Installing the \"intl\" extension"
----
-```dockerfile
-FROM serversideup/php:8.2.12-fpm-nginx-bookworm
-
-# Switch to root so we can do root things
-USER root
-
-# Install the intl extension with root permissions
-RUN install-php-extensions intl
-
-# Drop back to our unprivileged user
-USER www-data
-```
-::
-
-It's really that simple. The `install-php-extensions` tool will automatically install the operating system packages that are required for the PHP extension to work and add the extension to PHP.
-
-For more details on this script, we encourage you to check out the GitHub repository for this project.
-
-[View the "docker-php-extension-installer" Project on GitHub â](https://github.com/mlocati/docker-php-extension-installer)
-
-## Docker Compose
-If you're using Docker Compose, you'll want to make sure that you're not calling our image directly with the `image:` key. Instead, you'll want to use the `build:` key and point to a `Dockerfile` in your project.
-
-::code-panel
----
-label: Original docker-compose.yml file
----
-```yaml
-services:
- php:
- image: serversideup/php:8.2.12-fpm-nginx-bookworm
- volumes:
- - .:/var/www/html/:cached
-```
-::
-
-::code-panel
----
-label: "Updated docker-compose.yml"
----
-```yaml
-services:
- php:
- build:
- context: .
- dockerfile: Dockerfile
- volumes:
- - .:/var/www/html/:cached
-```
-::
-
-::code-panel
----
-label: "New File: Dockerfile"
----
-```dockerfile
-FROM serversideup/php:8.2.12-fpm-nginx-bookworm
-
-# Switch to root so we can do root things
-USER root
-
-# Install the imagick extension with root permissions
-RUN install-php-extensions imagick
-
-# Drop back to our unprivileged user
-USER www-data
-```
-::
-
-Notice the `services.php.build` options. We set a `.` to look for a dockerfile called `Dockerfile` within the same directory as our `docker-compose.yml` file. If your project is large, you may also want to include [`.dockerignore`](https://docs.docker.com/engine/reference/builder/#dockerignore-file) to ignore files that you do not want to include in your image.
-
-For extra clarity, my project directory would look like this:
-
-::code-panel
----
-label: Project File Structure
----
-```txt
-.
-âââ Dockerfile
-âââ docker-compose.yml
-âââ public
- âââ index.php
-```
-::
-
-The Dockerfile is where all the magic will happen. This is where we pull the Server Side Up image as a dependency, then run standard shell commands to add the extension that we need.
-
-The next time you run `docker compose up`, Docker will build and cache the image for you automatically.
-
-You can verify the CLI option installed correctly by using `php -i` in CLI or `phpinfo()` in a PHP file.
-
-#### â ī¸ Important note about caching
-* You'll notice Docker likes to cache image builds (which is great for most functions)
-* If you make changes to your *Dockerfile*, you may need to include `--build` with your Docker compose command ([read more here](https://docs.docker.com/compose/reference/up/))
-
-If you want to rebuild, then you would run this:
-::code-panel
----
-label: Rebuild on Docker Compose Initialization
----
-```sh
-docker compose up --build
-```
-::
-
-## Real-life example showing development to production
-Here's an example showing a single Dockerfile with "multi-stage builds" so you can call certain targets as appropriate. This file is structured to centralize the PHP extension management in a single location.
-
-::code-panel
----
-label: Dockerfile
----
-```dockerfile
-############################################
-# Base Image
-############################################
-
-# Learn more about the Server Side Up PHP Docker Images at:
-# https://serversideup.net/open-source/docker-php/
-FROM serversideup/php:8.4-fpm-nginx AS base
-
-# Switch to root before installing our PHP extensions
-USER root
-RUN install-php-extensions bcmath gd
-
-############################################
-# Development Image
-############################################
-FROM base AS development
-
-# We can pass USER_ID and GROUP_ID as build arguments
-# to ensure the www-data user has the same UID and GID
-# as the user running Docker.
-ARG USER_ID
-ARG GROUP_ID
-
-# Switch to root so we can set the user ID and group ID
-USER root
-RUN docker-php-serversideup-set-id www-data $USER_ID:$GROUP_ID && \
- docker-php-serversideup-set-file-permissions --owner $USER_ID:$GROUP_ID --service nginx
-
-# Switch back to the unprivileged www-data user
-USER www-data
-
-############################################
-# CI image
-############################################
-FROM base AS ci
-
-# Sometimes CI images need to run as root
-# so we set the ROOT user and configure
-# the PHP-FPM pool to run as www-data
-USER root
-RUN echo "user = www-data" >> /usr/local/etc/php-fpm.d/docker-php-serversideup-pool.conf && \
- echo "group = www-data" >> /usr/local/etc/php-fpm.d/docker-php-serversideup-pool.conf
-
-############################################
-# Production Image
-############################################
-FROM base AS deploy
-COPY --chown=www-data:www-data . /var/www/html
-USER www-data
-```
-::
-
-## Common PHP extensions that you might need
-We compiled a list of extensions for you to reference.
-
-### intl
-[intl](https://www.php.net/manual/en/intro.intl.php) is a PHP module that provides internationalization functions. You may want to install this module if you're using Laravel, specifically if you are validating emails with "DNS" or "spoof" validation.
-
-Our tests showed this module will add about 40 MB of space to the Docker image, so we decided to not include it by default.
-
-[Learn more about the "intl" requirement for Laravel â](https://laravel.com/docs/10.x/validation#rule-email)
-
-### Don't see the extension you need?
-If you're having trouble, [open a discussion on GitHub â](https://github.com/serversideup/docker-php/discussions/new?category=q-a)
diff --git a/docs/content/docs/5.customizing-the-image/3.adding-your-own-start-up-scripts.md b/docs/content/docs/5.customizing-the-image/3.adding-your-own-start-up-scripts.md
deleted file mode 100644
index b57c73ac2..000000000
--- a/docs/content/docs/5.customizing-the-image/3.adding-your-own-start-up-scripts.md
+++ /dev/null
@@ -1,138 +0,0 @@
----
-head.title: 'Adding your own start up scripts - Docker PHP - Server Side Up'
-description: 'Learn how to use our entrypoint.d directory to customize your container start up experience.'
-layout: docs
----
-
-# Adding your own start up scripts
-::lead-p
-We provide a few [default scripts](/docs/getting-started/default-configurations#default-entrypoint-scripts) to get you going, but sometimes you want to just add your own. We've made it easy to do that with our `entrypoint.d` directory.
-::
-
-## Entrypoint Script Requirements
-::note
-Before you write your entry point script, be aware of the following requirements:
-
-Your script should:
-- Be executable (755 permissions)
-- Located in the `/etc/entrypoint.d` directory
-- Have the file extension ending in `.sh`
-::
-
-We recommend writing your script in `/bin/sh` for the best compatibility between Alpine and Debian. If you choose to use `/bin/bash`, your script will only be able to run on Debian-based images.
-
-## Choose your execution order
-Since [we provide default entrypoint scripts](/docs/getting-started/default-configurations#default-entrypoint-scripts), you may want to choose the order in which your scripts are executed. We've made it easy to do that by prefixing your script with a number. The lower the number, the earlier it will be executed.
-
-::note
-If you want to disable our entrypoint scripts, you can set `DISABLE_DEFAULT_CONFIG` to `true` in your environment variables.
-::
-
-## Long running services
-::note
-Don't use entrypoint scripts for long-running services. You want your services to be monitored and restarted if they crash.
-::
-
-Anything in the `/etc/entrypoint.d` directory are scripts that are intended to run quickly and then move on. If you run a service as an entrypoint script, that service may crash and not be restarted.
-
-Instead, learn about [using S6 overlay](/docs/guide/using-s6-overlay) so your services can be properly initialized and monitored. See the [S6 Overylay project](https://github.com/just-containers/s6-overlay) for more details on how to write your own S6 service.
-
-## Example: Create a custom entrypoint script
-In this example, let's create a `99-my-script.sh` so it executes after all the other default scripts.
-
-First, let's take a look at our project structure:
-
-::code-panel
----
-label: "Project Structure"
----
-```txt
-.
-âââ Dockerfile
-âââ docker-compose.yml
-âââ entrypoint.d
-â âââ 99-my-script.sh
-âââ public
- âââ index.php
-```
-::
-Let's take a look at the script that we want to run. We can keep this simple for now.
-
-::code-panel
----
-label: "99-my-script.sh"
----
-```bash
-#!/bin/sh
-echo "đ Hello, world!"
-```
-::
-
-Now, let's take a look at our `Dockerfile`:
-
-::code-panel
----
-label: "Dockerfile"
----
-```dockerfile
-FROM serversideup/php:8.4-unit
-
-COPY --chmod=755 ./entrypoint.d/ /etc/entrypoint.d/
-```
-::
-
-In the above file, we're copying our `entrypoint.d` directory to `/etc/entrypoint.d/` in the container. We're also setting the permissions to `755` so our scripts are executable.
-
-Finally, let's take a look at our `docker-compose.yml` file:
-
-::code-panel
----
-label: "docker-compose.yml"
----
-```yaml
-services:
- php:
- build:
- context: .
- dockerfile: Dockerfile
- ports:
- - 80:8080
- volumes:
- - .:/var/www/html
-```
-::
-
-In the above file, we're building our image using the `Dockerfile` in the current directory. We're also mounting our current directory to `/var/www/html` in the container.
-
-## Don't use `exit 0` in your script
-If you use `exit 0` in your script, it will stop the execution of the rest of the entrypoint scripts. We recommend using `return 0` instead. [See this discussion](https://github.com/serversideup/docker-php/issues/481#issuecomment-2463082306) for more details on why.
-
-Long story short, we don't use subshells to execute your scripts, so `exit 0` will not work as expected. We do this because we want to ensure your script has access to the environment variables that are set in the entrypoint scripts.
-
-## Running our example
-When we run `docker compose up`, we should see the following output:
-
-::code-panel
----
-label: "Output of \"docker compose up\""
----
-```txt
-example-project | init-unit: Stopping Unit daemon after initial configuration...
-example-project | 2023/12/05 19:52:37 [notice] 29#29 process 33 exited with code 0
-example-project | init-unit: Waiting for control socket to be removed...
-example-project | 2023/12/05 19:52:37 [notice] 29#29 process 34 exited with code 0
-example-project |
-example-project | init-unit: Unit initial configuration complete; ready for start up...
-example-project |
-example-project | đ Hello, world!
-example-project | 2023/12/05 19:52:38 [info] 1#1 unit 1.31.1 started
-example-project | 2023/12/05 19:52:38 [info] 65#65 discovery started
-example-project | 2023/12/05 19:52:38 [notice] 65#65 module: php 8.4.0 "/usr/lib/unit/modules/php.unit.so"
-example-project | 2023/12/05 19:52:38 [info] 1#1 controller started
-example-project | 2023/12/05 19:52:38 [notice] 1#1 process 65 exited with code 0
-example-project | 2023/12/05 19:52:38 [info] 67#67 router started
-example-project | 2023/12/05 19:52:38 [info] 67#67 OpenSSL 3.0.11 19 Sep 2023, 300000b0
-```
-::
-
-You can see our `đ Hello, world!` is executing *after* the initialization of `10-init-unit.sh`.
\ No newline at end of file
diff --git a/docs/content/docs/5.customizing-the-image/4.configuring-ssl.md b/docs/content/docs/5.customizing-the-image/4.configuring-ssl.md
deleted file mode 100644
index b015b7f9d..000000000
--- a/docs/content/docs/5.customizing-the-image/4.configuring-ssl.md
+++ /dev/null
@@ -1,99 +0,0 @@
----
-head.title: 'Configuring SSL - Docker PHP - Server Side Up'
-description: 'Learn how to use SSL with the serversideup/php images.'
-layout: docs
----
-
-# Configuring SSL
-SSL is disabled by default but can be turned on by setting `SSL_MODE`:
-
-- `off` (default): HTTP only.
-- `mixed`: HTTP and HTTPS.
-- `full`: HTTPS only. HTTP requests will be redirected to HTTPS.
-
-## Self-signed Certificate Example
-If you set `SSL_MODE` to `mixed` or `full`, a self-signed certificate will be generated by default.
-
-::code-panel
----
-label: Set SSL mode to "mixed" (HTTP + HTTPS)
----
-```yaml
-services:
- php:
- image: serversideup/php:8.4-fpm-nginx
- ports:
- - 80:8080
- - 443:8443
- environment:
- SSL_MODE: "mixed"
- volumes:
- - .:/var/www/html
-```
-::
-
-The above will generate a self-signed certificate and configure NGINX to listen on both HTTP (Port 80) and HTTPS (Port 443).
-
-## Providing Your Own Certificate
-In order to add your own certificate, you will need to mount the certificate files to the container. The following files are required:
-
-::code-panel
----
-label: Providing your own certificate pair
----
-```yaml
-services:
- php:
- image: serversideup/php:8.4-fpm-nginx
- ports:
- - 80:8080
- - 443:8443
- environment:
- SSL_MODE: "mixed"
- SSL_PRIVATE_KEY_FILE: "/etc/ssl/private/test-key.pem"
- SSL_CERTIFICATE_FILE: "/etc/ssl/private/test.pem"
- volumes:
- - ./app:/var/www/html
- - ./certs/:/etc/ssl/private/
-```
-::
-
-::note
-Ensure your private key file is set to the permissions `600` (read/write for owner only). If you don't set the permissions correctly, you will run into errors with loading an insecure private key file.
-::
-
-The above example provides the private and public key pair with `SSL_PRIVATE_KEY_FILE` and `SSL_CERTIFICATE_FILE` environment variables. The files are mounted to the container with the `volumes` directive.
-
-To give you a clearer picture of the project structure, this is what my folder looks like:
-
-::code-panel
----
-label: Providing your own certificate pair
----
-```text
-.
-âââ app
-â âââ public
-â âââ index.php
-âââ certs
-â âââ test-key.pem
-â âââ test.pem
-âââ docker-compose.yml
-```
-::
-
-You can see the `docker-compose.yml` file is in the parent directory. The `app` directory is dedicated for all application files, where the `certs` directory is dedicated for all SSL certificates.
-
-The separation of these two directories is important. It would not be a good practice to mount your certificate files in the `/var/www/html` directory on a production machine.
-
-::note
-For a signed certificate, you must acquire one from a trusted certificate authority (like [ssls.com](https://www.ssls.com/)).
-::
-
-### Additional options for NGINX Unit
-If you're using NGINX Unit, you also have the option of setting `UNIT_CERTIFICATE_NAME` (default: `self-signed-web-bundle`). This is the name of the certificate bundle that will be used by NGINX Unit. You can read more about this in the [NGINX Unit documentation](https://unit.nginx.org/configuration/#ssl-tls-configuration).
-
-## Using Let's Encrypt
-If you'd like to use Let's Encrypt (what we use), it's best to use a reverse proxy like [Traefik](https://traefik.io/traefik/) or [Caddy](https://caddyserver.com/).
-
-Providing examples for those are out of the scope of this project, but we may consider adding examples in other projects in the future.
diff --git a/docs/content/docs/5.guide/.navigation.yml b/docs/content/docs/5.guide/.navigation.yml
new file mode 100644
index 000000000..a5d442aa1
--- /dev/null
+++ b/docs/content/docs/5.guide/.navigation.yml
@@ -0,0 +1,3 @@
+title: Advanced Guides
+icon: false
+defaultOpen: false
\ No newline at end of file
diff --git a/docs/content/docs/5.guide/1.migrating-from-official-php-images.md b/docs/content/docs/5.guide/1.migrating-from-official-php-images.md
new file mode 100644
index 000000000..5d9dff012
--- /dev/null
+++ b/docs/content/docs/5.guide/1.migrating-from-official-php-images.md
@@ -0,0 +1,97 @@
+---
+head.title: 'Migrating from official PHP Docker images - Docker PHP - Server Side Up'
+description: 'Learn how easy it is to move from the official PHP docker images to serversideup/php.'
+layout: docs
+title: Migrating from official PHP images
+---
+
+::lead-p
+Migrating from the official PHP images to serversideup/php is easy because our images are based on the official PHP images. We just give you a "batteries included" experience that's ready for production.
+::
+
+## Key differences
+::warning
+Because our images run as `www-data` by default, you may need to update file permissions for mounted volumes.
+::
+
+| | **Official PHP Images** |**serversideup/php** |
+|-------------------------|-------------------------|---------------------|
+| Base Operating System | Debian, Alpine | Debian, Alpine |
+| PHP Compilation | PHP Source Code | PHP Source Code (based on official PHP images) |
+| Run PHP, pinned to the minor version | â
| â
|
+| Multi-arch support | â
| â
|
+| Init System | Docker CMD | Docker CMD or [S6-Overlay](https://github.com/just-containers/s6-overlay) |
+| Published Registry| DockerHub | [DockerHub](https://hub.docker.com/r/serversideup/php), [GitHub Packages](https://github.com/serversideup/docker-php/pkgs/container/php) |
+| Unprivileged by default | â | â
|
+| Variable-first configuration | â | â
|
+| Includes `composer` | â | â
|
+| Includes [`install-php-extensions`](https://github.com/mlocati/docker-php-extension-installer) | â | â
|
+| Production-Ready by default| â | â
|
+| Built-in security optimizations | â | â
|
+| Optimized for Laravel & WordPress| â | â
|
+| NGINX + FPM variation| â | â
|
+| FrankenPHP variation| â | â
|
+| Native health checks | â | â
|
+
+:u-button{to="/docs/getting-started/choosing-an-image" label="Learn more about choosing an image" aria-label="Learn more about choosing an image" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Making the change
+Making the change will literally take you two seconds.
+
+::steps{level="4"}
+
+#### Figure out which image you'd like to use
+Review our [choosing an image](/docs/getting-started/choosing-an-image) guide to help you decide which image you'd like to use. Also, make sure our [default configurations](/docs/getting-started/default-configurations) satisfy your requirements.
+
+#### Update your `Dockerfile` or `compose.yml` file
+:::tip
+We simply change `php:8.4-apache` to `serversideup/php:8.4-fpm-apache`
+:::
+**Dockerfile**
+:::code-group
+```dockerfile [ORIGINAL: Dockerfile]{1}
+FROM php:8.4-apache
+
+# Rest of your Dockerfile...
+```
+```dockerfile [UPDATED: Dockerfile]{1}
+FROM serversideup/php:8.4-fpm-apache
+
+# Rest of your Dockerfile...
+```
+:::
+
+**compose.yml**
+:::code-group
+```yml [ORIGINAL: compose.yml]{3,5-6}
+services:
+ php:
+ image: php:8.4-apache
+ ports:
+ - 80:80
+ - 443:443
+```
+```yml [UPDATED: compose.yml]{3,5-6}
+services:
+ php:
+ image: serversideup/php:8.4-fpm-apache
+ ports:
+ - 80:8080
+ - 443:8443
+```
+:::
+
+#### Test your application
+Make sure to test your application to ensure it's working as expected.
+
+#### Deploy and enjoy!
+Making the change is that simple.
+
+::
+
+## Related resources
+If you need to customize the base image, review our guides below:
+
+- [Changing common PHP settings](/docs/customizing-the-image/changing-common-php-settings)
+- [Installing additional PHP extensions](/docs/customizing-the-image/installing-additional-php-extensions)
+- [Startup scripts](/docs/customizing-the-image/adding-your-own-start-up-scripts)
\ No newline at end of file
diff --git a/docs/content/docs/3.guide/3.using-healthchecks-with-laravel.md b/docs/content/docs/5.guide/2.using-healthchecks-with-laravel.md
similarity index 65%
rename from docs/content/docs/3.guide/3.using-healthchecks-with-laravel.md
rename to docs/content/docs/5.guide/2.using-healthchecks-with-laravel.md
index 7b80142c8..245b50dfc 100644
--- a/docs/content/docs/3.guide/3.using-healthchecks-with-laravel.md
+++ b/docs/content/docs/5.guide/2.using-healthchecks-with-laravel.md
@@ -4,17 +4,19 @@ description: 'Stop guessing if Laravel is up and running. Our health checks have
layout: docs
---
-# Native Docker Health Checks for Laravel
+## Native Docker Health Checks for Laravel
::lead-p
Dialing in health checks are very important for ensuring your application is running smoothly and that you're able to deploy updates without any downtime. This guide will explain how our health checks work and how you can use them to your advantage.
::
+:iframe{src="https://www.youtube-nocookie.com/embed/cuYIB5VrH1Q?si=75VBCKAe5x2Hmckd" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen style="aspect-ratio: 16/9;"}
+
## What are Health Checks?
Health checks are a way to check the status of your application. Whenever a container is started, a health check is performed. If the health check fails, the container will be restarted or marked as unhealthy. Health checks are very important for rolling updates and ensuring your application can start up in order if you have services that depend on each other.
## Our Health Checks
-We offer a number of health check commands, specifically for Laravel. You can find these commands are prefixed with `healthcheck-` and are located in [`/usr/local/bin`](https://github.com/serversideup/docker-php/tree/main/src/common/usr/local/bin). The examples below show how to use these health checks in your `docker-compose.yml` file, but you can also use them in other environments.
+We offer a number of health check commands, specifically for Laravel. You can find these commands are prefixed with `healthcheck-` and are located in [`/usr/local/bin`](https://github.com/serversideup/docker-php/tree/main/src/common/usr/local/bin){target="_blank"}. The examples below show how to use these health checks in your `compose.yml` file, but you can also use them in other environments.
## Default Health Check Settings
By default, our Dockerfiles ship with the following health check commands:
@@ -22,20 +24,23 @@ By default, our Dockerfiles ship with the following health check commands:
| Variation | Health Check Command |
| --------- | -------------------- |
| `cli` | (none) |
-| `fpm` | [`php-fpm-healthcheck`](https://github.com/renatomefi/php-fpm-healthcheck) |
+| `fpm` | [`php-fpm-healthcheck`](https://github.com/renatomefi/php-fpm-healthcheck){target="_blank"} |
| `fpm-apache` | `curl --insecure --silent --location --show-error --fail http://localhost:8080$HEALTHCHECK_PATH` |
| `fpm-nginx` | `curl --insecure --silent --location --show-error --fail http://localhost:8080$HEALTHCHECK_PATH` |
+| `frankenphp` | `curl --insecure --silent --location --show-error --fail http://localhost:8080$HEALTHCHECK_PATH` |
::note
-Notice how `fpm-apache` and `fpm-nginx` have a `$HEALTHCHECK_PATH` variable? This is because you can specify a path for the health check to validate.
+Notice how `fpm-apache`, `fpm-nginx`, and `frankenphp` have a `$HEALTHCHECK_PATH` variable? This is because you can specify a path for the health check to validate.
::
## Changing the Health Check Path
By default, you can see our [Environment Variable Specification](/docs/reference/environment-variable-specification) shows the `HEALTHCHECK_PATH` variable is set to `/healthcheck`.
-**This only validates that FPM-NGINX or FPM-APACHE are running and ready to accept connections. It does not validate that Laravel is running or healthy.**
+::tip
+This only validates that FPM-NGINX or FPM-APACHE are running and ready to accept connections. It does not validate that Laravel is running or healthy.
+::
-If you are using Laravel, [modern versions of Laravel will ship with a `/up` route](https://laravel.com/docs/11.x/deployment#the-health-route) that you can use to validate that Laravel is running and healthy.
+If you are using Laravel, [modern versions of Laravel will ship with a `/up` route](https://laravel.com/docs/12.x/deployment#the-health-route){target="_blank"} that you can use to validate that Laravel is running and healthy.
You can even create your own custom path in your application if you want. As long as the path returns a 200 status code, the health check will be successful.
@@ -45,67 +50,51 @@ Since it is good practice to use the same Docker image for all our services, we
### Laravel Horizon
We utilize the `artisan horizon:status` command to check the status of Laravel Horizon. This is a command native to Laravel Horizon and is used to determine if the Horizon process is running.
-To run this command automatically, you can call our health check command in your `docker-compose.yml` file.
+To run this command automatically, you can call our health check command in your `compose.yml` file.
-::code-panel
----
-label: Using Healthcheck with Laravel Horizon
----
-```yaml
+```yml [compose.yml]
+## Rest of your service configuration...
healthcheck:
test: ["CMD", "healthcheck-horizon"]
```
-::
-[See a full example of configuring Laravel Horizon â](/docs/laravel/laravel-horizon)
+[See a full example of configuring Laravel Horizon â](/docs/framework-guides/laravel/horizon)
### Laravel Reverb
We use `pgrep` to check if the `reverb:start` command is running. This ensures the Reverb process is running and ready to accept connections.
-To run this command automatically, you can call our health check command in your `docker-compose.yml` file.
+To run this command automatically, you can call our health check command in your `compose.yml` file.
-::code-panel
----
-label: Using Healthcheck with Laravel Reverb
----
-```yaml
+```yml [compose.yml]
+## Rest of your service configuration...
healthcheck:
test: ["CMD", "healthcheck-reverb"]
```
-::
-[See a full example of configuring Laravel Reverb â](/docs/laravel/laravel-reverb)
+[See a full example of configuring Laravel Reverb â](/docs/framework-guides/laravel/reverb)
### Laravel Scheduler
We use `pgrep` to check if the `schedule:work` command is running. This ensures the scheduler process is running.
-To run this command automatically, you can call our health check command in your `docker-compose.yml` file.
+To run this command automatically, you can call our health check command in your `compose.yml` file.
-::code-panel
----
-label: Using Healthcheck with Laravel Scheduler
----
-```yaml
+```yml [compose.yml]
+## Rest of your service configuration...
healthcheck:
test: ["CMD", "healthcheck-schedule"]
```
-::
-[See a full example of configuring Laravel Scheduler â](/docs/laravel/laravel-task-scheduler)
+[See a full example of configuring Laravel Scheduler â](/docs/framework-guides/laravel/task-scheduler)
### Laravel Queue
We use `pgrep` to check if the `queue:work` command is running. This ensures the queue process is running.
-To run this command automatically, you can call our health check command in your `docker-compose.yml` file.
+To run this command automatically, you can call our health check command in your `compose.yml` file.
-::code-panel
----
-label: Using Healthcheck with Laravel Queue
----
-```yaml
+```yml [compose.yml]
+## Rest of your service configuration...
healthcheck:
test: ["CMD", "healthcheck-queue"]
```
-::
-[See a full example of configuring Laravel Queue â](/docs/laravel/laravel-queue)
+[See a full example of configuring Laravel Queue â](/docs/framework-guides/laravel/queue)
diff --git a/docs/content/docs/3.guide/2.using-s6-overlay.md b/docs/content/docs/5.guide/2.using-s6-overlay.md
similarity index 87%
rename from docs/content/docs/3.guide/2.using-s6-overlay.md
rename to docs/content/docs/5.guide/2.using-s6-overlay.md
index 2c2e7f19e..cabdda1a0 100644
--- a/docs/content/docs/3.guide/2.using-s6-overlay.md
+++ b/docs/content/docs/5.guide/2.using-s6-overlay.md
@@ -31,7 +31,7 @@ Although this method was more efficient, it meant we still need something to ser
### Reverse proxy
Reverse proxies are servers that route traffic based on the request. To make things more confusing, you can have a web server be a reverse proxy and a web server at the same time (this is how we run NGINX). You can even configure Apache to run as a web server and a reverse proxy too (we run our `php:*-fpm-apache` images like this).
-
+
In the example above, you can see the web request coming in from the top. NGINX is our first stop where it inspects the request.
@@ -48,7 +48,7 @@ In a perfect world, that would be ideal -- but this isn't always realistic. You
If you want to replicate your application without the added complexity of multiple physical servers, etc -- you need something like S6 Overlay to properly bring up the processes and ensure your application service health is accurately reported.
-[S6 Overlay's philosophy](https://github.com/just-containers/s6-overlay#the-docker-way) is a perfect match when it comes to running PHP:
+[S6 Overlay's philosophy](https://github.com/just-containers/s6-overlay#the-docker-way){target="_blank"} is a perfect match when it comes to running PHP:
- A container should do ***one thing*** (which may contain multiple processes). When that one thing stops, the container should also stop.
@@ -61,13 +61,13 @@ When we configure PHP to run with the S6 Overlay system, we get a number of adva
## This disadvantage of S6 Overlay
-- â S6 Overlay may not be compatible with all PaaS providers, depending on how they run their containers ([see this comment from the S6 Overlay creator](https://github.com/just-containers/s6-overlay/issues/535#issuecomment-1597680218))
+- â S6 Overlay may not be compatible with all PaaS providers, depending on how they run their containers ([see this comment from the S6 Overlay creator](https://github.com/just-containers/s6-overlay/issues/535#issuecomment-1597680218){target="_blank"})
## S6 Overlay vs. Supervisor
Many people flock to Supervisor, which was a very popular option before containerization. Here's some examples why you may want to trade Supervisor for S6 Overlay:
### How Supervisor reports container health
-
+
When you bring up Supervisord within a container, it will be assigned `PID 1`. Then Supervisor will bring up child processes with it.
@@ -76,16 +76,16 @@ During a failure, Supervisor can be configured to restart the child process to a
**đ This design can lead to inaccurate container health statuses during a failure.**
### How S6 Overlay reports container health
-
+
S6 Overlay was designed to be run in containers from the ground up. S6 Overlay can also attempt recovery, but it is more accurate on determining container health compared to Supervisor.
**đ By design, S6 Overlay can accurately detect a failure and exit (which is what we want when our app fails).**
## Customizing the initialization process
-
+
Since S6 Overlay was designed around the idea of containerization, there are also a number of other advantages to properly time your customizations during container startup.
-S6 Overlay has a number of options to [write our own service script](https://github.com/just-containers/s6-overlay/tree/master#writing-a-service-script) and properly time everything.
+S6 Overlay has a number of options to [write our own service script](https://github.com/just-containers/s6-overlay/tree/master#writing-a-service-script){target="_blank"} and properly time everything.
In the example above, you can see we have a `runas-user` script which helps us customize and set custom UIDs and GIDs for our file permissions. At the same time, `laravel-automations` executes to see if there are any automated migrations to run.
@@ -93,4 +93,4 @@ Both scripts must finish successfully before S6 Overlay starts our main `php-fpm
As you can see this structure can be very powerful in making your own customizations. This is great for giving you full control of how you'd like your application to behave.
-[Read how to make customizations â](/docs/customizing-the-image/changing-common-php-settings)
\ No newline at end of file
+:u-button{to="/docs/customizing-the-image/changing-common-php-settings" label="Changing Common PHP Settings" aria-label="Changing Common PHP Settings" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
\ No newline at end of file
diff --git a/docs/content/docs/3.guide/2.understanding-file-permissions.md b/docs/content/docs/5.guide/3.understanding-file-permissions.md
similarity index 89%
rename from docs/content/docs/3.guide/2.understanding-file-permissions.md
rename to docs/content/docs/5.guide/3.understanding-file-permissions.md
index 80b50de37..0b26b7096 100644
--- a/docs/content/docs/3.guide/2.understanding-file-permissions.md
+++ b/docs/content/docs/5.guide/3.understanding-file-permissions.md
@@ -3,13 +3,11 @@ head.title: 'Understanding file permissions - Docker PHP - Server Side Up'
description: 'Eliminate the headache of file permissions when working with PHP + Docker.'
layout: docs
---
-
-# Understanding File Permissions
::lead-p
Working with file permissions is one of the biggest headaches when working with PHP + Docker. This generally is because the PHP server also requires a web server to serve static files. By default, this means multiple users are created in the container, and permissions can get out of hand quickly.
::
-
+{:zoom=false}
## Even more frustrating: Development Environments
Even if someone configured a single user in the container to run both the PHP server and the web server, things get even more complicated in development environments. For example, if you have Alice running her Windows Machine with WSL2, she might have a user ID of `1001`. Then you have Bob running his Ubuntu workstation with a user ID of `1002`. Meanwhile, Charlie is running his Docker on his macOS machine (that runs a tiny VM) that has a totally different file permission experience compared to Windows and Linux because of the file system differences.
@@ -29,17 +27,14 @@ It's a bummer that we can only set the user and group ID at build time, but it's
#### How it works
- By default, all our images run `www-data` as the user (`33:33` for Debian and `82:82` for Alpine)
- We provide a script that can be called at build time to change the UID and GID of `www-data` (called `docker-php-serversideup-set-id`)
-- If you need to update permissions of service files (example: NGINX, Apache, Unit, etc), you can run the `docker-php-serversideup-set-file-permissions` at build
+- If you need to update permissions of service files (example: NGINX, Apache, Unit, etc), you can run the `docker-php-serversideup-set-file-permissions` at build. This will automatically detect the service and update the file permissions accordingly.
- We will use a multi-stage build to ensure that the `docker-php-serversideup-set-id` script is not executed in the construction of the final image
## Example
Here's an example of ensuring our UID/GID of `www-data` will match the development UID/GID of the host machine, while preserving the default UID/GID of `33:33` for the final image:
-::code-panel
----
-label: Dockerfile
----
-```dockerfile
+
+```dockerfile [Dockerfile]
############################################
# Base Image
############################################
@@ -62,8 +57,8 @@ ARG GROUP_ID
# the file permissions for NGINX
RUN docker-php-serversideup-set-id www-data $USER_ID:$GROUP_ID && \
\
- # Update the file permissions for our NGINX service to match the new UID/GID
- docker-php-serversideup-set-file-permissions --owner $USER_ID:$GROUP_ID --service nginx
+ # Update the file permissions to match the new UID/GID
+ docker-php-serversideup-set-file-permissions --owner $USER_ID:$GROUP_ID
# Drop back to our unprivileged user
USER www-data
@@ -79,15 +74,10 @@ FROM base AS production
# Copy our app files as www-data (33:33)
COPY --chown=www-data:www-data . /var/www/html
```
-::
To show a simple Docker Compose file example for development, we could use:
-::code-panel
----
-label: docker-compose.yml
----
-```yaml
+```yml [compose.yml]
services:
php:
build:
@@ -102,7 +92,6 @@ services:
volumes:
- .:/var/www/html
```
-::
When we run `docker compose up`, our compose file directs us to build the `development` target. This target will run the `docker-php-serversideup-set-id` script to change the UID and GID of `www-data` to match the host machine (assuming `$UID` and `$GID` are set in a zsh/bash profile or something similar). This will allow us to run the container as an unprivileged user while still having the correct permissions to read and write files.
@@ -113,4 +102,4 @@ When it comes to building our image for production, we just use the `production`
## An optimized experience from development to production
If you like the concepts above and you're looking for an optimized experience for developers (especially when it comes simplifying the setting of UID/GID), we recommend checking out our other open source project Spin. Spin is a lightweight wrapper for Docker Compose that allows you to manage your environment from development to production.
-[Learn more about Spin â](https://serversideup.net/open-source/spin/)
\ No newline at end of file
+:u-button{to="https://serversideup.net/open-source/spin/" label="Learn more about Spin" aria-label="Learn more about Spin" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
\ No newline at end of file
diff --git a/docs/content/docs/6.customizing-the-image/.navigation.yml b/docs/content/docs/6.customizing-the-image/.navigation.yml
new file mode 100644
index 000000000..a2603f1c3
--- /dev/null
+++ b/docs/content/docs/6.customizing-the-image/.navigation.yml
@@ -0,0 +1,3 @@
+title: Customization
+icon: false
+defaultOpen: false
\ No newline at end of file
diff --git a/docs/content/docs/5.customizing-the-image/1.changing-common-php-settings.md b/docs/content/docs/6.customizing-the-image/1.changing-common-php-settings.md
similarity index 70%
rename from docs/content/docs/5.customizing-the-image/1.changing-common-php-settings.md
rename to docs/content/docs/6.customizing-the-image/1.changing-common-php-settings.md
index 1a22cb211..4a060d5e6 100644
--- a/docs/content/docs/5.customizing-the-image/1.changing-common-php-settings.md
+++ b/docs/content/docs/6.customizing-the-image/1.changing-common-php-settings.md
@@ -1,25 +1,22 @@
---
head.title: 'Changing common PHP settings - Docker PHP - Server Side Up'
-description: 'Customizing PHP images is as easy as setting an environment variable. So easy your grandma could do it!'
+description: 'Learn how to change common PHP settings with environment variables or your own php.ini file.'
layout: docs
+title: Changing php.ini settings
---
-# Changing common PHP settings
::lead-p
Instead of going through the effort of writing custom scripts or mounting files to change PHP settings, have the power to change common settings with the simplicity of an environment variable.
::
## Common Examples
-All our environment variables are documented and can be found in our [environment variable specification](/docs/reference/environment-variable-specification) documentation.
+All our environment variables are documented and can be found in our environment variable specification documentation.
+
+:u-button{to="/docs/reference/environment-variable-specification" label="Environment Variable Specification" aria-label="Environment Variable Specification" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
Here are a few examples on how you can change common PHP settings.
-::code-panel
----
-label: "Docker Compose: Changing allowed upload size"
----
-```yaml
-version: '3'
+```yml [compose.yml] {4-6}
services:
php:
image: serversideup/php:8.2.12-unit-bookworm
@@ -33,61 +30,42 @@ services:
volumes:
- .:/var/www/html/
```
-::
-::code-panel
----
-label: "Docker CLI: Setting the PHP timezone to New York"
----
-```bash
+You can also adjust environment variables using the Docker CLI.
+
+```bash [Terminal]
docker run -d \
-p 80:8080 \
-v $(pwd):/var/www/html \
-e PHP_DATE_TIMEZONE="America/New_York" \
serversideup/php:8.2.12-fpm-nginx-bookworm
```
-::
## Setting your own php.ini
PHP will read the `php.ini` file from the `/usr/local/etc/php/conf.d/` directory in alphabetical order. This means you can create your own `php.ini` file and mount it to the container to override the default settings.
For example, we can create this file in our project directory:
-::code-panel
----
-label: "zzz-custom-php.ini"
----
-```ini
+```ini [zzz-custom-php.ini]
mysqli.max_persistent = 300
opcache.max_file_size = 10M
opcache.log_verbosity_level = 3
```
-::
Then in our Dockerfile, we can copy this file to the `/usr/local/etc/php/conf.d/` directory:
-::code-panel
----
-label: "Dockerfile: Append to our default configuration"
----
-```dockerfile
+```dockerfile [Dockerfile]
FROM serversideup/php:8.4-fpm-nginx-bookworm
COPY zzz-custom-php.ini /usr/local/etc/php/conf.d/
```
-::
If you prefer to remove the default `php.ini` file, you can do so by adding the following line to your Dockerfile:
-::code-panel
----
-label: "Dockerfile: Remove our default configuration"
----
-```dockerfile
+```dockerfile [Dockerfile]
FROM serversideup/php:8.4-fpm-nginx-bookworm
RUN rm /usr/local/etc/php/conf.d/serversideup-docker-php.ini
COPY zzz-custom-php.ini /usr/local/etc/php/conf.d/
```
-::
## Validating changes
-It's always best to validate your changes by running `php -i` via the command line or using [`phpinfo()`](https://www.php.net/manual/en/function.phpinfo.php).
\ No newline at end of file
+It's always best to validate your changes by running `php -i` via the command line or using [`phpinfo()`](https://www.php.net/manual/en/function.phpinfo.php){target="_blank"}.
\ No newline at end of file
diff --git a/docs/content/docs/6.customizing-the-image/2.installing-additional-php-extensions.md b/docs/content/docs/6.customizing-the-image/2.installing-additional-php-extensions.md
new file mode 100644
index 000000000..85165a062
--- /dev/null
+++ b/docs/content/docs/6.customizing-the-image/2.installing-additional-php-extensions.md
@@ -0,0 +1,115 @@
+---
+head.title: 'Installing additional PHP extensions - Docker PHP - Server Side Up'
+description: 'Learn how to add any PHP extension that you need for your application.'
+layout: docs
+title: Installing PHP extensions
+---
+
+::lead-p
+serversideup/php includes the [`install-php-extensions`](https://github.com/mlocati/docker-php-extension-installer){target="_blank"} tool by default. This tool allows you to install almost any PHP module that you'll need.
+::
+
+## Default extensions
+By default, we include a number of PHP extensions to get you up and running. You can learn more why we have certain defaults and what's all included on our default configurations page.
+
+:u-button{to="/docs/getting-started/default-configurations#default-php-extensions" label="Learn more about default extensions" aria-label="Learn more about default extensions" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## What extensions are supported?
+Since we're using [`install-php-extensions`](https://github.com/mlocati/docker-php-extension-installer){target="_blank"}, we have a wide support of extensions across many versions of PHP. You can find the full list of supported extensions on the project's README.
+
+:u-button{to="https://github.com/mlocati/docker-php-extension-installer#supported-php-extensions" label="View the supported extensions" aria-label="View the supported extensions" size="md" color="primary" variant="outline" target="_blank" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Installing extensions
+Once you have your extensions ready for installation, you need to use `root` permissions to install them. In most cases, the best experience is to use a `Dockerfile` to do this while you package your application in a container.
+
+If you're not familiar with the concept of packaging your application for deployment, we recommend you to read our guide on how to do it.
+
+:u-button{to="/docs/deployment-and-production/packaging-your-app-for-deployment" label="Learn more about packaging your application for deployment" aria-label="Learn more about packaging your application for deployment" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+### Preparing your Dockerfile
+::warning
+**Our images are unprivileged by default.** This means you'll need to switch to `root` to do "root things", then switch back to the `www-data` user. This ensures your container image is hardened against security vulnerabilities.
+::
+
+```dockerfile [Dockerfile]
+# Choose our base image
+FROM serversideup/php:8.4-fpm-nginx
+
+# Switch to root so we can do root things
+USER root
+
+# Install the intl and bcmath extensions with root permissions
+RUN install-php-extensions intl bcmath
+
+# Drop back to our unprivileged user
+USER www-data
+```
+
+## Building images with Docker Compose
+Here's a simple example with Docker Compose that builds an image with the `intl` and `bcmath` extensions.
+
+::code-tree{defaultValue="Dockerfile"}
+
+```dockerfile [Dockerfile]
+# Choose our base image
+FROM serversideup/php:8.4-fpm-nginx
+
+# Switch to root so we can do root things
+USER root
+
+# Install the intl and bcmath extensions with root permissions
+RUN install-php-extensions intl bcmath
+
+# Drop back to our unprivileged user
+USER www-data
+```
+
+```yml [compose.yml]
+services:
+ php:
+ # Use "build" instead of "image"
+ build:
+ # Use the Dockerfile in the current directory
+ context: .
+ dockerfile: Dockerfile
+ # Expose localhost:80 to NGINX's port 8080
+ ports:
+ - 80:8080
+ # Mount current directory to /var/www/html
+ volumes:
+ - ./:/var/www/html
+```
+
+```php [public/index.php]
+
+```
+::
+
+Once we have our project ready, we can bring our container up with:
+
+::tip
+We use the `--build` flag to tell Docker to rebuild the image from scratch. Good practice in development if you're making changes to your Dockerfile.
+::
+
+```bash [Terminal]
+docker compose up --build
+```
+
+## Real-life example showing development to production
+If you're looking for a more realistic example how this looks from development to production, check out our guide below.
+
+:u-button{to="/docs/deployment-and-production/development-to-production" label="Learn more about development to production" aria-label="Learn more about development to production" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Common PHP extensions that you might need
+We compiled a list of extensions for you to reference.
+
+| Extension | Description | Why it's not included by default |
+|-----------|-------------|--------------------------------
+[intl](https://www.php.net/manual/en/intro.intl.php){target="_blank"} | Internationalization functions, [used by Laravel for validating emails](https://laravel.com/docs/10.x/validation#rule-email){target="_blank"} with "DNS" or "spoof" validation. | Our tests showed this module will add about 40 MB of space to the Docker image, so we decided to not include it by default. |
+
+::tip{to="https://github.com/serversideup/docker-php/discussions/new?category=q-a" target="_blank"}
+Don't see the extension you need? Having trouble? [Open a discussion on GitHub â](https://github.com/serversideup/docker-php/discussions/new?category=q-a)
+::
diff --git a/docs/content/docs/6.customizing-the-image/3.adding-your-own-start-up-scripts.md b/docs/content/docs/6.customizing-the-image/3.adding-your-own-start-up-scripts.md
new file mode 100644
index 000000000..90d4ee26c
--- /dev/null
+++ b/docs/content/docs/6.customizing-the-image/3.adding-your-own-start-up-scripts.md
@@ -0,0 +1,156 @@
+---
+head.title: 'Adding your own start up scripts - Docker PHP - Server Side Up'
+description: 'Learn how to use our entrypoint.d directory to customize your container start up experience.'
+layout: docs
+title: Adding Start Up Scripts
+---
+::lead-p
+We provide a few [default entrypoint scripts](/docs/getting-started/default-configurations#default-entrypoint-scripts) to get you going, but sometimes you want to just add your own. We've made it easy to do that with our `entrypoint.d` directory.
+::
+
+## Entrypoint Script Requirements
+::note
+Before you write your entry point script, be aware of the following requirements. Your script should:
+- Be executable (755 permissions)
+- Located in the `/etc/entrypoint.d` directory
+- Have the file extension ending in `.sh`
+::
+::tip
+We recommend writing your script in `/bin/sh` for the best compatibility between Alpine and Debian. If you choose to use `/bin/bash`, your script will only be able to run on Debian-based images.
+::
+
+## Choose your execution order
+Since [we provide default entrypoint scripts](/docs/getting-started/default-configurations#default-entrypoint-scripts), you may want to choose the order in which your scripts are executed. We've made it easy to do that by prefixing your script with a number. The lower the number, the earlier it will be executed.
+
+::tip
+If you want to disable our entrypoint scripts, you can set `DISABLE_DEFAULT_CONFIG` to `true` in your environment variables.
+::
+
+## Long running services
+::note
+Don't use entrypoint scripts for long-running services. You want your services to be monitored and restarted if they crash.
+::
+
+Anything in the `/etc/entrypoint.d` directory are scripts that are intended to run quickly and then move on. If you run a service as an entrypoint script, that service may crash and not be restarted.
+
+Instead, learn about [using S6 overlay](/docs/guide/using-s6-overlay) so your services can be properly initialized and monitored. See the [S6 Overylay project](https://github.com/just-containers/s6-overlay) for more details on how to write your own S6 service.
+
+## Example: Create a custom entrypoint script
+In this example, let's create a `99-my-script.sh` so it executes after all the other default scripts.
+
+::code-tree{defaultValue="Dockerfile"}
+
+```bash [entrypoint.d/99-my-script.sh]
+#!/bin/sh
+echo "đ Hello, world!"
+```
+
+```dockerfile [Dockerfile]
+FROM serversideup/php:8.4-fpm-nginx
+
+# Copy our scripts as executable
+COPY --chmod=755 ./entrypoint.d/ /etc/entrypoint.d/
+```
+
+```yml [compose.yml]
+services:
+ php:
+ build:
+ context: .
+ dockerfile: Dockerfile
+ ports:
+ - 80:8080
+ volumes:
+ - .:/var/www/html
+```
+
+```php [public/index.php]
+
+```
+
+::
+
+In the example above, you can see in the `Dockerfile` we are copying our `entrypoint.d` directory to `/etc/entrypoint.d/` in the container. We're also setting the permissions to `755` so our scripts are executable.
+
+## Running our example
+When we run `docker compose up`, we can confirm our script is executing by checking the logs:
+
+::code-panel
+---
+label: "Output of \"docker compose up\""
+---
+```txt
+php-1 | đ [NOTICE]: Improve PHP performance by setting PHP_OPCACHE_ENABLE=1 (recommended for production).
+php-1 | (init-webserver-config): Processing /etc/nginx/nginx.conf.template â /etc/nginx/nginx.conf...
+php-1 | (init-webserver-config): Processing /etc/nginx/site-opts.d/http.conf.template â /etc/nginx/site-opts.d/http.conf...
+php-1 | (init-webserver-config): Processing /etc/nginx/site-opts.d/https.conf.template â /etc/nginx/site-opts.d/https.conf...
+php-1 | âšī¸ NOTICE (init-webserver-config): Enabling NGINX site with SSL "off"...
+php-1 | đ Hello, world!
+php-1 | [03-Nov-2025 19:35:29] NOTICE: fpm is running, pid 93
+php-1 | [03-Nov-2025 19:35:29] NOTICE: ready to handle connections
+php-1 | HTTP Status Code: 200
+php-1 | â
NGINX + PHP-FPM is running correctly.
+```
+::
+
+You can see our `đ Hello, world!` is executing *after* the initialization of `10-init-unit.sh`.
+
+## Running Custom Artisan Commands
+If you need to run a custom artisan command at start up, you could update your `entrypoint.d/99-my-script.sh` file to look like this:
+
+```bash [entrypoint.d/99-my-script.sh]
+#!/bin/sh
+# Check if the artisan file exists
+if [ -f "$APP_BASE_DIR/artisan" ]; then
+ # Run the custom artisan command
+ php "$APP_BASE_DIR/artisan" my:custom-command
+else
+ # If the artisan file is not found, stop the container
+ echo "â Artisan file not found in $APP_BASE_DIR"
+ exit 1
+fi
+
+# Exit with a success code
+exit 0
+```
+
+#### Best practices for running custom artisan commands
+- Use `/bin/sh` for the best compatibility between Alpine and Debian. If you choose to use `/bin/bash`, your script will only be able to run on Debian-based images.
+- Check to see if the artisan file exists before running the command
+- Exit with a success code
+- Name your file appropriately, so it executes in logic order with the other scripts (see our [default configurations](/docs/getting-started/default-configurations#default-entrypoint-scripts))
+
+You can change the name of your file to whatever you want, but we recommend using a number prefix to ensure it executes in the correct order. For example, if you want to run a command after the default scripts, you could name your file `99-my-command.sh`. If you want to run a command before the default scripts, you could name your file `1-my-command.sh`.
+
+## Advanced Scenarios: S6 Overlay dependencies
+If you want to customize an image that uses S6 Overlay (`fpm-nginx` or `fpm-apache`), you may have an advanced scenario where you have a custom S6 service that needs to be executed after one of our entrypoint scripts. In order to do this, you'll need to move all our scripts from the `/etc/entrypoint.d` directory to the `/etc/s6-overlay/scripts` directory. This would be a very time consuming scenario if you did this manually, but thankfully you can use our `docker-php-serversideup-s6-init` script to do this for you.
+
+```dockerfile [Dockerfile]
+FROM serversideup/php:8.4-fpm-nginx
+
+# Set the user to root for our build steps
+USER root
+
+# If you have your own one-shot scripts, copy them to the entrypoint.d directory
+COPY --chmod=755 ./entrypoint.d/ /etc/entrypoint.d/
+
+# Copy our entrypoint scripts into the S6 Overlay scripts directory
+RUN docker-php-serversideup-s6-init
+
+# If you have your own long running services, copy them to the s6 directory
+COPY --chmod=755 ./my-s6-service/ /etc/s6-overlay/s6-rc.d/my-s6-service/
+
+# Drop back to the non-root user
+USER www-data
+```
+
+In the above file, we're copying our "one-shot" scripts to the `/etc/entrypoint.d` directory and our long running services to the `/etc/s6-overlay` directory. One-shot scripts are scripts that are intended to run quickly and then move on. Long running services are services that are intended to run for a long time and need to be monitored and restarted if they crash.
+
+The magic happens when we run `docker-php-serversideup-s6-init`. This script will move all our scripts from the `/etc/entrypoint.d` directory to the `/etc/s6-overlay/scripts` directory and set the correct dependencies for our S6 services.
+
+You can now reference our script names as dependencies in your own S6 service.
+
+:u-button{to="https://github.com/just-containers/s6-overlay" label="Learn more about S6 Overlay" aria-label="Learn more about S6 Overlay" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500" target="_blank"}
diff --git a/docs/content/docs/7.troubleshooting/1.common-issues.md b/docs/content/docs/7.troubleshooting/1.common-issues.md
new file mode 100644
index 000000000..c9a4b68b4
--- /dev/null
+++ b/docs/content/docs/7.troubleshooting/1.common-issues.md
@@ -0,0 +1,88 @@
+---
+title: Common Issues
+description: 'Solutions to frequently encountered problems when using serversideup/php Docker images.'
+---
+
+## Overview
+
+This guide covers the most common issues users encounter and their solutions. If you don't find your issue here, check out our [Getting Help](/docs/troubleshooting/getting-help) guide for community and professional support options.
+
+## Permission Issues
+
+Permission problems are one of the most common issues when working with Docker containers. They typically manifest as "Permission denied" errors when trying to write files.
+
+### Understanding the Problem
+
+By default, these images run as a non-root user (`www-data`) for security. When your host machine uses a different user ID (UID) or group ID (GID), file permission conflicts can occur.
+
+If your command is failing during build, then you likely need to switch to root to perform root tasks.
+
+```dockerfile [Dockerfile]
+FROM serversideup/php:8.4-fpm-nginx
+
+USER root
+
+# Install system packages
+RUN install-php-extensions intl bcmath
+
+# Switch back to www-data
+USER www-data
+```
+
+::warning
+Always switch back to a non-root user after completing privileged operations. Running containers as root is a security risk.
+::
+
+If your container is failing to run during runtime, then you may have a more advanced permissions issue. See our guide on understanding file permissions.
+
+:u-button{to="/docs/guide/understanding-file-permissions" label="Understanding File Permissions" aria-label="Understanding File Permissions" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Port Already in Use
+
+### Error Message
+
+```
+Error starting xyz service: listen tcp 0.0.0.0:80: bind: address already in use
+```
+
+### Solution
+
+Another process is using the port. Find and stop it, or use a different port:
+
+**Find what's using the port:**
+
+```bash
+# On Linux/macOS
+sudo lsof -i :80
+
+# On Windows
+netstat -ano | findstr :80
+```
+
+**If you must use a different port:**
+
+```yaml [compose.yml] {4-6}
+services:
+ php:
+ image: serversideup/php:8.4-fpm-nginx
+ ports:
+ - "8080:8080" # Use port 8080 instead
+ - "8443:8443"
+```
+
+Access your application at `http://localhost:8080`.
+
+## Getting More Help
+
+If your issue isn't covered here:
+
+1. **Search GitHub Discussions** - Someone may have encountered the same problem
+2. **Check the Documentation** - Review guides specific to your setup
+3. **Ask the Community** - Post in GitHub Discussions or Discord
+4. **Review Container Logs** - Most issues show helpful error messages
+
+:u-button{to="/docs/troubleshooting/getting-help" label="View All Support Options" aria-label="View All Support Options" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+::tip
+When asking for help, always include your image version, `compose.yml`, relevant error messages, and what you've already tried. This helps others help you faster!
+::
diff --git a/docs/content/docs/7.troubleshooting/2.getting-help.md b/docs/content/docs/7.troubleshooting/2.getting-help.md
new file mode 100644
index 000000000..fcd8979cf
--- /dev/null
+++ b/docs/content/docs/7.troubleshooting/2.getting-help.md
@@ -0,0 +1,123 @@
+---
+title: Getting Help
+description: 'Find the support you need - from free community resources to professional consulting services.'
+---
+
+## You're Not Alone
+
+Getting stuck is a normal part of development. Whether you're troubleshooting a configuration issue, planning a complex deployment, or need help with a custom implementation, there are support options available to help you succeed.
+
+This guide will help you find the right resource to get unblocked quickly.
+
+## Free Community Support
+::note
+Want guaranteed response times from the maintainers? View our [Professional Support](#professional-support) options.
+::
+Our community is active, helpful, and welcoming. Most questions can be answered through these free resources:
+
+### GitHub Discussions
+
+**Best for:** General questions, feature requests, and community discussions
+
+Our GitHub Discussions is the most popular place to get help from both the maintainers and the community. It's searchable, so your question might help others in the future.
+
+:u-button{to="https://github.com/serversideup/docker-php/discussions" target="_blank" label="Browse GitHub Discussions" aria-label="Browse GitHub Discussions" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+::tip
+Before posting, search existing discussions - your question might already be answered!
+::
+
+### Discord Community
+
+**Best for:** Quick questions, real-time chat, and community interaction
+
+Join over 3,000+ developers in our Discord server. It's a great place for quick questions, real-time troubleshooting, and connecting with other developers using serversideup/php.
+
+:u-button{to="https://serversideup.net/discord" label="Join Our Discord" aria-label="Join Our Discord" size="md" color="primary" variant="outline" trailing-icon="i-lucide-message-circle" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500" target="_blank"}
+
+::note
+Discord is great for quick questions, but GitHub Discussions is better for complex issues that need detailed troubleshooting or permanent documentation.
+::
+
+### GitHub Issues
+
+**Best for:** Bug reports and specific technical issues with the images
+
+Found a bug or experiencing unexpected behavior? Open a GitHub issue with detailed reproduction steps.
+
+:u-button{to="https://github.com/serversideup/docker-php/issues/new" label="Report an Issue" aria-label="Report an Issue" size="md" color="primary" variant="outline" trailing-icon="i-lucide-bug" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500" target="_blank"}
+
+**When to use GitHub Issues:**
+- The Docker images aren't behaving as documented
+- You've found a security vulnerability
+- You have a specific, reproducible bug
+
+::warning
+Please don't use GitHub Issues for general questions or support requests. Use GitHub Discussions or Discord instead.
+::
+
+
+## How to Ask for Help Effectively
+
+We've compile and entire guide on how to get answers quickly from the community.
+
+:u-button{to="https://serversideup.net/ask-for-help/" label="How to Ask for Help Effectively" aria-label="How to Ask for Help Effectively" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500" target="_blank"}
+
+## Professional Support
+
+Need guaranteed response times, direct access to the maintainers, or help with your specific implementation? We offer professional support options.
+
+### One-Time Questions
+
+**Perfect for:** Specific technical questions or getting unstuck on a particular issue
+
+Schedule a focused session to get expert help with:
+- Docker-specific implementation questions
+- Complex deployment scenarios
+- Performance optimization guidance
+- Security configuration review
+- Custom implementation planning
+
+:u-button{to="https://schedule.serversideup.net/team/serversideup/quick-chat-with-jay" label="Schedule a Session" aria-label="Schedule a Session" size="md" color="primary" variant="solid" trailing-icon="i-lucide-calendar" class="font-bold text-white bg-blue-600 hover:bg-blue-700" target="_blank"}
+
+**What you get:**
+- Direct access to serversideup/php maintainers
+- 1-hour focused troubleshooting or consulting
+- Screen sharing and hands-on help
+- Clear next steps and recommendations
+
+### Ongoing Development & Support
+
+**Perfect for:** Teams needing continuous development support or complex projects
+
+Get dedicated access to senior engineers for ongoing development, deployment assistance, and technical support.
+
+:u-button{to="https://serversideup.net/hire-us/" label="Learn About Retainer Services" aria-label="Learn About Retainer Services" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500" target="_blank"}
+
+**What's included:**
+- đ¨ **Full-Stack Development** - Frontend, backend, and everything in between
+- đī¸ **Application Architecture** - Design scalable, maintainable solutions
+- đ¯ **UI/UX Design** - Beautiful, functional interfaces using Figma
+- đŗ **Docker & DevOps** - Container orchestration, CI/CD pipelines, and automation
+- đĨī¸ **Managed Hosting** - Deploy anywhere (self-hosted or cloud)
+- đ **Database Design** - Optimize for performance and scale
+- đ **Security Hardening** - Production-ready security configurations
+- đą **Mobile App Development** - iOS & Android using modern frameworks
+
+**Key advantages:**
+- **Run Anywhere** - We specialize in both self-hosted infrastructure and cloud deployments (AWS, Google Cloud, DigitalOcean, etc.)
+- **No Vendor Lock-In** - Your infrastructure, your control
+- **Fixed Monthly Pricing** - Predictable costs, no hourly billing surprises
+- **Development-First** - 90%+ of time spent on actual development, not meetings
+- **Complete Stack** - One team handling design, development, deployment, and maintenance
+
+::note
+**Why choose us?** We built serversideup/php and maintain it in production for our own clients. We know these images inside and out because we use them every day for real-world applications.
+::
+
+## We're Here to Help
+
+Whether you choose free community support or professional services, we're committed to your success with serversideup/php. Don't hesitate to reach out - we were all beginners once, and there's no such thing as a "stupid question."
+
+Happy coding! đ
+
diff --git a/docs/content/docs/7.reference/1.environment-variable-specification.md b/docs/content/docs/8.reference/1.environment-variable-specification.md
similarity index 59%
rename from docs/content/docs/7.reference/1.environment-variable-specification.md
rename to docs/content/docs/8.reference/1.environment-variable-specification.md
index 597464177..bd1a53ffd 100644
--- a/docs/content/docs/7.reference/1.environment-variable-specification.md
+++ b/docs/content/docs/8.reference/1.environment-variable-specification.md
@@ -4,12 +4,20 @@ description: 'View the complete reference for environment variables available in
layout: docs
---
-# Environment Variable Specifications
-We like to customize our images on a per app basis using environment variables. Look below to see what variables are available and what their defaults are. You can easily override them in your own docker environments ([see Docker's documentation](https://docs.docker.com/compose/environment-variables/#set-environment-variables-in-containers)).
+::lead-p
+Environment variables are a very powerful way to customize your container. Use the document below to see what options are available to customize without requiring you to mount any custom configuration files.
+::
+Setting environment variables all depends on what method you're using to run your container, but for most cases you might be using Docker Compose.
+
+:u-button{to="https://docs.docker.com/compose/environment-variables/#set-environment-variables-in-containers" target="_blank" label="Learn environment variables work with Docker Compose" aria-label="Learn how environment variables work with Docker Compose" size="md" color="primary" variant="outline" trailing-icon="i-lucide-arrow-right" class="font-bold ring ring-inset ring-blue-600 text-blue-600 hover:ring-blue-500 hover:text-blue-500"}
+
+## Available Environment Variables
**Variable Name**|**Description**|**Used in variation**
:-----:|:-----:|:-----:
`APACHE_DOCUMENT_ROOT` *Default: "/var/www/html/public"*|Sets the directory from which Apache will serve files. (Official docs )|fpm-apache
+`APACHE_HTTP_PORT` *Default: "8080"*|Set the port for HTTP. (Official docs )|fpm-apache
+`APACHE_HTTPS_PORT` *Default: "8443"*|Set the port for HTTPS. (Official docs )|fpm-apache
`APACHE_MAX_CONNECTIONS_PER_CHILD` *Default: "0"*|Sets the limit on the number of connections that an individual child server process will handle.(Official docs )|fpm-apache
`APACHE_MAX_REQUEST_WORKERS` *Default: "150"*|Sets the limit on the number of simultaneous requests that will be served. (Official docs )|fpm-apache
`APACHE_MAX_SPARE_THREADS` *Default: "75"*|Maximum number of idle threads. (Official docs )|fpm-apache
@@ -20,56 +28,97 @@ We like to customize our images on a per app basis using environment variables.
`APACHE_THREAD_LIMIT` *Default: "64"*|Set the maximum configured value for ThreadsPerChild for the lifetime of the Apache httpd process. (Official docs )|fpm-apache
`APACHE_THREADS_PER_CHILD` *Default: "25"*|This directive sets the number of threads created by each child process. (Official docs )|fpm-apache
`APP_BASE_DIR` *Default: "/var/www/html"*|Change this only if you mount your application to a different directory within the container. âšī¸ Be sure to change `NGINX_WEBROOT`, `APACHE_DOCUMENT_ROOT`, `UNIT_WEBROOT`, etc if it applies to your use case as well.|all
+`AUTORUN_DEBUG` *Default: "false"*|Enable debug mode for the Laravel automations. | all
`AUTORUN_ENABLED` *Default: "false"*|Enable or disable all automations. It's advised to set this to `false` in certain CI environments (especially during a composer install). If this is set to `false`, all `AUTORUN_*` behaviors will also be disabled.| all
+`AUTORUN_LARAVEL_OPTIMIZE` *Default: "true"*|Automatically run "php artisan optimize" on container, attempting to `--except` in Laravel > `v11.38.0` (Official docs ) âšī¸ Requires `AUTORUN_ENABLED = true` to run. | all
`AUTORUN_LARAVEL_CONFIG_CACHE` *Default: "true"*|Automatically run "php artisan config:cache" on container start. âšī¸ Requires `AUTORUN_ENABLED = true` to run.| all
`AUTORUN_LARAVEL_EVENT_CACHE` *Default: "true"*|Automatically run "php artisan event:cache" on container start. âšī¸ Requires `AUTORUN_ENABLED = true` to run.| all
`AUTORUN_LARAVEL_MIGRATION` *Default: "true"*|Automatically run `php artisan migrate --force` on container start. âšī¸ Requires `AUTORUN_ENABLED = true` to run.| all
-`AUTORUN_LARAVEL_MIGRATION_ISOLATION` *Default: "false"*|Requires Laravel v9.38.0 or higher and a database that supports table locks. Automatically run `php artisan migrate --force --isolated` on container start. âšī¸ Requires `AUTORUN_ENABLED = true` to run. âšī¸ Does not work with SQLite.| all
+`AUTORUN_LARAVEL_MIGRATION_DATABASE` *Default: null*| Run migrations on a specific database. In the rare case you need to use multiple databases, you can provide a comma-delimited list of connection names (e.g., "mysql,pgsql"). If `null`, it will use the default database connection. âšī¸ Requires `AUTORUN_ENABLED = true` to run.| all
+`AUTORUN_LARAVEL_MIGRATION_FORCE` *Default: "true"*|Force migrations to run in production without confirmation. Set to `false` to disable the `--force` flag. âšī¸ Requires `AUTORUN_ENABLED = true` to run.| all
+`AUTORUN_LARAVEL_MIGRATION_ISOLATION` *Default: "false"*|Requires Laravel v9.38.0 or higher and a database that supports table locks. Automatically run `php artisan migrate --force --isolated` on container start. âšī¸ Requires `AUTORUN_ENABLED = true` to run. âšī¸ Does not work with SQLite. âšī¸ Only works with `AUTORUN_LARAVEL_MIGRATION_MODE = default`.| all
+`AUTORUN_LARAVEL_MIGRATION_MODE` *Default: "default"*|Set the migration mode. Valid options: `default` (runs `php artisan migrate`), `fresh` (runs `php artisan migrate:fresh`), or `refresh` (runs `php artisan migrate:refresh`). âšī¸ Requires `AUTORUN_ENABLED = true` to run. â ī¸ WARNING:`fresh` and `refresh` are destructive and will drop all tables. Only use these in development or testing environments.| all
+`AUTORUN_LARAVEL_MIGRATION_SEED` *Default: "false"*|Automatically seed the database after migrations by adding the `--seed` flag. âšī¸ Requires `AUTORUN_ENABLED = true` to run.| all
+`AUTORUN_LARAVEL_MIGRATION_SKIP_DB_CHECK` *Default: "false"*|Skip the database connection check before running migrations. âšī¸ Requires `AUTORUN_ENABLED = true` to run.| all
`AUTORUN_LARAVEL_MIGRATION_TIMEOUT` *Default: "30"*|The number of seconds to wait for the database to come online before attempting `php artisan migrate`.. âšī¸ Requires `AUTORUN_ENABLED = true` to run.| all
`AUTORUN_LARAVEL_ROUTE_CACHE` *Default: "true"*|Automatically run "php artisan route:cache" on container start. âšī¸ Requires `AUTORUN_ENABLED = true` to run.| all
`AUTORUN_LARAVEL_STORAGE_LINK` *Default: "true"*|Automatically run "php artisan storage:link" on container start. âšī¸ Requires `AUTORUN_ENABLED = true` to run.| all
`AUTORUN_LARAVEL_VIEW_CACHE` *Default: "true"*|Automatically run "php artisan view:cache" on container start. âšī¸ Requires `AUTORUN_ENABLED = true` to run.| all
+`CADDY_ADMIN` *Default: "off"*|Enable Caddy admin interface. (Official docs )|frankenphp
+`CADDY_AUTO_HTTPS` *Default: "off"*|Enable automatic HTTPS. (Official docs )|frankenphp
+`CADDY_GLOBAL_OPTIONS` *Default: ""*|Set global options for the Caddy server. (Official docs )|frankenphp
+`CADDY_HTTP_PORT` *Default: "8080"*|Set the port for HTTP. (Official docs )|frankenphp
+`CADDY_HTTP_SERVER_ADDRESS` *Default: "http://"*|Set the server address for HTTP. (Official docs )|frankenphp
+`CADDY_HTTPS_PORT` *Default: "8443"*|Set the port for HTTPS. (Official docs )|frankenphp
+`CADDY_HTTPS_SERVER_ADDRESS` *Default: "https://"*|Set the server address for HTTPS. (Official docs )|frankenphp
+`CADDY_LOG_FORMAT` *Default: "console"*|Set the format for the Caddy log. (Official docs )|frankenphp
+`CADDY_LOG_OUTPUT` *Default: "stdout"*|Set the output for the Caddy log. (Official docs )|frankenphp
+`CADDY_PHP_SERVER_OPTIONS` *Default: ""*|Set PHP server options for the Caddy server. (Official docs )|frankenphp
+`CADDY_SERVER_EXTRA_DIRECTIVES` *Default: ""*|Set extra directives for the Caddy server. (Official docs )|frankenphp
+`CADDY_SERVER_LOG_LEVEL` *Default: "warn"*|Set the server log level for the Caddy server. This can also be changed with `LOG_OUTPUT_LEVEL`, but `CADDY_SERVER_LOG_LEVEL` takes precedence. (Official docs )|frankenphp
+`CADDY_SERVER_ROOT` *Default: "/var/www/html/public"*|Set the root directory for the Caddy server. (Official docs )|frankenphp
`COMPOSER_ALLOW_SUPERUSER` *Default: "1"*|Disable warning about running as super-user|all
`COMPOSER_HOME` *Default: "/composer"*|The COMPOSER_HOME variable allows you to change the Composer home directory. This is a hidden, global (per-user on the machine) directory that is shared between all projects.|all
`COMPOSER_MAX_PARALLEL_HTTP` *Default: "24"*|Set to an integer to configure how many files can be downloaded in parallel. Composer ships with 12 by default and must be between 1 and 50. If your proxy has issues with concurrency maybe you want to lower this. Increasing it should generally not result in performance gains.|all
`DISABLE_DEFAULT_CONFIG` *Default: "false"*|Get full customization of the image and disable all default configurations and automations.| all
-`HEALTHCHECK_PATH` *Default: "/healthcheck"*|Set the path for the health check endpoint. (Official docs )|all (except `cli`)
-`LOG_OUTPUT_LEVEL` *Default: "warn"*|Set your container output different verbosity levels: debug, info, off |all
+`FRANKENPHP_CONFIG` *Default: ""*|Set the configuration for FrankenPHP. (Official docs )|frankenphp
+`HEALTHCHECK_PATH` *Default: "/healthcheck"*|Set the path for the health check endpoint. (Official docs )|all (except `cli` and `frankenphp`)
+`HEALTHCHECK_SSL_CERTIFICATE_FILE` *Default: "/etc/ssl/healthcheck/localhost.crt"*|Set the path to the SSL certificate for the health check endpoint.| fpm-apache, fpm-nginx, frankenphp
+`HEALTHCHECK_SSL_PRIVATE_KEY_FILE` *Default: "/etc/ssl/healthcheck/localhost.key"*|Set the path to the SSL private key for the health check endpoint.| fpm-apache, fpm-nginx, frankenphp
+`LOG_OUTPUT_LEVEL` *Default:* *"warn" (for all)* *"info" (for frankenphp)*|Set your container output different verbosity levels: debug, warn, info, off |all
+`NGINX_ACCESS_LOG` *Default: "/dev/stdout"*|Set the default output stream for access log.|fpm-nginx
+`NGINX_ERROR_LOG` *Default: "/dev/stderr"*|Set the default output stream for error log.|fpm-nginx
`NGINX_FASTCGI_BUFFERS` *Default: "8 8k"*|Sets the number and size of the buffers used for reading a response from a FastCGI server. (Official Docs )|fpm-nginx
`NGINX_FASTCGI_BUFFER_SIZE` *Default: "8k"*|Sets the size of the buffer used for reading a response from a FastCGI server. (Official Docs )|fpm-nginx
+`NGINX_LISTEN_IP_PROTOCOL` *Default: "all"*|Set the IP protocol for NGINX to listen on. Valid values are "all", "ipv4", and "ipv6". (Official Docs )|fpm-nginx
`NGINX_SERVER_TOKENS` *Default: "off"*|Display NGINX version in responses. (Official Docs )|fpm-nginx
`NGINX_WEBROOT` *Default: "`/var/www/html/public"*|Sets the root directory for requests. (Official Docs )|fpm-nginx
+`NGINX_CLIENT_MAX_BODY_SIZE` *Default: "100M"*|Sets the max body size for requests. (Official Docs *Default: "UTC"*|Control your timezone. (Official Docs )|all
`PHP_DISPLAY_ERRORS` *Default: Off*|Show PHP errors on screen. (Official docs )|all
`PHP_DISPLAY_STARTUP_ERRORS` *Default: Off*|Even when display_errors is on, errors that occur during PHP's startup sequence are not displayed. (Official docs )| all
`PHP_ERROR_LOG` *Default: "/dev/stderr"*|Name of the file where script errors should be logged. . (Official docs )|all
`PHP_ERROR_REPORTING` *Default: "22527"*|Set PHP error reporting level. Must be a number. Use this tool for help. (Official docs )|all
+`PHP_FPM_CHILD_PROCESS_USER` *Default: "www-data"*| â ī¸ Only used if container is running as root. Set the user of the PHP-FPM child processes. (Official docs )|fpm*
+`PHP_FPM_CHILD_PROCESS_GROUP` *Default: "www-data"*| â ī¸ Only used if container is running as root. Set the group of the PHP-FPM child processes. (Official docs )|fpm*
`PHP_FPM_PM_CONTROL` *Defaults: fpm: dynamic fpm-apache: ondemand fpm-nginx: ondemand*|Choose how the process manager will control the number of child processes. (Official docs )|fpm*
`PHP_FPM_PM_MAX_CHILDREN` *Default: "20"*|The number of child processes to be created when pm is set to static and the maximum number of child processes to be created when pm is set to dynamic. (Official docs )|fpm*
+`PHP_FPM_PM_MAX_REQUESTS` *Default: "0"*|The number of requests each child process should execute before respawning. This can be useful to work around memory leaks in 3rd party libraries. (Official docs )|fpm*
`PHP_FPM_PM_MAX_SPARE_SERVERS` *Default: "3"*|The desired maximum number of idle server processes. Used only when pm is set to dynamic. (Official docs )|fpm*
`PHP_FPM_PM_MIN_SPARE_SERVERS` *Default: "1"*|The desired minimum number of idle server processes. Used only when pm is set to dynamic. (Official docs )|fpm*
`PHP_FPM_PM_START_SERVERS` *Default: "2"*|The number of child processes created on startup. Used only when pm is set to dynamic. (Official docs )|fpm*
+`PHP_FPM_PM_STATUS_PATH` *Default: ""*|The path to the PHP-FPM status page. (Official docs )|fpm*
`PHP_FPM_POOL_NAME` *Default: "www"*|Set the name of your PHP-FPM pool (helpful when running multiple sites on a single server).|fpm*
`PHP_FPM_PROCESS_CONTROL_TIMEOUT` *Default: "10s"*|Set the timeout for the process control commands. (Official docs )|fpm*
`PHP_MAX_EXECUTION_TIME` *Default: "99"*|Set the maximum time in seconds a script is allowed to run before it is terminated by the parser. (Official docs )|all
`PHP_MAX_INPUT_TIME` *Default: "-1"*|This sets the maximum time in seconds a script is allowed to parse input data, like POST and GET. Timing begins at the moment PHP is invoked at the server and ends when execution begins. The default setting is -1, which means that max_execution_time is used instead. Set to 0 to allow unlimited time. This directive is hardcoded to -1 for the CLI SAPI by PHP. (Official docs )|all
+`PHP_MAX_INPUT_VARS` *Default: "1000"*|Set the limits for number of input variables (e.g., POST, GET, or COOKIE variables) that PHP will process in a single request. (Official docs )|all
`PHP_MEMORY_LIMIT` *Default: "256M"*|Set the maximum amount of memory in bytes that a script is allowed to allocate. (Official docs )|all
`PHP_OPCACHE_ENABLE` *Default: "0" (to keep developers sane)*|Enable or disable OPcache. â ī¸ This will set **both values** for `opcache.enable` and `opcache.enable_cli`. (Official docs )|all
+`PHP_OPCACHE_ENABLE_FILE_OVERRIDE` *Default: "0"*|Enable or disable file existence override (file_exists, etc.). (Official docs )|all
+`PHP_OPCACHE_FORCE_RESTART_TIMEOUT` *Default: "180"*|The number of seconds to wait for a scheduled restart to begin if the cache isn't active, in seconds. If the timeout is hit, then OPcache assumes that something is wrong and will kill the processes holding locks on the cache to permit a restart. (Official docs )|all
`PHP_OPCACHE_INTERNED_STRINGS_BUFFER` *Default: "8"*|The amount of memory used to store interned strings, in megabytes. (Official docs )|all
+`PHP_OPCACHE_JIT` *Default: "off"*|Enable or disable the JIT compiler. (Official docs )|all
+`PHP_OPCACHE_JIT_BUFFER_SIZE` *Default: "0"*|The amount of shared memory to reserve for compiled JIT code. A zero value disables the JIT. (Official docs )|all
`PHP_OPCACHE_MAX_ACCELERATED_FILES` *Default: "10000"*|The maximum number of keys (scripts) in the OPcache hash table. (Official docs )|all
`PHP_OPCACHE_MEMORY_CONSUMPTION` *Default: "128"*|The amount of memory used by the OPcache engine, in megabytes. (Official docs )|all
`PHP_OPCACHE_REVALIDATE_FREQ` *Default: "2"*|How often the OPcache checks for updates to cached files (in seconds). (Official docs )|all
+`PHP_OPCACHE_SAVE_COMMENTS` *Default: "1"*|Remove comments from OPcache to minify a bit further. Note: any code that depends on PHPDoc annotations can break from this. (Official docs )|all
+`PHP_OPCACHE_VALIDATE_TIMESTAMPS` *Default: "1"*|Whether OPcache checks for changes to files, or requires reload of PHP to revalidate OPcache. (Official docs )|all
`PHP_OPEN_BASEDIR` *Default: "None"* |Limit the files that can be accessed by PHP to the specified directory-tree, including the file itself. `open_basedir` is just an extra safety net, that is in no way comprehensive, and can therefore not be relied upon when security is needed. (Official docs )| all
`PHP_POST_MAX_SIZE` *Default: "100M"*|Sets max size of post data allowed. (Official docs )|all
+`PHP_REALPATH_CACHE_TTL` *Default: "120"*|The duration of time, in seconds for which to cache realpath information for a given file or directory. (Official docs )|all
`PHP_SESSION_COOKIE_SECURE` *Default: 1 (true)*|Specifies whether cookies should only be sent over secure connections. (Official docs )|all
`PHP_UPLOAD_MAX_FILE_SIZE` *Default: "100M"*|The maximum size of an uploaded file. (Official docs )|all
+`PHP_ZEND_DETECT_UNICODE` *Default: ""*|Check for BOM (Byte Order Mark) and see if the file contains valid multibyte characters. This detection is performed before processing of __halt_compiler(). Available only in Zend Multibyte mode. (Official docs )|all
+`PHP_ZEND_MULTIBYTE` *Default: "Off"*|Enable or disable Zend Multibyte. (Official docs )|all
`S6_BEHAVIOUR_IF_STAGE2_FAILS` *Default: "2" (stop the container)*|Determines what the container should do if one of the service scripts fails (Official docs )|fpm-nginx, fpm-apache
`S6_CMD_WAIT_FOR_SERVICES_MAXTIME` *Default: "0"*|The maximum time (in milliseconds) the services could take to bring up before proceeding to CMD executing (Official docs )|fpm-nginx, fpm-apache
`S6_VERBOSITY` *Default: "1"*|Set the verbosity of "S6 Overlay" (the init system these images are based on). The default is "1" (print warnings and errors). The scale goes from 1 to 5, but the output will quickly become very noisy. If you're having issues, start here. You can also customize many other variables. (Official docs )|fpm-nginx, fpm-apache
`SHOW_WELCOME_MESSAGE` *Default: "true"*|Show a helpful welcome message showing container information when the container starts.|all
`SSL_CERTIFICATE_FILE` *Default: "/etc/ssl/private/self-signed-web.crt"*|Path to public certificate file for HTTPS. You must provide this file otherwise a self-signed key pair will be generated for you.|fpm-nginx, fpm-apache
`SSL_MODE` *Default: "off"*|Configure how you would like to handle SSL. This can be "off" (HTTP only), "mixed" (HTTP + HTTPS), or "full" (HTTPS only). If you use HTTP, you may need to also change `PHP_SESSION_COOKIE_SECURE`.|fpm-nginx, fpm-apache, unit
-`SSL_PRIVATE_KEY_FILE` *Default: "/etc/ssl/private/self-signed-web.key"*|Path to private key file for HTTPS. You must provide this file otherwise a self-signed key pair will be generated for you.|fpm-nginx, fpm-apache
+`SSL_PRIVATE_KEY_FILE` *Default: "/etc/ssl/private/self-signed-web.key"*|Path to private key file for HTTPS. You must provide this file otherwise a self-signed key pair will be generated for you.|fpm-nginx, fpm-apache, frankenphp
`UNIT_CERTIFICATE_NAME` *Default: "self-signed-web-bundle"*| Name of your certificate bundle. This is used to configure HTTPS. (Official Docs )| unit
`UNIT_CONFIG_DIRECTORY` *Default: "/etc/unit/config.d"*|Path to the Unit configuration directory. Any *.json, *.js, and *.pem files will be loaded into Unit on initialization.| unit
`UNIT_CONFIG_FILE` *Default: "/etc/unit/config.d/config.json"*|Path to the Unit configuration file. One will be generated automatically by default. (Official Docs )| unit
@@ -77,4 +126,4 @@ We like to customize our images on a per app basis using environment variables.
`UNIT_PROCESSES_MAX` *Default: "20"*|The maximum number of application processes that can be started. (Official Docs )| unit
`UNIT_PROCESSES_SPARE` *Default: "2"*|Minimum number of idle processes that Unit tries to maintain for an app. (Official Docs )| unit
`UNIT_WEBROOT` *Default: "/var/www/html/public"*|Base directory of the appâs file structure. All URI paths are relative to it. (Official Docs )| unit
-`UNIT_MAX_BODY_SIZE` *Default: "104857600"* (100MB) | Sets maximum number of bytes in the body of a clientâs request. (Official docs ) | unit
\ No newline at end of file
+`UNIT_MAX_BODY_SIZE` *Default: "104857600"* (100MB) | Sets maximum number of bytes in the body of a clientâs request. (Official docs ) | unit
diff --git a/docs/content/docs/7.reference/2.command-reference.md b/docs/content/docs/8.reference/2.command-reference.md
similarity index 75%
rename from docs/content/docs/7.reference/2.command-reference.md
rename to docs/content/docs/8.reference/2.command-reference.md
index 14942b9ba..02263e4db 100644
--- a/docs/content/docs/7.reference/2.command-reference.md
+++ b/docs/content/docs/8.reference/2.command-reference.md
@@ -4,7 +4,6 @@ description: 'Learn about all the commands available within the serversideup/php
layout: docs
---
-# Command Reference
::lead-p
We included a few commands in the `/usr/local/bin` directory to help you with your development experience. These commands are available in the `serversideup/php` image.
::
@@ -19,74 +18,57 @@ Since our images are based off the official PHP Docker images, any commands from
## docker-php-serversideup-dep-install-alpine
This command will detect the operating system and install packages if it is an Alpine based system. This is helpful if you're building multiple operating systems from the same Dockerfile.
-::code-panel
----
-label: Example - Installing the `git` package on Alpine
----
-```bash
+
+```bash [Example - Installing the git package on Alpine]
# Usage: docker-php-serversideup-dep-install-alpine [alpine-packages]
docker-php-serversideup-dep-install-alpine git
```
-::
## docker-php-serversideup-dep-install-debian
This command will detect the operating system and install packages if it is a Debian based system. This is helpful if you're building multiple operating systems from the same Dockerfile.
-::code-panel
----
-label: Example - Installing the `git` package on Debian
----
-```bash
+```bash [Example - Installing the git package on Debian]
# Usage: docker-php-serversideup-dep-install-debian [debian-packages]
docker-php-serversideup-dep-install-debian git
```
-::
## docker-php-serversideup-entrypoint
-For our images that **DO NOT use S6 Overlay**, this is our default entrypoint script.
+Our default entrypoint script that is used for all images.
## docker-php-serversideup-install-php-ext-installer
This is an internal helper script to shorten up the syntax for the installation of the PHP extension installer.
-::code-panel
----
-label: Example - Installing the PHP extension installer
----
-```bash
+```bash [Example - Installing the PHP extension installer]
# Usage: docker-php-serversideup-install-php-ext-installer [version]
docker-php-serversideup-install-php-ext-installer 2.2.0
```
-::
## docker-php-serversideup-set-file-permissions
This command is used to set the file permissions of a service in the container. This is useful for development environments where you want to match the user and group ID of the host machine.
[Learn more about working with file permissions â](/docs/guide/understanding-file-permissions)
-::code-panel
----
-label: Example - Setting the file permissions of the NGINX service
----
-```bash
-# Usage: docker-php-serversideup-set-file-permissions --owner USER:GROUP --service SERVICE
-docker-php-serversideup-set-file-permissions --owner 1000:1000 --service nginx
+```bash [Example - Setting the file permissions of the NGINX service]
+# Usage: docker-php-serversideup-set-file-permissions --owner USER:GROUP
+docker-php-serversideup-set-file-permissions --owner 1000:1000
```
-::
+
+The above command will automatically detect the service and update the file permissions accordingly.
## docker-php-serversideup-set-id
This command is used to set the user and group ID of the `www-data` user in the container. This is useful for development environments where you want to match the user and group ID of the host machine.
[Learn more about working with file permissions â](/docs/guide/understanding-file-permissions)
-::code-panel
----
-label: Example - Setting the user and group ID of the `www-data` user
----
-```bash
+```bash [Example - Setting the user and group ID of the www-data user]
# docker-php-serversideup-set-id [username] [uid]:[gid]
docker-php-serversideup-set-id www-data 1000:1000
```
-::
+
+## docker-php-serversideup-s6-init
+This command is used to copy our entrypoint scripts into the S6 Overlay scripts directory. This is useful if you're using S6 Overlay and want to ensure your scripts are executed in the correct order.
+
+[Learn more about using S6 Overlay dependencies â](/docs/customizing-the-image/adding-your-own-start-up-scripts#advanced-scenarios-s6-overlay-dependencies)
## docker-php-serversideup-s6-install
This is a command used at build time to install a specific version of S6 Overlay.
@@ -94,15 +76,10 @@ This is a command used at build time to install a specific version of S6 Overlay
## install-php-extensions
This command is a wrapper around the `docker-php-ext-install` command that comes with the official PHP Docker images. This command allows you to install PHP extensions with a single command.
-[Check out the docker-php-extension-installer project on GitHub â](https://github.com/mlocati/docker-php-extension-installer)
+[Check out the docker-php-extension-installer project on GitHub â](https://github.com/mlocati/docker-php-extension-installer){target="_blank"}
Here's an example of how you can use this command:
-::code-panel
----
-label: Example - Installing the "intl" extension
----
-```bash
+```bash [Example - Installing the "intl" extension]
install-php-extensions intl
-```
-::
\ No newline at end of file
+```
\ No newline at end of file
diff --git a/docs/content/docs/index.md b/docs/content/docs/index.md
new file mode 100644
index 000000000..0c3517392
--- /dev/null
+++ b/docs/content/docs/index.md
@@ -0,0 +1,3 @@
+---
+redirect: /docs/getting-started
+---
\ No newline at end of file
diff --git a/docs/content/index.md b/docs/content/index.md
index 889cc11e7..56e86017f 100644
--- a/docs/content/index.md
+++ b/docs/content/index.md
@@ -1,23 +1,193 @@
---
-layout: marketing
+seo:
+ title: PHP Docker Images (serversideup/php)
+ description: Production-ready PHP Docker images for Laravel, WordPress, and more.
---
-::marketing-hero
-::
-::marketing-grid
-::
+::u-page-hero{class="dark:bg-black"}
+---
+orientation: vertical
+---
+#top
+
+#title
+Supercharge your PHP experience, [in seconds.]{.text-green-500}
-::marketing-optimized
+#description
+Built upon the official PHP images, our production-ready serversideup/php images take your Docker PHP experience to the next level. Enjoy variable-first configurations, nginx-unit variation, native CloudFlare support, and more.
+
+#links
+ :::u-button
+ ---
+ to: /docs/getting-started
+ size: xl
+ trailing-icon: i-lucide-arrow-right
+ class: bg-blue-600 text-white hover:bg-blue-700
+ ---
+ Get started
+ :::
+
+ :::u-button
+ ---
+ icon: i-simple-icons-github
+ color: neutral
+ variant: outline
+ size: xl
+ to: https://github.com/serversideup/docker-php
+ target: _blank
+ ---
+ Star on GitHub
+ :::
+
+#default
+ :::hero-video
+ ---
+ src: https://docker-php-public-assets.serversideup.net/docker-demo.mp4
+ ---
::
-::marketing-dev-to-prod
+::u-page-section{class="dark:bg-black"}
+#title
+These images [give a lot more]{.text-pink-500} than other PHP Docker Images.
+
+#features
+ :::u-page-card
+ ---
+ icon: i-features-rocket-square
+ orientation: vertical
+ ---
+ #title
+ Production Ready
+
+ #description
+ Built to be performant and secure to exist on the wild web.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-heart-square
+ orientation: vertical
+ ---
+ #title
+ Native Health Checks
+
+ #description
+ Be 100% confident your application is actually running.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-lightning-square
+ orientation: vertical
+ ---
+ #title
+ High Performance
+
+ #description
+ Get the easiest experience for fine tuning performance.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-stars-square
+ orientation: vertical
+ ---
+ #title
+ Customizable & Flexible
+
+ #description
+ Environment variables make customizations a breeze.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-cloudflare-square
+ orientation: vertical
+ ---
+ #title
+ Native CloudFlare Support
+
+ #description
+ Get real IP addresses from visitors from trusted proxies.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-php-square
+ orientation: vertical
+ ---
+ #title
+ Based on official PHP
+
+ #description
+ Upgrade from the official PHP docker images with confidence.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-frankenphp-square
+ orientation: vertical
+ ---
+ #title
+ FrankenPHP
+
+ #description
+ Ditch FPM for a modern way of running PHP. Designed for containers from the ground up.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-logging-square
+ orientation: vertical
+ ---
+ #title
+ Unified Logging
+
+ #description
+ All logs are directed to STDOUT & STDERR for centralized output.
+ :::
+
+ :::u-page-card
+ ---
+ icon: i-features-heartbeat-square
+ orientation: vertical
+ ---
+ #title
+ FPM + S6 Overlay
+
+ #description
+ Our FPM-Apache & FPM-NGINX images use this intelligent init system.
+ :::
::
-::marketing-testimonials
+::u-page-section{class="dark:bg-black"}
+#title
+Highly optimized for Laravel đĒ
+
+#description
+Horizon, queues, tasks, storage linking, migrations - these images handle it all.
+
+#default
+ :::hero-video
+ ---
+ src: https://docker-php-public-assets.serversideup.net/docker-laravel-horizon-demo.mp4
+ ---
::
-::landing-signup
+::u-page-section
+#title
+Built to run from Dev â Prod
+
+#description
+Get the full benefits of containerization. Stop using containers in dev only. Works with Kubernetes, Docker Swarm and more.
::
-::marketing-follow-along
-::
\ No newline at end of file
+:get-started
+
+:testimonials
+
+:sponsors
+
+:landing-signup
+
+:follow-along
\ No newline at end of file
diff --git a/docs/eslint.config.mjs b/docs/eslint.config.mjs
new file mode 100644
index 000000000..934c3a1d5
--- /dev/null
+++ b/docs/eslint.config.mjs
@@ -0,0 +1,6 @@
+// @ts-check
+import withNuxt from './.nuxt/eslint.config.mjs'
+
+export default withNuxt(
+ // Your custom configs here
+)
diff --git a/docs/layouts/docs.vue b/docs/layouts/docs.vue
deleted file mode 100644
index 3553bdc02..000000000
--- a/docs/layouts/docs.vue
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/layouts/marketing.vue b/docs/layouts/marketing.vue
deleted file mode 100644
index c9be32640..000000000
--- a/docs/layouts/marketing.vue
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/docs/middleware/directory.ts b/docs/middleware/directory.ts
deleted file mode 100644
index f64235656..000000000
--- a/docs/middleware/directory.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-export default defineNuxtRouteMiddleware(( to, from ) => {
- let redirectPath = to.path.endsWith('/') ? to.path.slice(0, -1) : to.path;
-
- switch( redirectPath ){
- case '/docs/getting-started':
- return navigateTo( redirectPath+'/these-images-vs-others', { replace: true } );
- break;
- case '/docs/guide':
- return navigateTo( redirectPath+'/choosing-the-right-image', { replace: true } );
- break;
- case '/docs/reference':
- return navigateTo( redirectPath+'/environment-variable-specification', { replace: true } );
- break;
- }
-})
\ No newline at end of file
diff --git a/docs/nuxt.config.ts b/docs/nuxt.config.ts
index acecb5b3d..e4d557db7 100644
--- a/docs/nuxt.config.ts
+++ b/docs/nuxt.config.ts
@@ -1,87 +1,163 @@
-import tailwindTypography from '@tailwindcss/typography'
-
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: [
- 'nuxt-og-image',
- '@nuxtjs/color-mode',
+ '@nuxt/eslint',
+ '@nuxt/image',
+ '@nuxt/ui',
'@nuxt/content',
'@nuxtjs/plausible',
- '@nuxtjs/tailwindcss',
- '@vueuse/nuxt'
+ '@nuxtjs/sitemap',
+ '@vueuse/nuxt',
+ 'nuxt-og-image',
+ 'nuxt-llms',
+ 'nuxt-schema-org'
],
- content: {
- documentDriven: true,
+ devtools: {
+ enabled: true
+ },
- experimental: {
- search: {
- indexed: true
- }
- },
+ css: ['~/assets/css/main.css'],
- markdown: {
- tags: {
- h2: 'AppHeading2',
- h3: 'AppHeading3',
- h4: 'AppHeading4'
+ content: {
+ build: {
+ markdown: {
+ highlight: {
+ theme: 'github-dark',
+ langs: [
+ 'jinja',
+ 'bash',
+ 'diff',
+ 'dockerfile',
+ 'nginx',
+ 'php',
+ ]
+ },
+ toc: {
+ searchDepth: 2
+ }
}
- },
-
- highlight: {
- theme: {
- // Default theme (same as single string)
- default: 'github-dark',
- // Theme used if `html.dark`
- dark: 'github-dark',
- // Theme used if `html.sepia`
- sepia: 'monokai'
- },
-
- preload: [
- 'dockerfile',
- 'ini',
- 'php'
- ]
- },
+ }
},
- colorMode: {
- classSuffix: ''
- },
+ compatibilityDate: '2024-07-11',
nitro: {
prerender: {
routes: [
- '/sitemap.xml',
- '/api/search.json'
- ]
+ '/'
+ ],
+ crawlLinks: true,
+ autoSubfolderIndex: false
}
},
- ogImage: {
- componentDirs: ['~/components/Global/OgImage'],
+ eslint: {
+ config: {
+ stylistic: {
+ commaDangle: 'never',
+ braceStyle: '1tbs'
+ }
+ }
+ },
+
+ icon: {
+ provider: 'iconify',
+ customCollections: [
+ {
+ prefix: 'features',
+ dir: './app/assets/icons/features'
+ },
+ {
+ prefix: 'hosts',
+ dir: './app/assets/icons/hosts'
+ },
+ {
+ prefix: 'services',
+ dir: './app/assets/icons/services'
+ }
+ ]
},
plausible: {
apiHost: 'https://a.521dimensions.com'
},
- runtimeConfig: {
- public: {
- basePath: process.env.NUXT_APP_BASE_URL || '/',
- domain: process.env.TOP_LEVEL_DOMAIN
- }
+ llms: {
+ domain: 'https://serversideup.net/open-source/docker-php/',
+ title: 'PHP Docker Images (serversideup/php)',
+ description: 'Production-ready PHP Docker images for Laravel, WordPress, and more.',
+ full: {
+ title: 'PHP Docker Images (serversideup/php) - Full Documentation',
+ description: 'Production-ready PHP Docker images for Laravel, WordPress, and more.'
+ },
+ sections: [
+ {
+ title: 'Getting Started',
+ contentCollection: 'docs',
+ contentFilters: [
+ { field: 'path', operator: 'LIKE', value: '/docs/getting-started%' }
+ ]
+ },
+ {
+ title: 'Image Variations',
+ contentCollection: 'docs',
+ contentFilters: [
+ { field: 'path', operator: 'LIKE', value: '/docs/image-variations%' }
+ ]
+ },
+ {
+ title: 'Framework Guides',
+ contentCollection: 'docs',
+ contentFilters: [
+ { field: 'path', operator: 'LIKE', value: '/docs/framework-guides%' }
+ ]
+ },
+ {
+ title: 'Deployment and Production',
+ contentCollection: 'docs',
+ contentFilters: [
+ { field: 'path', operator: 'LIKE', value: '/docs/deployment-and-production%' }
+ ]
+ },
+ {
+ title: 'Advanced Guides',
+ contentCollection: 'docs',
+ contentFilters: [
+ { field: 'path', operator: 'LIKE', value: '/docs/guide%' }
+ ]
+ },
+ {
+ title: 'Customizing The Image',
+ contentCollection: 'docs',
+ contentFilters: [
+ { field: 'path', operator: 'LIKE', value: '/docs/customizing-the-image%' }
+ ]
+ },
+ {
+ title: 'Troubleshooting',
+ contentCollection: 'docs',
+ contentFilters: [
+ { field: 'path', operator: 'LIKE', value: '/docs/troubleshooting%' }
+ ]
+ },
+ {
+ title: 'Reference',
+ contentCollection: 'docs',
+ contentFilters: [
+ { field: 'path', operator: 'LIKE', value: '/docs/reference%' }
+ ]
+ }
+ ]
},
site: {
- url: process.env.BASE_PATH,
+ url: process.env.NUXT_SITE_URL || 'https://serversideup.net/open-source/docker-php/',
+ name: process.env.NUXT_SITE_NAME || 'PHP Docker Images (serversideup/php)',
+ env: process.env.NUXT_SITE_ENV || 'production',
},
- tailwindcss: {
- config: {
- plugins: [tailwindTypography]
- },
- cssPath: '~/assets/css/tailwind.css',
+ ui: {
+ colorMode: false
}
})
diff --git a/docs/package.json b/docs/package.json
index 694537baf..fbfe41629 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -1,29 +1,41 @@
{
+ "name": "documentation-template",
"private": true,
+ "type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
- "postinstall": "nuxt prepare"
+ "postinstall": "nuxt prepare",
+ "lint": "eslint .",
+ "typecheck": "nuxt typecheck"
+ },
+ "dependencies": {
+ "@iconify-json/lucide": "^1.2.69",
+ "@iconify-json/simple-icons": "^1.2.54",
+ "@iconify-json/vscode-icons": "^1.2.32",
+ "@nuxt/content": "^3.7.1",
+ "@nuxt/image": "^1.11.0",
+ "@nuxt/ui": "^4.0.1",
+ "@nuxtjs/plausible": "^2.0.1",
+ "@nuxtjs/sitemap": "^7.4.7",
+ "@vueuse/core": "^14.0.0",
+ "@vueuse/nuxt": "^14.0.0",
+ "better-sqlite3": "^12.4.1",
+ "nuxt": "^4.1.3",
+ "nuxt-llms": "0.1.3",
+ "nuxt-og-image": "^5.1.11",
+ "nuxt-schema-org": "^5.0.9"
},
"devDependencies": {
- "@headlessui/vue": "^1.7.8",
- "@nuxtjs/color-mode": "^3.2.0",
- "@nuxtjs/plausible": "^0.2.0",
- "@nuxtjs/tailwindcss": "^6.11.3",
- "@tailwindcss/typography": "^0.5.9",
- "@vueuse/core": "^10.7.2",
- "@vueuse/nuxt": "^10.7.2",
- "nuxt-og-image": "^2.2.4",
- "nuxt-site-config": "^1.6.6",
- "nuxt-site-config-kit": "^1.6.6",
- "sitemap": "^7.1.1",
- "surge": "^0.23.1"
+ "@nuxt/eslint": "^1.9.0",
+ "eslint": "^9.37.0",
+ "typescript": "^5.9.3",
+ "vue-tsc": "^3.1.1"
},
- "dependencies": {
- "@heroicons/vue": "^2.1.3",
- "@nuxt/content": "^2.12.1",
- "nuxt": "^3.11.2"
- }
+ "resolutions": {
+ "unimport": "4.1.1"
+ },
+ "packageManager": "yarn@1.22.22"
}
diff --git a/docs/public/apple-touch-icon.png b/docs/public/apple-touch-icon.png
new file mode 100644
index 000000000..8feea9434
Binary files /dev/null and b/docs/public/apple-touch-icon.png differ
diff --git a/docs/public/favicon-96x96.png b/docs/public/favicon-96x96.png
new file mode 100644
index 000000000..f9bcececb
Binary files /dev/null and b/docs/public/favicon-96x96.png differ
diff --git a/docs/public/favicon.ico b/docs/public/favicon.ico
new file mode 100644
index 000000000..398ce56c2
Binary files /dev/null and b/docs/public/favicon.ico differ
diff --git a/docs/public/favicon.svg b/docs/public/favicon.svg
new file mode 100644
index 000000000..a4ff6de20
--- /dev/null
+++ b/docs/public/favicon.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/public/images/docs/container-layers.png b/docs/public/images/docs/container-layers.png
new file mode 100644
index 000000000..1739aa34d
Binary files /dev/null and b/docs/public/images/docs/container-layers.png differ
diff --git a/docs/public/images/docs/docker-layers.png b/docs/public/images/docs/docker-layers.png
new file mode 100644
index 000000000..76526583f
Binary files /dev/null and b/docs/public/images/docs/docker-layers.png differ
diff --git a/docs/public/images/docs/php-info-changes-version-and-server.png b/docs/public/images/docs/php-info-changes-version-and-server.png
new file mode 100644
index 000000000..5a19f316f
Binary files /dev/null and b/docs/public/images/docs/php-info-changes-version-and-server.png differ
diff --git a/docs/public/images/docs/php-info-with-changes-options.png b/docs/public/images/docs/php-info-with-changes-options.png
new file mode 100644
index 000000000..03cb819a2
Binary files /dev/null and b/docs/public/images/docs/php-info-with-changes-options.png differ
diff --git a/docs/public/images/docs/php-info.png b/docs/public/images/docs/php-info.png
new file mode 100644
index 000000000..c2f4c0740
Binary files /dev/null and b/docs/public/images/docs/php-info.png differ
diff --git a/docs/public/images/docs/reverse-proxy-ssl-zerodowntime.png b/docs/public/images/docs/reverse-proxy-ssl-zerodowntime.png
new file mode 100644
index 000000000..6ab2ce8a5
Binary files /dev/null and b/docs/public/images/docs/reverse-proxy-ssl-zerodowntime.png differ
diff --git a/docs/public/images/docs/running-php-container.png b/docs/public/images/docs/running-php-container.png
new file mode 100644
index 000000000..763735848
Binary files /dev/null and b/docs/public/images/docs/running-php-container.png differ
diff --git a/docs/public/images/favicon/android-chrome-192x192.png b/docs/public/images/favicon/android-chrome-192x192.png
deleted file mode 100644
index 9329b9c67..000000000
Binary files a/docs/public/images/favicon/android-chrome-192x192.png and /dev/null differ
diff --git a/docs/public/images/favicon/android-chrome-512x512.png b/docs/public/images/favicon/android-chrome-512x512.png
deleted file mode 100644
index 8ec74afd9..000000000
Binary files a/docs/public/images/favicon/android-chrome-512x512.png and /dev/null differ
diff --git a/docs/public/images/favicon/apple-touch-icon.png b/docs/public/images/favicon/apple-touch-icon.png
deleted file mode 100644
index 994203bd8..000000000
Binary files a/docs/public/images/favicon/apple-touch-icon.png and /dev/null differ
diff --git a/docs/public/images/favicon/browserconfig.xml b/docs/public/images/favicon/browserconfig.xml
deleted file mode 100644
index b3930d0f0..000000000
--- a/docs/public/images/favicon/browserconfig.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
- #da532c
-
-
-
diff --git a/docs/public/images/favicon/favicon-16x16.png b/docs/public/images/favicon/favicon-16x16.png
deleted file mode 100644
index ae1d9b333..000000000
Binary files a/docs/public/images/favicon/favicon-16x16.png and /dev/null differ
diff --git a/docs/public/images/favicon/favicon-32x32.png b/docs/public/images/favicon/favicon-32x32.png
deleted file mode 100644
index f55ca8868..000000000
Binary files a/docs/public/images/favicon/favicon-32x32.png and /dev/null differ
diff --git a/docs/public/images/favicon/favicon.ico b/docs/public/images/favicon/favicon.ico
deleted file mode 100644
index 0f51d3c32..000000000
Binary files a/docs/public/images/favicon/favicon.ico and /dev/null differ
diff --git a/docs/public/images/favicon/mstile-150x150.png b/docs/public/images/favicon/mstile-150x150.png
deleted file mode 100644
index 74261fc73..000000000
Binary files a/docs/public/images/favicon/mstile-150x150.png and /dev/null differ
diff --git a/docs/public/images/favicon/safari-pinned-tab.svg b/docs/public/images/favicon/safari-pinned-tab.svg
deleted file mode 100644
index 7ef2d4694..000000000
--- a/docs/public/images/favicon/safari-pinned-tab.svg
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-Created by potrace 1.14, written by Peter Selinger 2001-2017
-
-
-
-
-
diff --git a/docs/public/images/favicon/site.webmanifest b/docs/public/images/favicon/site.webmanifest
deleted file mode 100644
index b20abb7cb..000000000
--- a/docs/public/images/favicon/site.webmanifest
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "name": "",
- "short_name": "",
- "icons": [
- {
- "src": "/android-chrome-192x192.png",
- "sizes": "192x192",
- "type": "image/png"
- },
- {
- "src": "/android-chrome-512x512.png",
- "sizes": "512x512",
- "type": "image/png"
- }
- ],
- "theme_color": "#ffffff",
- "background_color": "#ffffff",
- "display": "standalone"
-}
diff --git a/docs/public/images/php-docker-logo.svg b/docs/public/images/php-docker-logo.svg
new file mode 100644
index 000000000..bd9af0f04
--- /dev/null
+++ b/docs/public/images/php-docker-logo.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/public/images/placeholder-hero-video.png b/docs/public/images/placeholder-hero-video.png
deleted file mode 100644
index a31dcd790..000000000
Binary files a/docs/public/images/placeholder-hero-video.png and /dev/null differ
diff --git a/docs/public/images/placeholder-optimized-video.png b/docs/public/images/placeholder-optimized-video.png
deleted file mode 100644
index 7748ab58c..000000000
Binary files a/docs/public/images/placeholder-optimized-video.png and /dev/null differ
diff --git a/docs/public/site.webmanifest b/docs/public/site.webmanifest
new file mode 100644
index 000000000..589b46c52
--- /dev/null
+++ b/docs/public/site.webmanifest
@@ -0,0 +1,21 @@
+{
+ "name": "Docker PHP",
+ "short_name": "Docker PHP",
+ "icons": [
+ {
+ "src": "/web-app-manifest-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png",
+ "purpose": "maskable"
+ },
+ {
+ "src": "/web-app-manifest-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png",
+ "purpose": "maskable"
+ }
+ ],
+ "theme_color": "#000000",
+ "background_color": "#000000",
+ "display": "standalone"
+}
\ No newline at end of file
diff --git a/docs/public/web-app-manifest-192x192.png b/docs/public/web-app-manifest-192x192.png
new file mode 100644
index 000000000..f6d3ccd3a
Binary files /dev/null and b/docs/public/web-app-manifest-192x192.png differ
diff --git a/docs/public/web-app-manifest-512x512.png b/docs/public/web-app-manifest-512x512.png
new file mode 100644
index 000000000..3731db278
Binary files /dev/null and b/docs/public/web-app-manifest-512x512.png differ
diff --git a/docs/renovate.json b/docs/renovate.json
new file mode 100644
index 000000000..4a3a92c11
--- /dev/null
+++ b/docs/renovate.json
@@ -0,0 +1,13 @@
+{
+ "extends": [
+ "github>nuxt/renovate-config-nuxt"
+ ],
+ "lockFileMaintenance": {
+ "enabled": true
+ },
+ "packageRules": [{
+ "matchDepTypes": ["resolutions"],
+ "enabled": false
+ }],
+ "postUpdateOptions": ["yarnDedupe"]
+}
\ No newline at end of file
diff --git a/docs/server/api/search.json.get.ts b/docs/server/api/search.json.get.ts
deleted file mode 100644
index 0df4f9dcd..000000000
--- a/docs/server/api/search.json.get.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { serverQueryContent } from '#content/server'
-
-export default eventHandler((event) => {
- return serverQueryContent(event).where({ _type: 'markdown', navigation: { $ne: false } }).find()
-})
\ No newline at end of file
diff --git a/docs/server/routes/raw/[...slug].md.get.ts b/docs/server/routes/raw/[...slug].md.get.ts
new file mode 100644
index 000000000..0bdd7966c
--- /dev/null
+++ b/docs/server/routes/raw/[...slug].md.get.ts
@@ -0,0 +1,27 @@
+import { withLeadingSlash } from 'ufo'
+import { stringify } from 'minimark/stringify'
+import { queryCollection } from '@nuxt/content/nitro'
+import type { Collections } from '@nuxt/content'
+
+export default eventHandler(async (event) => {
+ const slug = getRouterParams(event)['slug.md']
+ if (!slug?.endsWith('.md')) {
+ throw createError({ statusCode: 404, statusMessage: 'Page not found', fatal: true })
+ }
+
+ const path = withLeadingSlash(slug.replace('.md', ''))
+
+ const page = await queryCollection(event, 'docs' as keyof Collections).path(path).first()
+ if (!page) {
+ throw createError({ statusCode: 404, statusMessage: 'Page not found', fatal: true })
+ }
+
+ // Add title and description to the top of the page if missing
+ if (page.body.value[0]?.[0] !== 'h1') {
+ page.body.value.unshift(['blockquote', {}, page.description])
+ page.body.value.unshift(['h1', {}, page.title])
+ }
+
+ setHeader(event, 'Content-Type', 'text/markdown; charset=utf-8')
+ return stringify({ ...page.body, type: 'minimark' }, { format: 'markdown/html' })
+})
diff --git a/docs/server/routes/sitemap.xml.ts b/docs/server/routes/sitemap.xml.ts
deleted file mode 100644
index 009f962f0..000000000
--- a/docs/server/routes/sitemap.xml.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-import { serverQueryContent } from '#content/server'
-import { SitemapStream, streamToPromise } from 'sitemap'
-export default defineEventHandler(async (event) => {
- // Fetch all documents
- const docs = await serverQueryContent(event).find()
- const sitemap = new SitemapStream({
- hostname: 'https://serversideup.net'
- })
-
- for (const doc of docs) {
- sitemap.write({
- url: '/open-source/docker-php'+doc._path,
- changefreq: 'monthly'
- })
- }
-
-
- sitemap.end()
- return streamToPromise(sitemap)
-})
\ No newline at end of file
diff --git a/docs/tailwind.config.js b/docs/tailwind.config.js
deleted file mode 100644
index 9ca67cb31..000000000
--- a/docs/tailwind.config.js
+++ /dev/null
@@ -1,60 +0,0 @@
-const defaultTheme = require('tailwindcss/defaultTheme')
-
-/** @type {import('tailwindcss').Config} */
-module.exports = {
- darkMode: "class",
- theme: {
- fontSize: {
- '2xs': ['0.75rem', { lineHeight: '1.25rem' }],
- xs: ['0.8125rem', { lineHeight: '1.5rem' }],
- sm: ['0.875rem', { lineHeight: '1.5rem' }],
- base: ['1rem', { lineHeight: '1.75rem' }],
- lg: ['1.125rem', { lineHeight: '1.75rem' }],
- xl: ['1.25rem', { lineHeight: '1.75rem' }],
- '2xl': ['1.5rem', { lineHeight: '2rem' }],
- '3xl': ['1.875rem', { lineHeight: '2.25rem' }],
- '4xl': ['2.25rem', { lineHeight: '2.5rem' }],
- '5xl': ['3rem', { lineHeight: '1' }],
- '6xl': ['3.75rem', { lineHeight: '1' }],
- '7xl': ['4.5rem', { lineHeight: '1' }],
- '8xl': ['6rem', { lineHeight: '1' }],
- '9xl': ['8rem', { lineHeight: '1' }],
- },
- typography: require('./typography'),
- extend: {
- boxShadow: {
- glow: '0 0 4px rgb(0 0 0 / 0.1)',
- },
- colors: {
- link: '#3B82F6'
- },
- fontFamily: {
- 'inter': ['Inter', 'sans-serif']
- },
- maxWidth: {
- lg: '33rem',
- '2xl': '40rem',
- '3xl': '50rem',
- '5xl': '66rem',
- },
- opacity: {
- 1: '0.01',
- 2.5: '0.025',
- 7.5: '0.075',
- 15: '0.15',
- }
- }
- },
- plugins: [],
- content: [
- `/components/**/*.{vue,js,ts}`,
- `/layouts/**/*.vue`,
- `/pages/**/*.vue`,
- `/composables/**/*.{js,ts}`,
- `/plugins/**/*.{js,ts}`,
- `/App.{js,ts,vue}`,
- `/app.{js,ts,vue}`,
- `/Error.{js,ts,vue}`,
- `/error.{js,ts,vue}`
- ],
-}
\ No newline at end of file
diff --git a/docs/typography.js b/docs/typography.js
deleted file mode 100644
index 0566325ef..000000000
--- a/docs/typography.js
+++ /dev/null
@@ -1,360 +0,0 @@
-module.exports = ({ theme }) => ({
- DEFAULT: {
- css: {
- '--tw-prose-body': theme('colors.zinc.700'),
- '--tw-prose-headings': theme('colors.white'),
- '--tw-prose-links': theme('colors.link'),
- '--tw-prose-links-hover': theme('colors.link'),
- '--tw-prose-links-underline': theme('colors.link / 0.3'),
- '--tw-prose-bold': theme('colors.zinc.900'),
- '--tw-prose-counters': theme('colors.zinc.500'),
- '--tw-prose-bullets': theme('colors.zinc.300'),
- '--tw-prose-hr': theme('colors.zinc.900 / 0.05'),
- '--tw-prose-quotes': theme('colors.zinc.900'),
- '--tw-prose-quote-borders': theme('colors.zinc.200'),
- '--tw-prose-captions': theme('colors.zinc.500'),
- '--tw-prose-code': theme('colors.zinc.900'),
- '--tw-prose-code-bg': theme('colors.zinc.100'),
- '--tw-prose-code-ring': theme('colors.zinc.300'),
- '--tw-prose-th-borders': theme('colors.zinc.300'),
- '--tw-prose-td-borders': theme('colors.zinc.200'),
-
- '--tw-prose-invert-body': theme('colors.zinc.400'),
- '--tw-prose-invert-headings': theme('colors.white'),
- '--tw-prose-invert-links': theme('colors.link'),
- '--tw-prose-invert-links-hover': theme('colors.link'),
- '--tw-prose-invert-links-underline': theme('colors.link / 0.3'),
- '--tw-prose-invert-bold': theme('colors.white'),
- '--tw-prose-invert-counters': theme('colors.zinc.400'),
- '--tw-prose-invert-bullets': theme('colors.zinc.600'),
- '--tw-prose-invert-hr': theme('colors.white / 0.05'),
- '--tw-prose-invert-quotes': theme('colors.zinc.100'),
- '--tw-prose-invert-quote-borders': theme('colors.zinc.700'),
- '--tw-prose-invert-captions': theme('colors.zinc.400'),
- '--tw-prose-invert-code': theme('colors.white'),
- '--tw-prose-invert-code-bg': theme('colors.zinc.700 / 0.15'),
- '--tw-prose-invert-code-ring': theme('colors.white / 0.1'),
- '--tw-prose-invert-th-borders': theme('colors.zinc.600'),
- '--tw-prose-invert-td-borders': theme('colors.zinc.700'),
-
- // Base
- color: 'var(--tw-prose-body)',
- fontSize: theme('fontSize.sm')[0],
- lineHeight: theme('lineHeight.7'),
-
- // Layout
- '> *': {
- maxWidth: theme('maxWidth.2xl'),
- marginLeft: 'auto',
- marginRight: 'auto',
- '@screen lg': {
- maxWidth: theme('maxWidth.3xl'),
- marginLeft: `calc(50% - min(50%, ${theme('maxWidth.lg')}))`,
- marginRight: `calc(50% - min(50%, ${theme('maxWidth.lg')}))`,
- },
- },
-
- // Text
- p: {
- marginTop: theme('spacing.6'),
- marginBottom: theme('spacing.6'),
- },
- '[class~="lead"]': {
- fontSize: theme('fontSize.base')[0],
- ...theme('fontSize.base')[1],
- },
-
- // Lists
- ol: {
- listStyleType: 'decimal',
- marginTop: theme('spacing.5'),
- marginBottom: theme('spacing.5'),
- paddingLeft: '1.625rem',
- },
- 'ol[type="A"]': {
- listStyleType: 'upper-alpha',
- },
- 'ol[type="a"]': {
- listStyleType: 'lower-alpha',
- },
- 'ol[type="A" s]': {
- listStyleType: 'upper-alpha',
- },
- 'ol[type="a" s]': {
- listStyleType: 'lower-alpha',
- },
- 'ol[type="I"]': {
- listStyleType: 'upper-roman',
- },
- 'ol[type="i"]': {
- listStyleType: 'lower-roman',
- },
- 'ol[type="I" s]': {
- listStyleType: 'upper-roman',
- },
- 'ol[type="i" s]': {
- listStyleType: 'lower-roman',
- },
- 'ol[type="1"]': {
- listStyleType: 'decimal',
- },
- ul: {
- listStyleType: 'disc',
- marginTop: theme('spacing.5'),
- marginBottom: theme('spacing.5'),
- paddingLeft: '1.625rem',
- },
- li: {
- marginTop: theme('spacing.2'),
- marginBottom: theme('spacing.2'),
- },
- ':is(ol, ul) > li': {
- paddingLeft: theme('spacing[1.5]'),
- },
- 'ol > li::marker': {
- fontWeight: '400',
- color: 'var(--tw-prose-counters)',
- },
- 'ul > li::marker': {
- color: 'var(--tw-prose-bullets)',
- },
- '> ul > li p': {
- marginTop: theme('spacing.3'),
- marginBottom: theme('spacing.3'),
- },
- '> ul > li > *:first-child': {
- marginTop: theme('spacing.5'),
- },
- '> ul > li > *:last-child': {
- marginBottom: theme('spacing.5'),
- },
- '> ol > li > *:first-child': {
- marginTop: theme('spacing.5'),
- },
- '> ol > li > *:last-child': {
- marginBottom: theme('spacing.5'),
- },
- 'ul ul, ul ol, ol ul, ol ol': {
- marginTop: theme('spacing.3'),
- marginBottom: theme('spacing.3'),
- },
-
- // Horizontal rules
- hr: {
- borderColor: 'var(--tw-prose-hr)',
- borderTopWidth: 1,
- marginTop: theme('spacing.16'),
- marginBottom: theme('spacing.16'),
- maxWidth: 'none',
- marginLeft: `calc(-1 * ${theme('spacing.4')})`,
- marginRight: `calc(-1 * ${theme('spacing.4')})`,
- '@screen sm': {
- marginLeft: `calc(-1 * ${theme('spacing.6')})`,
- marginRight: `calc(-1 * ${theme('spacing.6')})`,
- },
- '@screen lg': {
- marginLeft: `calc(-1 * ${theme('spacing.8')})`,
- marginRight: `calc(-1 * ${theme('spacing.8')})`,
- },
- },
-
- // Quotes
- blockquote: {
- fontWeight: '500',
- fontStyle: 'italic',
- color: 'var(--tw-prose-quotes)',
- borderLeftWidth: '0.25rem',
- borderLeftColor: 'var(--tw-prose-quote-borders)',
- quotes: '"\\201C""\\201D""\\2018""\\2019"',
- marginTop: theme('spacing.8'),
- marginBottom: theme('spacing.8'),
- paddingLeft: theme('spacing.5'),
- },
- 'blockquote p:first-of-type::before': {
- content: 'open-quote',
- },
- 'blockquote p:last-of-type::after': {
- content: 'close-quote',
- },
-
- // Headings
- h1: {
- color: 'var(--tw-prose-headings)',
- fontWeight: '700',
- fontSize: theme('fontSize.2xl')[0],
- ...theme('fontSize.2xl')[1],
- marginBottom: theme('spacing.2'),
- },
- h2: {
- color: 'var(--tw-prose-headings)',
- fontWeight: '600',
- fontSize: theme('fontSize.lg')[0],
- ...theme('fontSize.lg')[1],
- marginTop: theme('spacing.16'),
- marginBottom: theme('spacing.2'),
- },
- h3: {
- color: 'var(--tw-prose-headings)',
- fontSize: theme('fontSize.base')[0],
- ...theme('fontSize.base')[1],
- fontWeight: '600',
- marginTop: theme('spacing.10'),
- marginBottom: theme('spacing.2'),
- },
-
- // Media
- 'img, video, figure': {
- marginTop: theme('spacing.8'),
- marginBottom: theme('spacing.8'),
- },
- 'figure > *': {
- marginTop: '0',
- marginBottom: '0',
- },
- figcaption: {
- color: 'var(--tw-prose-captions)',
- fontSize: theme('fontSize.xs')[0],
- ...theme('fontSize.xs')[1],
- marginTop: theme('spacing.2'),
- },
-
- // Tables
- table: {
- width: '100%',
- tableLayout: 'auto',
- textAlign: 'left',
- marginTop: theme('spacing.8'),
- marginBottom: theme('spacing.8'),
- lineHeight: theme('lineHeight.6'),
- },
- thead: {
- borderBottomWidth: '1px',
- borderBottomColor: 'var(--tw-prose-th-borders)',
- },
- 'thead th': {
- color: 'var(--tw-prose-headings)',
- fontWeight: '600',
- verticalAlign: 'bottom',
- paddingRight: theme('spacing.2'),
- paddingBottom: theme('spacing.2'),
- paddingLeft: theme('spacing.2'),
- textAlign: 'left'
- },
- 'thead th:first-child': {
- paddingLeft: '0',
- },
- 'thead th:last-child': {
- paddingRight: '0',
- },
- 'tbody tr': {
- borderBottomWidth: '1px',
- borderBottomColor: 'var(--tw-prose-td-borders)',
- },
- 'tbody tr:last-child': {
- borderBottomWidth: '0',
- },
- 'tbody td': {
- // verticalAlign: 'baseline',
- textAlign: 'left'
- },
- tfoot: {
- borderTopWidth: '1px',
- borderTopColor: 'var(--tw-prose-th-borders)',
- },
- 'tfoot td': {
- verticalAlign: 'top',
- },
- ':is(tbody, tfoot) td': {
- paddingTop: theme('spacing.2'),
- paddingRight: theme('spacing.2'),
- paddingBottom: theme('spacing.2'),
- paddingLeft: theme('spacing.2'),
- },
- ':is(tbody, tfoot) td:first-child': {
- paddingLeft: '0',
- },
- ':is(tbody, tfoot) td:last-child': {
- paddingRight: '0',
- },
-
- // Inline elements
- a: {
- color: 'var(--tw-prose-links)',
- textDecoration: 'underline transparent',
- fontWeight: '500',
- transitionProperty: 'color, text-decoration-color',
- transitionDuration: theme('transitionDuration.DEFAULT'),
- transitionTimingFunction: theme('transitionTimingFunction.DEFAULT'),
- '&:hover': {
- color: 'var(--tw-prose-links-hover)',
- textDecorationColor: 'var(--tw-prose-links-underline)',
- },
- },
- ':is(h1, h2, h3) a': {
- fontWeight: 'inherit',
- },
- strong: {
- color: 'var(--tw-prose-bold)',
- fontWeight: '600',
- },
- ':is(a, blockquote, thead th) strong': {
- color: 'inherit',
- },
- code: {
- color: 'var(--tw-prose-code)',
- borderRadius: theme('borderRadius.lg'),
- paddingTop: theme('padding.1'),
- paddingRight: theme('padding[1.5]'),
- paddingBottom: theme('padding.1'),
- paddingLeft: theme('padding[1.5]'),
- boxShadow: 'inset 0 0 0 1px var(--tw-prose-code-ring)',
- backgroundColor: 'var(--tw-prose-code-bg)',
- fontSize: theme('fontSize.2xs'),
- },
- ':is(a, h1, h2, h3, blockquote, thead th) code': {
- color: 'inherit',
- },
- 'h2 code': {
- fontSize: theme('fontSize.base')[0],
- fontWeight: 'inherit',
- },
- 'h3 code': {
- fontSize: theme('fontSize.sm')[0],
- fontWeight: 'inherit',
- },
-
- // Overrides
- ':is(h1, h2, h3) + *': {
- marginTop: '0',
- },
- '> :first-child': {
- marginTop: '0 !important',
- },
- '> :last-child': {
- marginBottom: '0 !important',
- },
- },
- },
- invert: {
- css: {
- '--tw-prose-body': 'var(--tw-prose-invert-body)',
- '--tw-prose-headings': 'var(--tw-prose-invert-headings)',
- '--tw-prose-links': 'var(--tw-prose-invert-links)',
- '--tw-prose-links-hover': 'var(--tw-prose-invert-links-hover)',
- '--tw-prose-links-underline': 'var(--tw-prose-invert-links-underline)',
- '--tw-prose-bold': 'var(--tw-prose-invert-bold)',
- '--tw-prose-counters': 'var(--tw-prose-invert-counters)',
- '--tw-prose-bullets': 'var(--tw-prose-invert-bullets)',
- '--tw-prose-hr': 'var(--tw-prose-invert-hr)',
- '--tw-prose-quotes': 'var(--tw-prose-invert-quotes)',
- '--tw-prose-quote-borders': 'var(--tw-prose-invert-quote-borders)',
- '--tw-prose-captions': 'var(--tw-prose-invert-captions)',
- '--tw-prose-code': 'var(--tw-prose-invert-code)',
- '--tw-prose-code-bg': 'var(--tw-prose-invert-code-bg)',
- '--tw-prose-code-ring': 'var(--tw-prose-invert-code-ring)',
- '--tw-prose-th-borders': 'var(--tw-prose-invert-th-borders)',
- '--tw-prose-td-borders': 'var(--tw-prose-invert-td-borders)',
- },
- },
- })
-
\ No newline at end of file
diff --git a/docs/yarn.lock b/docs/yarn.lock
index e3aa26b16..add35eede 100644
--- a/docs/yarn.lock
+++ b/docs/yarn.lock
@@ -2,529 +2,694 @@
# yarn lockfile v1
+"@ai-sdk/gateway@2.0.0":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@ai-sdk/gateway/-/gateway-2.0.0.tgz#d291c40fa869174af5b7230bd838d1028488a6fd"
+ integrity sha512-Gj0PuawK7NkZuyYgO/h5kDK/l6hFOjhLdTq3/Lli1FTl47iGmwhH1IZQpAL3Z09BeFYWakcwUmn02ovIm2wy9g==
+ dependencies:
+ "@ai-sdk/provider" "2.0.0"
+ "@ai-sdk/provider-utils" "3.0.12"
+ "@vercel/oidc" "3.0.3"
+
+"@ai-sdk/provider-utils@3.0.12":
+ version "3.0.12"
+ resolved "https://registry.yarnpkg.com/@ai-sdk/provider-utils/-/provider-utils-3.0.12.tgz#9812a0b7ce36f2cae81dff3afe70f0c4bde76213"
+ integrity sha512-ZtbdvYxdMoria+2SlNarEk6Hlgyf+zzcznlD55EAl+7VZvJaSg2sqPvwArY7L6TfDEDJsnCq0fdhBSkYo0Xqdg==
+ dependencies:
+ "@ai-sdk/provider" "2.0.0"
+ "@standard-schema/spec" "^1.0.0"
+ eventsource-parser "^3.0.5"
+
+"@ai-sdk/provider@2.0.0":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@ai-sdk/provider/-/provider-2.0.0.tgz#b853c739d523b33675bc74b6c506b2c690bc602b"
+ integrity sha512-6o7Y2SeO9vFKB8lArHXehNuusnpddKPk7xqL7T2/b+OvXMRIXUO1rR4wcv1hAFUAT9avGZshty3Wlua/XA7TvA==
+ dependencies:
+ json-schema "^0.4.0"
+
+"@ai-sdk/vue@^2.0.59":
+ version "2.0.76"
+ resolved "https://registry.yarnpkg.com/@ai-sdk/vue/-/vue-2.0.76.tgz#a3aa109926b9f0c7e6e78c97b3ac01a86c6b4b3e"
+ integrity sha512-y9aNvzqWqi6P1v/GjrGtcWMA8HiO1Sp5S2Sp5teXyrsucssYqP35dGZMJfvh7+cDuW3BNHTEFPGkxIsbxOTAkQ==
+ dependencies:
+ "@ai-sdk/provider-utils" "3.0.12"
+ ai "5.0.76"
+ swrv "^1.0.4"
+
"@alloc/quick-lru@^5.2.0":
version "5.2.0"
resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30"
integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==
-"@ampproject/remapping@^2.2.0", "@ampproject/remapping@^2.3.0":
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4"
- integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==
+"@antfu/install-pkg@^1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@antfu/install-pkg/-/install-pkg-1.1.0.tgz#78fa036be1a6081b5a77a5cf59f50c7752b6ba26"
+ integrity sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==
dependencies:
- "@jridgewell/gen-mapping" "^0.3.5"
- "@jridgewell/trace-mapping" "^0.3.24"
+ package-manager-detector "^1.3.0"
+ tinyexec "^1.0.1"
-"@antfu/install-pkg@^0.1.1":
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/@antfu/install-pkg/-/install-pkg-0.1.1.tgz#157bb04f0de8100b9e4c01734db1a6c77e98bbb5"
- integrity sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==
- dependencies:
- execa "^5.1.1"
- find-up "^5.0.0"
+"@antfu/utils@^9.2.0":
+ version "9.3.0"
+ resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-9.3.0.tgz#e05e277f788ac3bec771f57a49fb64546bb32374"
+ integrity sha512-9hFT4RauhcUzqOE4f1+frMKLZrgNog5b06I7VmZQV1BkvwvqrbC8EBZf3L1eEL2AKb6rNKjER0sEvJiSP1FXEA==
-"@antfu/utils@^0.7.7":
- version "0.7.7"
- resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.7.7.tgz#26ea493a831b4f3a85475e7157be02fb4eab51fb"
- integrity sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==
+"@apidevtools/json-schema-ref-parser@^11.5.5":
+ version "11.9.3"
+ resolved "https://registry.yarnpkg.com/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-11.9.3.tgz#0e0c9061fc41cf03737d499a4e6a8299fdd2bfa7"
+ integrity sha512-60vepv88RwcJtSHrD6MjIL6Ta3SOYbgfnkHb+ppAVK+o9mXprRtulx7VlRl3lN3bbvysAfCS7WMVfhUYemB0IQ==
+ dependencies:
+ "@jsdevtools/ono" "^7.1.3"
+ "@types/json-schema" "^7.0.15"
+ js-yaml "^4.1.0"
-"@babel/code-frame@^7.12.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.2":
- version "7.24.2"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae"
- integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==
+"@apidevtools/json-schema-ref-parser@^14.1.1":
+ version "14.2.1"
+ resolved "https://registry.yarnpkg.com/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-14.2.1.tgz#40040f6a9a250b92055723a76e48dde0efb9688b"
+ integrity sha512-HmdFw9CDYqM6B25pqGBpNeLCKvGPlIx1EbLrVL0zPvj50CJQUHyBNBw45Muk0kEIkogo1VZvOKHajdMuAzSxRg==
dependencies:
- "@babel/highlight" "^7.24.2"
- picocolors "^1.0.0"
+ js-yaml "^4.1.0"
-"@babel/compat-data@^7.23.5":
- version "7.24.4"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.4.tgz#6f102372e9094f25d908ca0d34fc74c74606059a"
- integrity sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==
-
-"@babel/core@^7.23.0", "@babel/core@^7.23.3", "@babel/core@^7.23.7", "@babel/core@^7.24.4":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.5.tgz#15ab5b98e101972d171aeef92ac70d8d6718f06a"
- integrity sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==
- dependencies:
- "@ampproject/remapping" "^2.2.0"
- "@babel/code-frame" "^7.24.2"
- "@babel/generator" "^7.24.5"
- "@babel/helper-compilation-targets" "^7.23.6"
- "@babel/helper-module-transforms" "^7.24.5"
- "@babel/helpers" "^7.24.5"
- "@babel/parser" "^7.24.5"
- "@babel/template" "^7.24.0"
- "@babel/traverse" "^7.24.5"
- "@babel/types" "^7.24.5"
+"@babel/code-frame@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz#200f715e66d52a23b221a9435534a91cc13ad5be"
+ integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.27.1"
+ js-tokens "^4.0.0"
+ picocolors "^1.1.1"
+
+"@babel/compat-data@^7.27.2":
+ version "7.28.4"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.4.tgz#96fdf1af1b8859c8474ab39c295312bfb7c24b04"
+ integrity sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==
+
+"@babel/core@^7.28.3":
+ version "7.28.4"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.4.tgz#12a550b8794452df4c8b084f95003bce1742d496"
+ integrity sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==
+ dependencies:
+ "@babel/code-frame" "^7.27.1"
+ "@babel/generator" "^7.28.3"
+ "@babel/helper-compilation-targets" "^7.27.2"
+ "@babel/helper-module-transforms" "^7.28.3"
+ "@babel/helpers" "^7.28.4"
+ "@babel/parser" "^7.28.4"
+ "@babel/template" "^7.27.2"
+ "@babel/traverse" "^7.28.4"
+ "@babel/types" "^7.28.4"
+ "@jridgewell/remapping" "^2.3.5"
convert-source-map "^2.0.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.2.3"
semver "^6.3.1"
-"@babel/generator@^7.24.5":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.5.tgz#e5afc068f932f05616b66713e28d0f04e99daeb3"
- integrity sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==
+"@babel/generator@^7.28.3":
+ version "7.28.3"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.3.tgz#9626c1741c650cbac39121694a0f2d7451b8ef3e"
+ integrity sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==
dependencies:
- "@babel/types" "^7.24.5"
- "@jridgewell/gen-mapping" "^0.3.5"
- "@jridgewell/trace-mapping" "^0.3.25"
- jsesc "^2.5.1"
+ "@babel/parser" "^7.28.3"
+ "@babel/types" "^7.28.2"
+ "@jridgewell/gen-mapping" "^0.3.12"
+ "@jridgewell/trace-mapping" "^0.3.28"
+ jsesc "^3.0.2"
-"@babel/helper-annotate-as-pure@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882"
- integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==
+"@babel/helper-annotate-as-pure@^7.27.3":
+ version "7.27.3"
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz#f31fd86b915fc4daf1f3ac6976c59be7084ed9c5"
+ integrity sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==
dependencies:
- "@babel/types" "^7.22.5"
+ "@babel/types" "^7.27.3"
-"@babel/helper-compilation-targets@^7.23.6":
- version "7.23.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991"
- integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==
+"@babel/helper-compilation-targets@^7.27.2":
+ version "7.27.2"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz#46a0f6efab808d51d29ce96858dd10ce8732733d"
+ integrity sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==
dependencies:
- "@babel/compat-data" "^7.23.5"
- "@babel/helper-validator-option" "^7.23.5"
- browserslist "^4.22.2"
+ "@babel/compat-data" "^7.27.2"
+ "@babel/helper-validator-option" "^7.27.1"
+ browserslist "^4.24.0"
lru-cache "^5.1.1"
semver "^6.3.1"
-"@babel/helper-create-class-features-plugin@^7.24.1", "@babel/helper-create-class-features-plugin@^7.24.5":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.5.tgz#7d19da92c7e0cd8d11c09af2ce1b8e7512a6e723"
- integrity sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.22.5"
- "@babel/helper-environment-visitor" "^7.22.20"
- "@babel/helper-function-name" "^7.23.0"
- "@babel/helper-member-expression-to-functions" "^7.24.5"
- "@babel/helper-optimise-call-expression" "^7.22.5"
- "@babel/helper-replace-supers" "^7.24.1"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
- "@babel/helper-split-export-declaration" "^7.24.5"
+"@babel/helper-create-class-features-plugin@^7.27.1":
+ version "7.28.3"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.3.tgz#3e747434ea007910c320c4d39a6b46f20f371d46"
+ integrity sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.27.3"
+ "@babel/helper-member-expression-to-functions" "^7.27.1"
+ "@babel/helper-optimise-call-expression" "^7.27.1"
+ "@babel/helper-replace-supers" "^7.27.1"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1"
+ "@babel/traverse" "^7.28.3"
semver "^6.3.1"
-"@babel/helper-environment-visitor@^7.22.20":
- version "7.22.20"
- resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
- integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
+"@babel/helper-globals@^7.28.0":
+ version "7.28.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz#b9430df2aa4e17bc28665eadeae8aa1d985e6674"
+ integrity sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==
-"@babel/helper-function-name@^7.23.0":
- version "7.23.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759"
- integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
+"@babel/helper-member-expression-to-functions@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz#ea1211276be93e798ce19037da6f06fbb994fa44"
+ integrity sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==
dependencies:
- "@babel/template" "^7.22.15"
- "@babel/types" "^7.23.0"
+ "@babel/traverse" "^7.27.1"
+ "@babel/types" "^7.27.1"
+
+"@babel/helper-module-imports@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz#7ef769a323e2655e126673bb6d2d6913bbead204"
+ integrity sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==
+ dependencies:
+ "@babel/traverse" "^7.27.1"
+ "@babel/types" "^7.27.1"
+
+"@babel/helper-module-transforms@^7.28.3":
+ version "7.28.3"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz#a2b37d3da3b2344fe085dab234426f2b9a2fa5f6"
+ integrity sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==
+ dependencies:
+ "@babel/helper-module-imports" "^7.27.1"
+ "@babel/helper-validator-identifier" "^7.27.1"
+ "@babel/traverse" "^7.28.3"
+
+"@babel/helper-optimise-call-expression@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz#c65221b61a643f3e62705e5dd2b5f115e35f9200"
+ integrity sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==
+ dependencies:
+ "@babel/types" "^7.27.1"
+
+"@babel/helper-plugin-utils@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz#ddb2f876534ff8013e6c2b299bf4d39b3c51d44c"
+ integrity sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==
+
+"@babel/helper-replace-supers@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz#b1ed2d634ce3bdb730e4b52de30f8cccfd692bc0"
+ integrity sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==
+ dependencies:
+ "@babel/helper-member-expression-to-functions" "^7.27.1"
+ "@babel/helper-optimise-call-expression" "^7.27.1"
+ "@babel/traverse" "^7.27.1"
+
+"@babel/helper-skip-transparent-expression-wrappers@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz#62bb91b3abba8c7f1fec0252d9dbea11b3ee7a56"
+ integrity sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==
+ dependencies:
+ "@babel/traverse" "^7.27.1"
+ "@babel/types" "^7.27.1"
+
+"@babel/helper-string-parser@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz#54da796097ab19ce67ed9f88b47bb2ec49367687"
+ integrity sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==
+
+"@babel/helper-validator-identifier@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz#a7054dcc145a967dd4dc8fee845a57c1316c9df8"
+ integrity sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==
+
+"@babel/helper-validator-option@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz#fa52f5b1e7db1ab049445b421c4471303897702f"
+ integrity sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==
+
+"@babel/helpers@^7.28.4":
+ version "7.28.4"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.4.tgz#fe07274742e95bdf7cf1443593eeb8926ab63827"
+ integrity sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==
+ dependencies:
+ "@babel/template" "^7.27.2"
+ "@babel/types" "^7.28.4"
+
+"@babel/parser@^7.25.4", "@babel/parser@^7.27.2", "@babel/parser@^7.28.0", "@babel/parser@^7.28.3", "@babel/parser@^7.28.4":
+ version "7.28.4"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.4.tgz#da25d4643532890932cc03f7705fe19637e03fa8"
+ integrity sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==
+ dependencies:
+ "@babel/types" "^7.28.4"
+
+"@babel/plugin-syntax-jsx@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz#2f9beb5eff30fa507c5532d107daac7b888fa34c"
+ integrity sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.27.1"
+
+"@babel/plugin-syntax-typescript@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz#5147d29066a793450f220c63fa3a9431b7e6dd18"
+ integrity sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.27.1"
+
+"@babel/plugin-transform-typescript@^7.28.0":
+ version "7.28.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.0.tgz#796cbd249ab56c18168b49e3e1d341b72af04a6b"
+ integrity sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.27.3"
+ "@babel/helper-create-class-features-plugin" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1"
+ "@babel/plugin-syntax-typescript" "^7.27.1"
+
+"@babel/template@^7.27.2":
+ version "7.27.2"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz#fa78ceed3c4e7b63ebf6cb39e5852fca45f6809d"
+ integrity sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==
+ dependencies:
+ "@babel/code-frame" "^7.27.1"
+ "@babel/parser" "^7.27.2"
+ "@babel/types" "^7.27.1"
+
+"@babel/traverse@^7.27.1", "@babel/traverse@^7.28.0", "@babel/traverse@^7.28.3", "@babel/traverse@^7.28.4":
+ version "7.28.4"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.4.tgz#8d456101b96ab175d487249f60680221692b958b"
+ integrity sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==
+ dependencies:
+ "@babel/code-frame" "^7.27.1"
+ "@babel/generator" "^7.28.3"
+ "@babel/helper-globals" "^7.28.0"
+ "@babel/parser" "^7.28.4"
+ "@babel/template" "^7.27.2"
+ "@babel/types" "^7.28.4"
+ debug "^4.3.1"
-"@babel/helper-hoist-variables@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
- integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
+"@babel/types@^7.25.4", "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.28.2", "@babel/types@^7.28.4":
+ version "7.28.4"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.4.tgz#0a4e618f4c60a7cd6c11cb2d48060e4dbe38ac3a"
+ integrity sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==
dependencies:
- "@babel/types" "^7.22.5"
+ "@babel/helper-string-parser" "^7.27.1"
+ "@babel/helper-validator-identifier" "^7.27.1"
-"@babel/helper-member-expression-to-functions@^7.23.0", "@babel/helper-member-expression-to-functions@^7.24.5":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.5.tgz#5981e131d5c7003c7d1fa1ad49e86c9b097ec475"
- integrity sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==
- dependencies:
- "@babel/types" "^7.24.5"
+"@barbapapazes/plausible-tracker@^0.5.6":
+ version "0.5.6"
+ resolved "https://registry.yarnpkg.com/@barbapapazes/plausible-tracker/-/plausible-tracker-0.5.6.tgz#36c2cf3354326282b9a3315538dbec2744acb997"
+ integrity sha512-GRZxn3ZngYQ1+QbdP8d66D/lQg+T2oEevG8kBGfNwVbt9VZB67sgMx/gkRo/Ww2lH7QelgjUNzvOeG+DsJX2HQ==
-"@babel/helper-module-imports@^7.24.3":
- version "7.24.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128"
- integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==
+"@capsizecss/metrics@^3.5.0":
+ version "3.5.0"
+ resolved "https://registry.yarnpkg.com/@capsizecss/metrics/-/metrics-3.5.0.tgz#80b4b36d00651288e568c46e7b7c2f4e7d187b6f"
+ integrity sha512-Ju2I/Qn3c1OaU8FgeW4Tc22D4C9NwyVfKzNmzst59bvxBjPoLYNZMqFYn+HvCtn4MpXwiaDtCE8fNuQLpdi9yA==
+
+"@capsizecss/unpack@^2.4.0":
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/@capsizecss/unpack/-/unpack-2.4.0.tgz#db93ee886b8016c155ba7934c7adbe42a9734f13"
+ integrity sha512-GrSU71meACqcmIUxPYOJvGKF0yryjN/L1aCuE9DViCTJI7bfkjgYDPD1zbNDcINJwSSP6UaBZY9GAbYDO7re0Q==
dependencies:
- "@babel/types" "^7.24.0"
+ blob-to-buffer "^1.2.8"
+ cross-fetch "^3.0.4"
+ fontkit "^2.0.2"
-"@babel/helper-module-imports@~7.22.15":
- version "7.22.15"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0"
- integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==
+"@clack/core@0.5.0":
+ version "0.5.0"
+ resolved "https://registry.yarnpkg.com/@clack/core/-/core-0.5.0.tgz#970df024a927d6af90111667a0384e233b5ffa1a"
+ integrity sha512-p3y0FIOwaYRUPRcMO7+dlmLh8PSRcrjuTndsiA0WAFbWES0mLZlrjVoBRZ9DzkPFJZG6KGkJmoEAY0ZcVWTkow==
dependencies:
- "@babel/types" "^7.22.15"
+ picocolors "^1.0.0"
+ sisteransi "^1.0.5"
-"@babel/helper-module-transforms@^7.23.3", "@babel/helper-module-transforms@^7.24.5":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz#ea6c5e33f7b262a0ae762fd5986355c45f54a545"
- integrity sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==
+"@clack/prompts@^0.11.0":
+ version "0.11.0"
+ resolved "https://registry.yarnpkg.com/@clack/prompts/-/prompts-0.11.0.tgz#5c0218f2b46626a50d72d8a485681eb8d94bd2a7"
+ integrity sha512-pMN5FcrEw9hUkZA4f+zLlzivQSeQf5dRGJjSUbvVYDLvpKCdQx5OaknvKzgbtXOizhP+SJJJjqEbOe55uKKfAw==
dependencies:
- "@babel/helper-environment-visitor" "^7.22.20"
- "@babel/helper-module-imports" "^7.24.3"
- "@babel/helper-simple-access" "^7.24.5"
- "@babel/helper-split-export-declaration" "^7.24.5"
- "@babel/helper-validator-identifier" "^7.24.5"
+ "@clack/core" "0.5.0"
+ picocolors "^1.0.0"
+ sisteransi "^1.0.5"
-"@babel/helper-optimise-call-expression@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e"
- integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==
+"@cloudflare/kv-asset-handler@^0.4.0":
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.4.0.tgz#a8588c6a2e89bb3e87fb449295a901c9f6d3e1bf"
+ integrity sha512-+tv3z+SPp+gqTIcImN9o0hqE9xyfQjI1XD9pL6NuKjua9B1y7mNYv0S9cP+QEbA4ppVgGZEmKOvHX5G5Ei1CVA==
dependencies:
- "@babel/types" "^7.22.5"
+ mime "^3.0.0"
-"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.0", "@babel/helper-plugin-utils@^7.24.5":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz#a924607dd254a65695e5bd209b98b902b3b2f11a"
- integrity sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==
+"@emnapi/core@^1.4.3", "@emnapi/core@^1.5.0":
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-1.6.0.tgz#517f65d1c8270d5d5aa1aad660d5acb897430dca"
+ integrity sha512-zq/ay+9fNIJJtJiZxdTnXS20PllcYMX3OE23ESc4HK/bdYu3cOWYVhsOhVnXALfU/uqJIxn5NBPd9z4v+SfoSg==
+ dependencies:
+ "@emnapi/wasi-threads" "1.1.0"
+ tslib "^2.4.0"
-"@babel/helper-replace-supers@^7.24.1":
- version "7.24.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz#7085bd19d4a0b7ed8f405c1ed73ccb70f323abc1"
- integrity sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==
+"@emnapi/runtime@^1.4.3", "@emnapi/runtime@^1.5.0":
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.6.0.tgz#8fe297e0090f6e89a57a1f31f1c440bdbc3c01d8"
+ integrity sha512-obtUmAHTMjll499P+D9A3axeJFlhdjOWdKUNs/U6QIGT7V5RjcUW1xToAzjvmgTSQhDbYn/NwfTRoJcQ2rNBxA==
dependencies:
- "@babel/helper-environment-visitor" "^7.22.20"
- "@babel/helper-member-expression-to-functions" "^7.23.0"
- "@babel/helper-optimise-call-expression" "^7.22.5"
+ tslib "^2.4.0"
-"@babel/helper-simple-access@^7.22.5", "@babel/helper-simple-access@^7.24.5":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz#50da5b72f58c16b07fbd992810be6049478e85ba"
- integrity sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==
+"@emnapi/wasi-threads@1.1.0", "@emnapi/wasi-threads@^1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz#60b2102fddc9ccb78607e4a3cf8403ea69be41bf"
+ integrity sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==
+ dependencies:
+ tslib "^2.4.0"
+
+"@es-joy/jsdoccomment@~0.56.0":
+ version "0.56.0"
+ resolved "https://registry.yarnpkg.com/@es-joy/jsdoccomment/-/jsdoccomment-0.56.0.tgz#bcc1802ae77d17d03f6fbe6eeb27d4a9cef4a086"
+ integrity sha512-c6EW+aA1w2rjqOMjbL93nZlwxp6c1Ln06vTYs5FjRRhmJXK8V/OrSXdT+pUr4aRYgjCgu8/OkiZr0tzeVrRSbw==
+ dependencies:
+ "@types/estree" "^1.0.8"
+ "@typescript-eslint/types" "^8.42.0"
+ comment-parser "1.4.1"
+ esquery "^1.6.0"
+ jsdoc-type-pratt-parser "~5.1.0"
+
+"@esbuild/aix-ppc64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.11.tgz#2ae33300598132cc4cf580dbbb28d30fed3c5c49"
+ integrity sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==
+
+"@esbuild/android-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.11.tgz#927708b3db5d739d6cb7709136924cc81bec9b03"
+ integrity sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==
+
+"@esbuild/android-arm@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.11.tgz#571f94e7f4068957ec4c2cfb907deae3d01b55ae"
+ integrity sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==
+
+"@esbuild/android-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.11.tgz#8a3bf5cae6c560c7ececa3150b2bde76e0fb81e6"
+ integrity sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==
+
+"@esbuild/darwin-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.11.tgz#0a678c4ac4bf8717e67481e1a797e6c152f93c84"
+ integrity sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==
+
+"@esbuild/darwin-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.11.tgz#70f5e925a30c8309f1294d407a5e5e002e0315fe"
+ integrity sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==
+
+"@esbuild/freebsd-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.11.tgz#4ec1db687c5b2b78b44148025da9632397553e8a"
+ integrity sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==
+
+"@esbuild/freebsd-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.11.tgz#4c81abd1b142f1e9acfef8c5153d438ca53f44bb"
+ integrity sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==
+
+"@esbuild/linux-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.11.tgz#69517a111acfc2b93aa0fb5eaeb834c0202ccda5"
+ integrity sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==
+
+"@esbuild/linux-arm@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.11.tgz#58dac26eae2dba0fac5405052b9002dac088d38f"
+ integrity sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==
+
+"@esbuild/linux-ia32@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.11.tgz#b89d4efe9bdad46ba944f0f3b8ddd40834268c2b"
+ integrity sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==
+
+"@esbuild/linux-loong64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.11.tgz#11f603cb60ad14392c3f5c94d64b3cc8b630fbeb"
+ integrity sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==
+
+"@esbuild/linux-mips64el@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.11.tgz#b7d447ff0676b8ab247d69dac40a5cf08e5eeaf5"
+ integrity sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==
+
+"@esbuild/linux-ppc64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.11.tgz#b3a28ed7cc252a61b07ff7c8fd8a984ffd3a2f74"
+ integrity sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==
+
+"@esbuild/linux-riscv64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.11.tgz#ce75b08f7d871a75edcf4d2125f50b21dc9dc273"
+ integrity sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==
+
+"@esbuild/linux-s390x@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.11.tgz#cd08f6c73b6b6ff9ccdaabbd3ff6ad3dca99c263"
+ integrity sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==
+
+"@esbuild/linux-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.11.tgz#3c3718af31a95d8946ebd3c32bb1e699bdf74910"
+ integrity sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==
+
+"@esbuild/netbsd-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.11.tgz#b4c767082401e3a4e8595fe53c47cd7f097c8077"
+ integrity sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==
+
+"@esbuild/netbsd-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.11.tgz#f2a930458ed2941d1f11ebc34b9c7d61f7a4d034"
+ integrity sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==
+
+"@esbuild/openbsd-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.11.tgz#b4ae93c75aec48bc1e8a0154957a05f0641f2dad"
+ integrity sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==
+
+"@esbuild/openbsd-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.11.tgz#b42863959c8dcf9b01581522e40012d2c70045e2"
+ integrity sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==
+
+"@esbuild/openharmony-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.11.tgz#b2e717141c8fdf6bddd4010f0912e6b39e1640f1"
+ integrity sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==
+
+"@esbuild/sunos-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.11.tgz#9fbea1febe8778927804828883ec0f6dd80eb244"
+ integrity sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==
+
+"@esbuild/win32-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.11.tgz#501539cedb24468336073383989a7323005a8935"
+ integrity sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==
+
+"@esbuild/win32-ia32@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.11.tgz#8ac7229aa82cef8f16ffb58f1176a973a7a15343"
+ integrity sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==
+
+"@esbuild/win32-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.11.tgz#5ecda6f3fe138b7e456f4e429edde33c823f392f"
+ integrity sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==
+
+"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0", "@eslint-community/eslint-utils@^4.7.0", "@eslint-community/eslint-utils@^4.8.0", "@eslint-community/eslint-utils@^4.9.0":
+ version "4.9.0"
+ resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz#7308df158e064f0dd8b8fdb58aa14fa2a7f913b3"
+ integrity sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==
+ dependencies:
+ eslint-visitor-keys "^3.4.3"
+
+"@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.11.0", "@eslint-community/regexpp@^4.12.1", "@eslint-community/regexpp@^4.8.0":
+ version "4.12.2"
+ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz#bccdf615bcf7b6e8db830ec0b8d21c9a25de597b"
+ integrity sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==
+
+"@eslint/compat@^1.2.5":
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint/compat/-/compat-1.4.0.tgz#6d6b2f198ddfecda3d4cbd5a6e9324fca54f2dfb"
+ integrity sha512-DEzm5dKeDBPm3r08Ixli/0cmxr8LkRdwxMRUIJBlSCpAwSrvFEJpVBzV+66JhDxiaqKxnRzCXhtiMiczF7Hglg==
dependencies:
- "@babel/types" "^7.24.5"
+ "@eslint/core" "^0.16.0"
-"@babel/helper-skip-transparent-expression-wrappers@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847"
- integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==
+"@eslint/config-array@^0.21.1":
+ version "0.21.1"
+ resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.21.1.tgz#7d1b0060fea407f8301e932492ba8c18aff29713"
+ integrity sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==
dependencies:
- "@babel/types" "^7.22.5"
+ "@eslint/object-schema" "^2.1.7"
+ debug "^4.3.1"
+ minimatch "^3.1.2"
-"@babel/helper-split-export-declaration@^7.24.5":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz#b9a67f06a46b0b339323617c8c6213b9055a78b6"
- integrity sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==
+"@eslint/config-helpers@^0.4.1":
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.4.1.tgz#7d173a1a35fe256f0989a0fdd8d911ebbbf50037"
+ integrity sha512-csZAzkNhsgwb0I/UAV6/RGFTbiakPCf0ZrGmrIxQpYvGZ00PhTkSnyKNolphgIvmnJeGw6rcGVEXfTzUnFuEvw==
dependencies:
- "@babel/types" "^7.24.5"
+ "@eslint/core" "^0.16.0"
-"@babel/helper-string-parser@^7.24.1":
- version "7.24.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e"
- integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==
+"@eslint/config-inspector@^1.2.0":
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/@eslint/config-inspector/-/config-inspector-1.3.0.tgz#67c586096979fac0595568b08f774ff3b981ebaa"
+ integrity sha512-t+5Pra/8VX9Ue8V2p6skCeEMw9vm6HjwNF/n7l5nx78f3lUqLjzSTdMisFeo9AeYOj1hwEBiFYYGZ/Xn88cmHw==
+ dependencies:
+ "@nodelib/fs.walk" "^3.0.1"
+ ansis "^4.1.0"
+ bundle-require "^5.1.0"
+ cac "^6.7.14"
+ chokidar "^4.0.3"
+ debug "^4.4.1"
+ esbuild "^0.25.9"
+ find-up "^7.0.0"
+ get-port-please "^3.2.0"
+ h3 "^1.15.4"
+ mlly "^1.8.0"
+ mrmime "^2.0.1"
+ open "^10.2.0"
+ tinyglobby "^0.2.14"
+ ws "^8.18.3"
+
+"@eslint/core@^0.15.2":
+ version "0.15.2"
+ resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.15.2.tgz#59386327d7862cc3603ebc7c78159d2dcc4a868f"
+ integrity sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==
+ dependencies:
+ "@types/json-schema" "^7.0.15"
+
+"@eslint/core@^0.16.0":
+ version "0.16.0"
+ resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.16.0.tgz#490254f275ba9667ddbab344f4f0a6b7a7bd7209"
+ integrity sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==
+ dependencies:
+ "@types/json-schema" "^7.0.15"
+
+"@eslint/eslintrc@^3.3.1":
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.3.1.tgz#e55f7f1dd400600dd066dbba349c4c0bac916964"
+ integrity sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==
+ dependencies:
+ ajv "^6.12.4"
+ debug "^4.3.2"
+ espree "^10.0.1"
+ globals "^14.0.0"
+ ignore "^5.2.0"
+ import-fresh "^3.2.1"
+ js-yaml "^4.1.0"
+ minimatch "^3.1.2"
+ strip-json-comments "^3.1.1"
-"@babel/helper-validator-identifier@^7.24.5":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz#918b1a7fa23056603506370089bd990d8720db62"
- integrity sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==
+"@eslint/js@9.38.0", "@eslint/js@^9.33.0":
+ version "9.38.0"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.38.0.tgz#f7aa9c7577577f53302c1d795643589d7709ebd1"
+ integrity sha512-UZ1VpFvXf9J06YG9xQBdnzU+kthors6KjhMAl6f4gH4usHyh31rUf2DLGInT8RFYIReYXNSydgPY0V2LuWgl7A==
-"@babel/helper-validator-option@^7.23.5":
- version "7.23.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307"
- integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==
+"@eslint/object-schema@^2.1.7":
+ version "2.1.7"
+ resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.7.tgz#6e2126a1347e86a4dedf8706ec67ff8e107ebbad"
+ integrity sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==
-"@babel/helpers@^7.24.5":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.5.tgz#fedeb87eeafa62b621160402181ad8585a22a40a"
- integrity sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==
- dependencies:
- "@babel/template" "^7.24.0"
- "@babel/traverse" "^7.24.5"
- "@babel/types" "^7.24.5"
+"@eslint/plugin-kit@^0.3.3":
+ version "0.3.5"
+ resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz#fd8764f0ee79c8ddab4da65460c641cefee017c5"
+ integrity sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==
+ dependencies:
+ "@eslint/core" "^0.15.2"
+ levn "^0.4.1"
-"@babel/highlight@^7.24.2":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.5.tgz#bc0613f98e1dd0720e99b2a9ee3760194a704b6e"
- integrity sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==
+"@eslint/plugin-kit@^0.4.0":
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.4.0.tgz#f6a245b42886abf6fc9c7ab7744a932250335ab2"
+ integrity sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==
dependencies:
- "@babel/helper-validator-identifier" "^7.24.5"
- chalk "^2.4.2"
- js-tokens "^4.0.0"
- picocolors "^1.0.0"
+ "@eslint/core" "^0.16.0"
+ levn "^0.4.1"
-"@babel/parser@^7.22.7", "@babel/parser@^7.23.9", "@babel/parser@^7.24.0", "@babel/parser@^7.24.4", "@babel/parser@^7.24.5":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.5.tgz#4a4d5ab4315579e5398a82dcf636ca80c3392790"
- integrity sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==
-
-"@babel/plugin-proposal-decorators@^7.23.0":
- version "7.24.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.1.tgz#bab2b9e174a2680f0a80f341f3ec70f809f8bb4b"
- integrity sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.24.1"
- "@babel/helper-plugin-utils" "^7.24.0"
- "@babel/plugin-syntax-decorators" "^7.24.1"
-
-"@babel/plugin-syntax-decorators@^7.24.1":
- version "7.24.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.1.tgz#71d9ad06063a6ac5430db126b5df48c70ee885fa"
- integrity sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.24.0"
-
-"@babel/plugin-syntax-import-attributes@^7.22.5":
- version "7.24.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz#c66b966c63b714c4eec508fcf5763b1f2d381093"
- integrity sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.24.0"
-
-"@babel/plugin-syntax-import-meta@^7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
- integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-jsx@^7.23.3", "@babel/plugin-syntax-jsx@^7.24.1":
- version "7.24.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz#3f6ca04b8c841811dbc3c5c5f837934e0d626c10"
- integrity sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.24.0"
-
-"@babel/plugin-syntax-typescript@^7.24.1":
- version "7.24.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz#b3bcc51f396d15f3591683f90239de143c076844"
- integrity sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.24.0"
-
-"@babel/plugin-transform-modules-commonjs@^7.24.1":
- version "7.24.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz#e71ba1d0d69e049a22bf90b3867e263823d3f1b9"
- integrity sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==
- dependencies:
- "@babel/helper-module-transforms" "^7.23.3"
- "@babel/helper-plugin-utils" "^7.24.0"
- "@babel/helper-simple-access" "^7.22.5"
-
-"@babel/plugin-transform-typescript@^7.22.15", "@babel/plugin-transform-typescript@^7.23.3", "@babel/plugin-transform-typescript@^7.24.1":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.5.tgz#bcba979e462120dc06a75bd34c473a04781931b8"
- integrity sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.22.5"
- "@babel/helper-create-class-features-plugin" "^7.24.5"
- "@babel/helper-plugin-utils" "^7.24.5"
- "@babel/plugin-syntax-typescript" "^7.24.1"
-
-"@babel/preset-typescript@^7.24.1":
- version "7.24.1"
- resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.24.1.tgz#89bdf13a3149a17b3b2a2c9c62547f06db8845ec"
- integrity sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.24.0"
- "@babel/helper-validator-option" "^7.23.5"
- "@babel/plugin-syntax-jsx" "^7.24.1"
- "@babel/plugin-transform-modules-commonjs" "^7.24.1"
- "@babel/plugin-transform-typescript" "^7.24.1"
-
-"@babel/standalone@^7.23.8":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.24.5.tgz#2003c40665adf222c952b6d652607f30b3152c0d"
- integrity sha512-Sl8oN9bGfRlNUA2jzfzoHEZxFBDliBlwi5mPVCAWKSlBNkXXJOHpu7SDOqjF6mRoTa6GNX/1kAWG3Tr+YQ3N7A==
-
-"@babel/template@^7.22.15", "@babel/template@^7.23.9", "@babel/template@^7.24.0":
- version "7.24.0"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.0.tgz#c6a524aa93a4a05d66aaf31654258fae69d87d50"
- integrity sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==
- dependencies:
- "@babel/code-frame" "^7.23.5"
- "@babel/parser" "^7.24.0"
- "@babel/types" "^7.24.0"
-
-"@babel/traverse@^7.23.9", "@babel/traverse@^7.24.5":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.5.tgz#972aa0bc45f16983bf64aa1f877b2dd0eea7e6f8"
- integrity sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==
- dependencies:
- "@babel/code-frame" "^7.24.2"
- "@babel/generator" "^7.24.5"
- "@babel/helper-environment-visitor" "^7.22.20"
- "@babel/helper-function-name" "^7.23.0"
- "@babel/helper-hoist-variables" "^7.22.5"
- "@babel/helper-split-export-declaration" "^7.24.5"
- "@babel/parser" "^7.24.5"
- "@babel/types" "^7.24.5"
- debug "^4.3.1"
- globals "^11.1.0"
+"@fastify/accept-negotiator@^1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@fastify/accept-negotiator/-/accept-negotiator-1.1.0.tgz#c1c66b3b771c09742a54dd5bc87c582f6b0630ff"
+ integrity sha512-OIHZrb2ImZ7XG85HXOONLcJWGosv7sIvM2ifAPQVhg9Lv7qdmMBNVaai4QTdyuaqbKM5eO6sLSQOYI7wEQeCJQ==
-"@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.23.9", "@babel/types@^7.24.0", "@babel/types@^7.24.5":
- version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.5.tgz#7661930afc638a5383eb0c4aee59b74f38db84d7"
- integrity sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==
+"@floating-ui/core@^1.7.3":
+ version "1.7.3"
+ resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.7.3.tgz#462d722f001e23e46d86fd2bd0d21b7693ccb8b7"
+ integrity sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==
dependencies:
- "@babel/helper-string-parser" "^7.24.1"
- "@babel/helper-validator-identifier" "^7.24.5"
- to-fast-properties "^2.0.0"
+ "@floating-ui/utils" "^0.2.10"
-"@cloudflare/kv-asset-handler@^0.3.1":
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.2.tgz#06437b75664729823ac9033b89f06a3b078e4f55"
- integrity sha512-EeEjMobfuJrwoctj7FA1y1KEbM0+Q1xSjobIEyie9k4haVEBB7vkDvsasw1pM3rO39mL2akxIAzLMUAtrMHZhA==
+"@floating-ui/dom@^1.6.13", "@floating-ui/dom@^1.7.4":
+ version "1.7.4"
+ resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.7.4.tgz#ee667549998745c9c3e3e84683b909c31d6c9a77"
+ integrity sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==
dependencies:
- mime "^3.0.0"
+ "@floating-ui/core" "^1.7.3"
+ "@floating-ui/utils" "^0.2.10"
-"@csstools/selector-resolve-nested@^1.1.0":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@csstools/selector-resolve-nested/-/selector-resolve-nested-1.1.0.tgz#d872f2da402d3ce8bd0cf16ea5f9fba76b18e430"
- integrity sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg==
+"@floating-ui/utils@^0.2.10":
+ version "0.2.10"
+ resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.10.tgz#a2a1e3812d14525f725d011a73eceb41fef5bc1c"
+ integrity sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==
-"@csstools/selector-specificity@^3.0.3":
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-3.0.3.tgz#208a3929ee614967a1fc8cd6cb758d9fcbf0caae"
- integrity sha512-KEPNw4+WW5AVEIyzC80rTbWEUatTW2lXpN8+8ILC8PiPeWPjwUzrPZDIOZ2wwqDmeqOYTdSGyL3+vE5GC3FB3Q==
-
-"@esbuild/aix-ppc64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537"
- integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==
-
-"@esbuild/android-arm64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9"
- integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==
-
-"@esbuild/android-arm@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995"
- integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==
-
-"@esbuild/android-x64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98"
- integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==
-
-"@esbuild/darwin-arm64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb"
- integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==
-
-"@esbuild/darwin-x64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0"
- integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==
-
-"@esbuild/freebsd-arm64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911"
- integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==
-
-"@esbuild/freebsd-x64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c"
- integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==
-
-"@esbuild/linux-arm64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5"
- integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==
-
-"@esbuild/linux-arm@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c"
- integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==
-
-"@esbuild/linux-ia32@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa"
- integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==
-
-"@esbuild/linux-loong64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5"
- integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==
-
-"@esbuild/linux-mips64el@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa"
- integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==
-
-"@esbuild/linux-ppc64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20"
- integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==
-
-"@esbuild/linux-riscv64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300"
- integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==
-
-"@esbuild/linux-s390x@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685"
- integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==
-
-"@esbuild/linux-x64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff"
- integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==
-
-"@esbuild/netbsd-x64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6"
- integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==
-
-"@esbuild/openbsd-x64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf"
- integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==
-
-"@esbuild/sunos-x64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f"
- integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==
-
-"@esbuild/win32-arm64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90"
- integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==
-
-"@esbuild/win32-ia32@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23"
- integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==
-
-"@esbuild/win32-x64@0.20.2":
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc"
- integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==
-
-"@fastify/busboy@^2.0.0":
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/@fastify/busboy/-/busboy-2.1.1.tgz#b9da6a878a371829a0502c9b6c1c143ef6663f4d"
- integrity sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==
+"@floating-ui/vue@^1.1.6":
+ version "1.1.9"
+ resolved "https://registry.yarnpkg.com/@floating-ui/vue/-/vue-1.1.9.tgz#508c386bd3d595247f1dda8dbca00b76fe8fcaf9"
+ integrity sha512-BfNqNW6KA83Nexspgb9DZuz578R7HT8MZw1CfK9I6Ah4QReNWEJsXWHN+SdmOVLNGmTPDi+fDT535Df5PzMLbQ==
+ dependencies:
+ "@floating-ui/dom" "^1.7.4"
+ "@floating-ui/utils" "^0.2.10"
+ vue-demi ">=0.13.0"
-"@headlessui/vue@^1.7.8":
- version "1.7.21"
- resolved "https://registry.yarnpkg.com/@headlessui/vue/-/vue-1.7.21.tgz#debad090e6ae191f50cadde54d0b53322983ac6c"
- integrity sha512-95cPFP5X9luB8/+smPENFv0ruaotT6epFnqK9EKldX2YpNkYM/qkN44oFoqQo+higlCAxDK5Pkg2E3FuD1Anyg==
+"@humanfs/core@^0.19.1":
+ version "0.19.1"
+ resolved "https://registry.yarnpkg.com/@humanfs/core/-/core-0.19.1.tgz#17c55ca7d426733fe3c561906b8173c336b40a77"
+ integrity sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==
+
+"@humanfs/node@^0.16.6":
+ version "0.16.7"
+ resolved "https://registry.yarnpkg.com/@humanfs/node/-/node-0.16.7.tgz#822cb7b3a12c5a240a24f621b5a2413e27a45f26"
+ integrity sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==
dependencies:
- "@tanstack/vue-virtual" "^3.0.0-beta.60"
+ "@humanfs/core" "^0.19.1"
+ "@humanwhocodes/retry" "^0.4.0"
-"@heroicons/vue@^2.1.3":
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/@heroicons/vue/-/vue-2.1.3.tgz#7553aea937bf23013b44ab3787ce181a45188356"
- integrity sha512-CP4ipIwFbV4NEn8ULUCN110wkV0wZq6dsViDL3HwgIh+jn5yQGlRm6QaRN+Mv+o+UsUBbRDei3Je/q0NZHf5Gg==
+"@humanwhocodes/module-importer@^1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
+ integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
+
+"@humanwhocodes/retry@^0.4.0", "@humanwhocodes/retry@^0.4.2":
+ version "0.4.3"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.4.3.tgz#c2b9d2e374ee62c586d3adbea87199b1d7a7a6ba"
+ integrity sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==
-"@iconify-json/carbon@^1.1.31":
- version "1.1.32"
- resolved "https://registry.yarnpkg.com/@iconify-json/carbon/-/carbon-1.1.32.tgz#e2a1a5afac5f5a505952f1197ba3371167491c22"
- integrity sha512-9X8wVI7AmcnjTyOdDoCgyNwcFL9lb++nacDS2yLANTc27F4y9Q8pJIfUVsakR4KcGqSSBCyXwEmBDeopeTZFqA==
+"@iconify-json/lucide@^1.2.69":
+ version "1.2.70"
+ resolved "https://registry.yarnpkg.com/@iconify-json/lucide/-/lucide-1.2.70.tgz#4d89e1dc37f8aec808b9dcc37fd8ff3d4f1cb9ec"
+ integrity sha512-56s9NdBKgshywVY1e4gOcxzAbU1J649e/jLHBJU1tyNqRs7mFLVEGwj2mmzHJ5YAZB5Tsngi4f/ocTBPlG06ZA==
dependencies:
"@iconify/types" "*"
-"@iconify-json/logos@^1.1.42":
- version "1.1.42"
- resolved "https://registry.yarnpkg.com/@iconify-json/logos/-/logos-1.1.42.tgz#85f62457ea54b727752b1fed8071847d17f28da1"
- integrity sha512-/f+frtPm3m3Z30oy8Pk+QqRDkbmAiIaWGPl5CmsCXm15MVfvw9a/V/gD7WzdyuSGAZcFuQaqbHXj92y/n+2ifg==
+"@iconify-json/simple-icons@^1.2.54":
+ version "1.2.55"
+ resolved "https://registry.yarnpkg.com/@iconify-json/simple-icons/-/simple-icons-1.2.55.tgz#eb55f409e76f62f4502504a3e182d04fd8f0c507"
+ integrity sha512-9vc04pmup/zcef8hDypWU8nMwMaFVkWuUzWkxyL++DVp5AA8baoJHK6RyKN1v+cvfR2agxkUb053XVggzFFkTA==
dependencies:
"@iconify/types" "*"
-"@iconify-json/ri@^1.1.20":
- version "1.1.20"
- resolved "https://registry.yarnpkg.com/@iconify-json/ri/-/ri-1.1.20.tgz#6621dfc91fa119c1b941a0685d213f22480157ca"
- integrity sha512-yScIGjLFBCJKWKskQTWRjNI2Awoq+VRDkRxEsCQvSfdz41n+xkRtFG2K6J1OVI90ClRHfjFC8VJ2+WzxxyFjTQ==
+"@iconify-json/vscode-icons@^1.2.32":
+ version "1.2.32"
+ resolved "https://registry.yarnpkg.com/@iconify-json/vscode-icons/-/vscode-icons-1.2.32.tgz#348553d0e8986148d0f6e21ad01da9d649f67bed"
+ integrity sha512-UzZmL6hF02YGu/qEbpskEVnstlNJG+c+0PNzNYTIBf/dXylWHLUVufhOXqAzuGRjkUZ2q7rPpOEwLUPkhkFHUA==
dependencies:
"@iconify/types" "*"
-"@iconify-json/tabler@^1.1.110":
- version "1.1.110"
- resolved "https://registry.yarnpkg.com/@iconify-json/tabler/-/tabler-1.1.110.tgz#81ad0dd7a3af40c98dd889a9efe614565191c1d5"
- integrity sha512-+0TbyNeQpFI2r+bjtbazGrpGskI3c9NTii/6HhWTS+/d5+PiLs6+wWJW0M9AU2ykew7zdMKB2WtyczFyjYzZIQ==
+"@iconify/collections@^1.0.608":
+ version "1.0.608"
+ resolved "https://registry.yarnpkg.com/@iconify/collections/-/collections-1.0.608.tgz#ed35264ae81b1834374e29bd5eb3181dde9b4896"
+ integrity sha512-uMbaErE6TzDb04peWVFYjc9cweBD+j1nFBHi5EEcA1u1mXJAyePF01VzH6dimurrhivvU+nRmuYfiC8GPDyG6g==
dependencies:
"@iconify/types" "*"
@@ -533,23 +698,57 @@
resolved "https://registry.yarnpkg.com/@iconify/types/-/types-2.0.0.tgz#ab0e9ea681d6c8a1214f30cd741fe3a20cc57f57"
integrity sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==
-"@iconify/utils@^2.1.23":
- version "2.1.23"
- resolved "https://registry.yarnpkg.com/@iconify/utils/-/utils-2.1.23.tgz#1cde237dd5142a66d9fbd065b2fa7acc4f80f862"
- integrity sha512-YGNbHKM5tyDvdWZ92y2mIkrfvm5Fvhe6WJSkWu7vvOFhMtYDP0casZpoRz0XEHZCrYsR4stdGT3cZ52yp5qZdQ==
+"@iconify/utils@^3.0.2":
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/@iconify/utils/-/utils-3.0.2.tgz#9599607f20690cd3e7a5d2d459af0eb81a89dc2b"
+ integrity sha512-EfJS0rLfVuRuJRn4psJHtK2A9TqVnkxPpHY6lYHiB9+8eSuudsxbwMiavocG45ujOo6FJ+CIRlRnlOGinzkaGQ==
dependencies:
- "@antfu/install-pkg" "^0.1.1"
- "@antfu/utils" "^0.7.7"
+ "@antfu/install-pkg" "^1.1.0"
+ "@antfu/utils" "^9.2.0"
"@iconify/types" "^2.0.0"
- debug "^4.3.4"
+ debug "^4.4.1"
+ globals "^15.15.0"
kolorist "^1.8.0"
- local-pkg "^0.5.0"
- mlly "^1.6.1"
+ local-pkg "^1.1.1"
+ mlly "^1.7.4"
-"@ioredis/commands@^1.1.1":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@ioredis/commands/-/commands-1.2.0.tgz#6d61b3097470af1fdbbe622795b8921d42018e11"
- integrity sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==
+"@iconify/vue@^5.0.0":
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/@iconify/vue/-/vue-5.0.0.tgz#c47e4b3a225a64bbf28dce924934f23e54b061a4"
+ integrity sha512-C+KuEWIF5nSBrobFJhT//JS87OZ++QDORB6f2q2Wm6fl2mueSTpFBeBsveK0KW9hWiZ4mNiPjsh6Zs4jjdROSg==
+ dependencies:
+ "@iconify/types" "^2.0.0"
+
+"@internationalized/date@^3.5.0", "@internationalized/date@^3.9.0":
+ version "3.10.0"
+ resolved "https://registry.yarnpkg.com/@internationalized/date/-/date-3.10.0.tgz#056db64a4facdf48c6937ad498a882a8151d640a"
+ integrity sha512-oxDR/NTEJ1k+UFVQElaNIk65E/Z83HK1z1WI3lQyhTtnNg4R5oVXaPzK3jcpKG8UHKDVuDQHzn+wsxSz8RP3aw==
+ dependencies:
+ "@swc/helpers" "^0.5.0"
+
+"@internationalized/number@^3.5.0", "@internationalized/number@^3.6.5":
+ version "3.6.5"
+ resolved "https://registry.yarnpkg.com/@internationalized/number/-/number-3.6.5.tgz#1103f2832ca8d9dd3e4eecf95733d497791dbbbe"
+ integrity sha512-6hY4Kl4HPBvtfS62asS/R22JzNNy8vi/Ssev7x6EobfCp+9QIB2hKvI2EtbdJ0VSQacxVNtqhE/NmF/NZ0gm6g==
+ dependencies:
+ "@swc/helpers" "^0.5.0"
+
+"@ioredis/commands@1.4.0":
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/@ioredis/commands/-/commands-1.4.0.tgz#9f657d51cdd5d2fdb8889592aa4a355546151f25"
+ integrity sha512-aFT2yemJJo+TZCmieA7qnYGQooOS7QfNmYrzGtsYd3g9j5iDP8AimYYAesf79ohjbLG12XxC4nG5DyEnC88AsQ==
+
+"@isaacs/balanced-match@^4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz#3081dadbc3460661b751e7591d7faea5df39dd29"
+ integrity sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==
+
+"@isaacs/brace-expansion@^5.0.0":
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz#4b3dabab7d8e75a429414a96bd67bf4c1d13e0f3"
+ integrity sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==
+ dependencies:
+ "@isaacs/balanced-match" "^4.0.1"
"@isaacs/cliui@^8.0.2":
version "8.0.2"
@@ -563,13 +762,27 @@
wrap-ansi "^8.1.0"
wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
-"@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5":
- version "0.3.5"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36"
- integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==
+"@isaacs/fs-minipass@^4.0.0":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz#2d59ae3ab4b38fb4270bfa23d30f8e2e86c7fe32"
+ integrity sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==
+ dependencies:
+ minipass "^7.0.4"
+
+"@jridgewell/gen-mapping@^0.3.12", "@jridgewell/gen-mapping@^0.3.5":
+ version "0.3.13"
+ resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz#6342a19f44347518c93e43b1ac69deb3c4656a1f"
+ integrity sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==
dependencies:
- "@jridgewell/set-array" "^1.2.1"
- "@jridgewell/sourcemap-codec" "^1.4.10"
+ "@jridgewell/sourcemap-codec" "^1.5.0"
+ "@jridgewell/trace-mapping" "^0.3.24"
+
+"@jridgewell/remapping@^2.3.4", "@jridgewell/remapping@^2.3.5":
+ version "2.3.5"
+ resolved "https://registry.yarnpkg.com/@jridgewell/remapping/-/remapping-2.3.5.tgz#375c476d1972947851ba1e15ae8f123047445aa1"
+ integrity sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==
+ dependencies:
+ "@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.24"
"@jridgewell/resolve-uri@^3.1.0":
@@ -577,42 +790,31 @@
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6"
integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==
-"@jridgewell/set-array@^1.2.1":
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280"
- integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==
-
"@jridgewell/source-map@^0.3.3":
- version "0.3.6"
- resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a"
- integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==
+ version "0.3.11"
+ resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.11.tgz#b21835cbd36db656b857c2ad02ebd413cc13a9ba"
+ integrity sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==
dependencies:
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.25"
-"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15":
- version "1.4.15"
- resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
- integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
+"@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.5.0", "@jridgewell/sourcemap-codec@^1.5.5":
+ version "1.5.5"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz#6912b00d2c631c0d15ce1a7ab57cd657f2a8f8ba"
+ integrity sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==
-"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
- version "0.3.25"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
- integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==
+"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25", "@jridgewell/trace-mapping@^0.3.28":
+ version "0.3.31"
+ resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz#db15d6781c931f3a251a3dac39501c98a6082fd0"
+ integrity sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==
dependencies:
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
-"@koa/router@^12.0.1":
- version "12.0.1"
- resolved "https://registry.yarnpkg.com/@koa/router/-/router-12.0.1.tgz#1a66f92a630c02832cf5bbf0db06c9e53e423468"
- integrity sha512-ribfPYfHb+Uw3b27Eiw6NPqjhIhTpVFzEWLwyc/1Xp+DCdwRRyIlAUODX+9bPARF6aQtUu1+/PHzdNvRzcs/+Q==
- dependencies:
- debug "^4.3.4"
- http-errors "^2.0.0"
- koa-compose "^4.1.0"
- methods "^1.1.2"
- path-to-regexp "^6.2.1"
+"@jsdevtools/ono@^7.1.3":
+ version "7.1.3"
+ resolved "https://registry.yarnpkg.com/@jsdevtools/ono/-/ono-7.1.3.tgz#9df03bbd7c696a5c58885c34aa06da41c8543796"
+ integrity sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==
"@kwsites/file-exists@^1.1.1":
version "1.1.1"
@@ -626,40 +828,36 @@
resolved "https://registry.yarnpkg.com/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz#8ace5259254426ccef57f3175bc64ed7095ed919"
integrity sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==
-"@mapbox/node-pre-gyp@^1.0.5":
- version "1.0.11"
- resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz#417db42b7f5323d79e93b34a6d7a2a12c0df43fa"
- integrity sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==
+"@mapbox/node-pre-gyp@^2.0.0":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-2.0.0.tgz#16d1d9049c0218820da81a12ae084e7fe67790d1"
+ integrity sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==
dependencies:
+ consola "^3.2.3"
detect-libc "^2.0.0"
- https-proxy-agent "^5.0.0"
- make-dir "^3.1.0"
+ https-proxy-agent "^7.0.5"
node-fetch "^2.6.7"
- nopt "^5.0.0"
- npmlog "^5.0.1"
- rimraf "^3.0.2"
- semver "^7.3.5"
- tar "^6.1.11"
+ nopt "^8.0.0"
+ semver "^7.5.3"
+ tar "^7.4.0"
-"@netlify/functions@^2.6.0":
- version "2.6.0"
- resolved "https://registry.yarnpkg.com/@netlify/functions/-/functions-2.6.0.tgz#801a6fe8ceef2ce1512c637a28e53e6a3aae289b"
- integrity sha512-vU20tij0fb4nRGACqb+5SQvKd50JYyTyEhQetCMHdakcJFzjLDivvRR16u1G2Oy4A7xNAtGJF1uz8reeOtTVcQ==
+"@napi-rs/wasm-runtime@^0.2.11":
+ version "0.2.12"
+ resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz#3e78a8b96e6c33a6c517e1894efbd5385a7cb6f2"
+ integrity sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==
dependencies:
- "@netlify/serverless-functions-api" "1.14.0"
-
-"@netlify/node-cookies@^0.1.0":
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/@netlify/node-cookies/-/node-cookies-0.1.0.tgz#dda912ba618527695cf519fafa221c5e6777c612"
- integrity sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==
+ "@emnapi/core" "^1.4.3"
+ "@emnapi/runtime" "^1.4.3"
+ "@tybys/wasm-util" "^0.10.0"
-"@netlify/serverless-functions-api@1.14.0":
- version "1.14.0"
- resolved "https://registry.yarnpkg.com/@netlify/serverless-functions-api/-/serverless-functions-api-1.14.0.tgz#2bedff76cf898e24e48161aa2508776c4d261ed1"
- integrity sha512-HUNETLNvNiC2J+SB/YuRwJA9+agPrc0azSoWVk8H85GC+YE114hcS5JW+dstpKwVerp2xILE3vNWN7IMXP5Q5Q==
+"@napi-rs/wasm-runtime@^1.0.6", "@napi-rs/wasm-runtime@^1.0.7":
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.0.7.tgz#dcfea99a75f06209a235f3d941e3460a51e9b14c"
+ integrity sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==
dependencies:
- "@netlify/node-cookies" "^0.1.0"
- urlpattern-polyfill "8.0.2"
+ "@emnapi/core" "^1.5.0"
+ "@emnapi/runtime" "^1.5.0"
+ "@tybys/wasm-util" "^0.10.1"
"@nodelib/fs.scandir@2.1.5":
version "2.1.5"
@@ -669,11 +867,24 @@
"@nodelib/fs.stat" "2.0.5"
run-parallel "^1.1.9"
+"@nodelib/fs.scandir@4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-4.0.1.tgz#4b981a1d6e34e2baff9a33c84b57709e30e8ce30"
+ integrity sha512-vAkI715yhnmiPupY+dq+xenu5Tdf2TBQ66jLvBIcCddtz+5Q8LbMKaf9CIJJreez8fQ8fgaY+RaywQx8RJIWpw==
+ dependencies:
+ "@nodelib/fs.stat" "4.0.0"
+ run-parallel "^1.2.0"
+
"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
+"@nodelib/fs.stat@4.0.0":
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-4.0.0.tgz#d609b10d9c17dac012c4d7be93602ed939861e58"
+ integrity sha512-ctr6bByzksKRCV0bavi8WoQevU6plSp2IkllIsEqaiKe2mwNNnaluhnRhcsgGZHrrHk57B3lf95MkLMO3STYcg==
+
"@nodelib/fs.walk@^1.2.3":
version "1.2.8"
resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
@@ -682,501 +893,886 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@npmcli/agent@^2.0.0":
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-2.2.2.tgz#967604918e62f620a648c7975461c9c9e74fc5d5"
- integrity sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==
+"@nodelib/fs.walk@^3.0.1":
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-3.0.1.tgz#717a03eb1d07c09db32f884a5d0c06ccd9b657f4"
+ integrity sha512-nIh/M6Kh3ZtOmlY00DaUYB4xeeV6F3/ts1l29iwl3/cfyY/OuCfUx+v08zgx8TKPTifXRcjjqVQ4KB2zOYSbyw==
dependencies:
- agent-base "^7.1.0"
- http-proxy-agent "^7.0.0"
- https-proxy-agent "^7.0.1"
- lru-cache "^10.0.1"
- socks-proxy-agent "^8.0.3"
+ "@nodelib/fs.scandir" "4.0.1"
+ fastq "^1.15.0"
-"@npmcli/fs@^3.1.0":
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.0.tgz#233d43a25a91d68c3a863ba0da6a3f00924a173e"
- integrity sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==
+"@nuxt/cli@^3.29.0":
+ version "3.29.3"
+ resolved "https://registry.yarnpkg.com/@nuxt/cli/-/cli-3.29.3.tgz#c09aab287d0fab553e981093c17e0ecc631650ea"
+ integrity sha512-48GYmH4SyzR5pqd02UXVzBfrvEGaurPKMjSWxlHgqnpI5buwOYCvH+OqvHOmvnLrDP2bxR9hbDod/UIphOjMhg==
dependencies:
- semver "^7.3.5"
-
-"@npmcli/git@^5.0.0":
- version "5.0.6"
- resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-5.0.6.tgz#d7b24eb2cff98754c8868faab40405abfa1abe28"
- integrity sha512-4x/182sKXmQkf0EtXxT26GEsaOATpD7WVtza5hrYivWZeo6QefC6xq9KAXrnjtFKBZ4rZwR7aX/zClYYXgtwLw==
- dependencies:
- "@npmcli/promise-spawn" "^7.0.0"
- lru-cache "^10.0.1"
- npm-pick-manifest "^9.0.0"
- proc-log "^4.0.0"
- promise-inflight "^1.0.1"
- promise-retry "^2.0.1"
- semver "^7.3.5"
- which "^4.0.0"
-
-"@npmcli/installed-package-contents@^2.0.1":
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz#63048e5f6e40947a3a88dcbcb4fd9b76fdd37c17"
- integrity sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==
- dependencies:
- npm-bundled "^3.0.0"
- npm-normalize-package-bin "^3.0.0"
-
-"@npmcli/node-gyp@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz#101b2d0490ef1aa20ed460e4c0813f0db560545a"
- integrity sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==
-
-"@npmcli/package-json@^5.0.0", "@npmcli/package-json@^5.1.0":
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-5.1.0.tgz#10d117b5fb175acc14c70901a151c52deffc843e"
- integrity sha512-1aL4TuVrLS9sf8quCLerU3H9J4vtCtgu8VauYozrmEyU57i/EdKleCnsQ7vpnABIH6c9mnTxcH5sFkO3BlV8wQ==
- dependencies:
- "@npmcli/git" "^5.0.0"
- glob "^10.2.2"
- hosted-git-info "^7.0.0"
- json-parse-even-better-errors "^3.0.0"
- normalize-package-data "^6.0.0"
- proc-log "^4.0.0"
- semver "^7.5.3"
-
-"@npmcli/promise-spawn@^7.0.0":
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-7.0.1.tgz#a836de2f42a2245d629cf6fbb8dd6c74c74c55af"
- integrity sha512-P4KkF9jX3y+7yFUxgcUdDtLy+t4OlDGuEBLNs57AZsfSfg+uV6MLndqGpnl4831ggaEdXwR50XFoZP4VFtHolg==
- dependencies:
- which "^4.0.0"
-
-"@npmcli/redact@^1.1.0":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/redact/-/redact-1.1.0.tgz#78e53a6a34f013543a73827a07ebdc3a6f10454b"
- integrity sha512-PfnWuOkQgu7gCbnSsAisaX7hKOdZ4wSAhAzH3/ph5dSGau52kCRrMMGbiSQLwyTZpgldkZ49b0brkOr1AzGBHQ==
-
-"@npmcli/run-script@^8.0.0":
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-8.1.0.tgz#a563e5e29b1ca4e648a6b1bbbfe7220b4bfe39fc"
- integrity sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==
- dependencies:
- "@npmcli/node-gyp" "^3.0.0"
- "@npmcli/package-json" "^5.0.0"
- "@npmcli/promise-spawn" "^7.0.0"
- node-gyp "^10.0.0"
- proc-log "^4.0.0"
- which "^4.0.0"
-
-"@nuxt/content@^2.12.1":
- version "2.12.1"
- resolved "https://registry.yarnpkg.com/@nuxt/content/-/content-2.12.1.tgz#9657b89cb04b34534b245c1c8d4f3d2ccddd999a"
- integrity sha512-xW4xjyYm6zqglb17Tu0J+rpKUV1PF9zp6SLu1lopylFnerdyImtce84206HT6Zd/DJgivKtoW4dyyJn0ZaSqCQ==
- dependencies:
- "@nuxt/kit" "^3.10.3"
- "@nuxtjs/mdc" "^0.6.1"
- "@vueuse/core" "^10.9.0"
- "@vueuse/head" "^2.0.0"
- "@vueuse/nuxt" "^10.9.0"
- consola "^3.2.3"
+ c12 "^3.3.0"
+ citty "^0.1.6"
+ clipboardy "^5.0.0"
+ confbox "^0.2.2"
+ consola "^3.4.2"
defu "^6.1.4"
- destr "^2.0.3"
- json5 "^2.2.3"
- knitwork "^1.0.0"
- listhen "^1.7.2"
+ exsolve "^1.0.7"
+ fuse.js "^7.1.0"
+ get-port-please "^3.2.0"
+ giget "^2.0.0"
+ h3 "^1.15.4"
+ jiti "^2.6.1"
+ listhen "^1.9.0"
+ nypm "^0.6.2"
+ ofetch "^1.4.1"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
+ perfect-debounce "^2.0.0"
+ pkg-types "^2.3.0"
+ scule "^1.3.0"
+ semver "^7.7.2"
+ srvx "^0.8.9"
+ std-env "^3.9.0"
+ tinyexec "^1.0.1"
+ ufo "^1.6.1"
+ undici "^7.16.0"
+ youch "^4.1.0-beta.11"
+
+"@nuxt/content@^3.7.1":
+ version "3.7.1"
+ resolved "https://registry.yarnpkg.com/@nuxt/content/-/content-3.7.1.tgz#0b1e61a5ffb37c24033f7ab257811d3d5c8c7062"
+ integrity sha512-QjUyxvC3IhLca9gZuGGZslL+L2PkxFwiPD/fbXN1X0EuUfbe17H/AMt53ZRezWrxs6MOaLbyWLHzcllcjEB/jQ==
+ dependencies:
+ "@nuxt/kit" "^4.1.1"
+ "@nuxtjs/mdc" "^0.17.4"
+ "@shikijs/langs" "^3.12.2"
+ "@sqlite.org/sqlite-wasm" "3.50.4-build1"
+ "@standard-schema/spec" "^1.0.0"
+ "@webcontainer/env" "^1.1.1"
+ c12 "^3.2.0"
+ chokidar "^4.0.3"
+ consola "^3.4.2"
+ db0 "^0.3.2"
+ defu "^6.1.4"
+ destr "^2.0.5"
+ git-url-parse "^16.1.0"
+ jiti "^2.5.1"
+ json-schema-to-typescript "^15.0.4"
+ knitwork "^1.2.0"
+ listhen "^1.9.0"
+ mdast-util-to-hast "^13.2.0"
mdast-util-to-string "^4.0.0"
- mdurl "^2.0.0"
- micromark "^4.0.0"
- micromark-util-sanitize-uri "^2.0.0"
- micromark-util-types "^2.0.0"
- minisearch "^6.3.0"
- ohash "^1.1.3"
- pathe "^1.1.2"
+ micromark "^4.0.2"
+ micromark-util-character "^2.1.1"
+ micromark-util-chunked "^2.0.1"
+ micromark-util-resolve-all "^2.0.1"
+ micromark-util-sanitize-uri "^2.0.1"
+ micromatch "^4.0.8"
+ minimark "^0.2.0"
+ minimatch "^10.0.3"
+ nuxt-component-meta "^0.14.0"
+ nypm "^0.6.1"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
+ pkg-types "^2.3.0"
+ remark-mdc "^3.6.0"
scule "^1.3.0"
- shiki "^1.1.7"
+ shiki "^3.12.2"
slugify "^1.6.6"
- socket.io-client "^4.7.4"
- ufo "^1.4.0"
+ socket.io-client "^4.8.1"
+ tar "^7.4.3"
+ tinyglobby "^0.2.15"
+ ufo "^1.6.1"
+ unctx "^2.4.1"
+ unified "^11.0.5"
unist-util-stringify-position "^4.0.0"
- unstorage "^1.10.1"
- ws "^8.16.0"
+ unist-util-visit "^5.0.0"
+ ws "^8.18.3"
+ zod "^3.25.76"
+ zod-to-json-schema "^3.24.6"
"@nuxt/devalue@^2.0.2":
version "2.0.2"
resolved "https://registry.yarnpkg.com/@nuxt/devalue/-/devalue-2.0.2.tgz#5749f04df13bda4c863338d8dabaf370f45ef7c7"
integrity sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==
-"@nuxt/devtools-kit@1.2.0", "@nuxt/devtools-kit@^1.0.5":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@nuxt/devtools-kit/-/devtools-kit-1.2.0.tgz#149fa7c3baf1203df0238bd37b3558c392e84b6f"
- integrity sha512-T81TQuaN6hbQFzgvQeRAMJjcL4mgWtYvlGTAvtuvd3TFuHV7bMK+tFZaxgJXzIu1/UPO7/aO4VLCB0xl5sSwZw==
+"@nuxt/devtools-kit@2.6.5", "@nuxt/devtools-kit@^2.4.0", "@nuxt/devtools-kit@^2.6.2", "@nuxt/devtools-kit@^2.6.3", "@nuxt/devtools-kit@^2.6.5":
+ version "2.6.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/devtools-kit/-/devtools-kit-2.6.5.tgz#a1e769fcee0565f9ce27c7ab887d143c687ef265"
+ integrity sha512-t+NxoENyzJ8KZDrnbVYv3FJI5VXqSi6X4w6ZsuIIh0aKABu6+6k9nR/LoEhrM0oekn/2LDhA0NmsRZyzCXt2xQ==
dependencies:
- "@nuxt/kit" "^3.11.2"
- "@nuxt/schema" "^3.11.2"
- execa "^7.2.0"
-
-"@nuxt/devtools-ui-kit@^1.0.5":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@nuxt/devtools-ui-kit/-/devtools-ui-kit-1.2.0.tgz#89fbda7e557ad675eeade2a59a05c2d7ccc005d9"
- integrity sha512-t1Bn9ONl3UroTs2kOG1UwhYiGtQfldVDKpqJypBvH7Jsv6q2l6/CambffF/52Z0tgw+dJhSVUQ2AxxgJ5sS1yQ==
- dependencies:
- "@iconify-json/carbon" "^1.1.31"
- "@iconify-json/logos" "^1.1.42"
- "@iconify-json/ri" "^1.1.20"
- "@iconify-json/tabler" "^1.1.110"
- "@nuxt/devtools-kit" "1.2.0"
- "@nuxt/kit" "^3.11.2"
- "@nuxtjs/color-mode" "^3.4.0"
- "@unocss/core" "^0.59.4"
- "@unocss/nuxt" "^0.59.4"
- "@unocss/preset-attributify" "^0.59.4"
- "@unocss/preset-icons" "^0.59.4"
- "@unocss/preset-mini" "^0.59.4"
- "@unocss/reset" "^0.59.4"
- "@vueuse/core" "^10.9.0"
- "@vueuse/integrations" "^10.9.0"
- "@vueuse/nuxt" "^10.9.0"
- defu "^6.1.4"
- focus-trap "^7.5.4"
- splitpanes "^3.1.5"
- unocss "^0.59.4"
- v-lazy-show "^0.2.4"
+ "@nuxt/kit" "^3.19.2"
+ execa "^8.0.1"
-"@nuxt/devtools-wizard@1.2.0":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@nuxt/devtools-wizard/-/devtools-wizard-1.2.0.tgz#9bc957d2db85a0eea41d87df0cb87070696773b0"
- integrity sha512-qGepEgm7m1q9fmnwcrbijpRgdprPbczStmVlKcONYE/9PrGn+MHeHthJHD0im30FHBVQytbN11jor1sHEauGhA==
+"@nuxt/devtools-wizard@2.6.5":
+ version "2.6.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/devtools-wizard/-/devtools-wizard-2.6.5.tgz#27c3aafcdc7963bb8f5ae350e8fc2a5124280a58"
+ integrity sha512-nYYGxT4lmQDvfHL6qolNWLu0QTavsdN/98F57falPuvdgs5ev1NuYsC12hXun+5ENcnigEcoM9Ij92qopBgqmQ==
dependencies:
- consola "^3.2.3"
- diff "^5.2.0"
- execa "^7.2.0"
- global-directory "^4.0.1"
- magicast "^0.3.4"
- pathe "^1.1.2"
- pkg-types "^1.1.0"
+ consola "^3.4.2"
+ diff "^8.0.2"
+ execa "^8.0.1"
+ magicast "^0.3.5"
+ pathe "^2.0.3"
+ pkg-types "^2.3.0"
prompts "^2.4.2"
- rc9 "^2.1.2"
- semver "^7.6.0"
-
-"@nuxt/devtools@^1.1.5":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@nuxt/devtools/-/devtools-1.2.0.tgz#fff16c7f2fa53cfffb2be6f9be04c300c7f5f322"
- integrity sha512-pdEvZJqovqxJp9E1BJAaGeFdFPEpCKwuuy9l9k4exBvwvxjTfjLeyW7oPD5RUTCGGxhOswgbXwuDrO4k+x2zpA==
- dependencies:
- "@antfu/utils" "^0.7.7"
- "@nuxt/devtools-kit" "1.2.0"
- "@nuxt/devtools-wizard" "1.2.0"
- "@nuxt/kit" "^3.11.2"
- "@vue/devtools-applet" "^7.0.27"
- "@vue/devtools-core" "^7.0.27"
- "@vue/devtools-kit" "^7.0.27"
- birpc "^0.2.17"
- consola "^3.2.3"
- cronstrue "^2.49.0"
- destr "^2.0.3"
- error-stack-parser-es "^0.1.1"
- execa "^7.2.0"
- fast-glob "^3.3.2"
- flatted "^3.3.1"
- get-port-please "^3.1.2"
+ semver "^7.7.2"
+
+"@nuxt/devtools@^2.6.5":
+ version "2.6.5"
+ resolved "https://registry.yarnpkg.com/@nuxt/devtools/-/devtools-2.6.5.tgz#9a04be5de371f34ab9bb75c850ba533df3364725"
+ integrity sha512-Xh9XF1SzCTL5Zj6EULqsN2UjiNj4zWuUpS69rGAy5C55UTaj+Wn46IkDc6Q0+EKkGI279zlG6SzPRFawqPPUEw==
+ dependencies:
+ "@nuxt/devtools-kit" "2.6.5"
+ "@nuxt/devtools-wizard" "2.6.5"
+ "@nuxt/kit" "^3.19.2"
+ "@vue/devtools-core" "^7.7.7"
+ "@vue/devtools-kit" "^7.7.7"
+ birpc "^2.5.0"
+ consola "^3.4.2"
+ destr "^2.0.5"
+ error-stack-parser-es "^1.0.5"
+ execa "^8.0.1"
+ fast-npm-meta "^0.4.6"
+ get-port-please "^3.2.0"
hookable "^5.5.3"
- image-meta "^0.2.0"
+ image-meta "^0.2.1"
is-installed-globally "^1.0.0"
- launch-editor "^2.6.1"
- local-pkg "^0.5.0"
- magicast "^0.3.4"
- nypm "^0.3.8"
- ohash "^1.1.3"
- pacote "^18.0.0"
- pathe "^1.1.2"
+ launch-editor "^2.11.1"
+ local-pkg "^1.1.2"
+ magicast "^0.3.5"
+ nypm "^0.6.2"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
perfect-debounce "^1.0.0"
- pkg-types "^1.1.0"
+ pkg-types "^2.3.0"
+ semver "^7.7.2"
+ simple-git "^3.28.0"
+ sirv "^3.0.2"
+ structured-clone-es "^1.0.0"
+ tinyglobby "^0.2.15"
+ vite-plugin-inspect "^11.3.3"
+ vite-plugin-vue-tracer "^1.0.0"
+ which "^5.0.0"
+ ws "^8.18.3"
+
+"@nuxt/eslint-config@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@nuxt/eslint-config/-/eslint-config-1.9.0.tgz#d8fff1a7f844945fff34f89b07b3e9e54a8b5516"
+ integrity sha512-KLiYlX/MmWR9dhC0u7GSZQl6wyVLGAHme5aAL5fAUT1PLYgcFiJIUg1Z+b296LmwHGTa+oGPRBIk3yoDmX9/9Q==
+ dependencies:
+ "@antfu/install-pkg" "^1.1.0"
+ "@clack/prompts" "^0.11.0"
+ "@eslint/js" "^9.33.0"
+ "@nuxt/eslint-plugin" "1.9.0"
+ "@stylistic/eslint-plugin" "^5.2.3"
+ "@typescript-eslint/eslint-plugin" "^8.39.1"
+ "@typescript-eslint/parser" "^8.39.1"
+ eslint-config-flat-gitignore "^2.1.0"
+ eslint-flat-config-utils "^2.1.1"
+ eslint-merge-processors "^2.0.0"
+ eslint-plugin-import-lite "^0.3.0"
+ eslint-plugin-import-x "^4.16.1"
+ eslint-plugin-jsdoc "^54.1.0"
+ eslint-plugin-regexp "^2.10.0"
+ eslint-plugin-unicorn "^60.0.0"
+ eslint-plugin-vue "^10.4.0"
+ eslint-processor-vue-blocks "^2.0.0"
+ globals "^16.3.0"
+ local-pkg "^1.1.1"
+ pathe "^2.0.3"
+ vue-eslint-parser "^10.2.0"
+
+"@nuxt/eslint-plugin@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@nuxt/eslint-plugin/-/eslint-plugin-1.9.0.tgz#f4626c7403b3b6d14bdf9a66bfb260363e59c650"
+ integrity sha512-DY4ZSavgFyKQxI/NCOpSCUHg3dpS2O4lAdic5UmvP2NWj1xwtvmA9UwEZQ2nW2/f/Km6N+Q53UsgFSIBjz8jDQ==
+ dependencies:
+ "@typescript-eslint/types" "^8.39.1"
+ "@typescript-eslint/utils" "^8.39.1"
+
+"@nuxt/eslint@^1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@nuxt/eslint/-/eslint-1.9.0.tgz#119e7d9b5c101fb5937e49402c1b078b1c0d19ea"
+ integrity sha512-8Wm2fDD9za+vJOOhRS2jj+MzyjCNvDhS+04Y55q9W1Ai5hFjTZ1a94jlgSwaqI1B3Zt7y5fqFoEb4wKpZ3ycWg==
+ dependencies:
+ "@eslint/config-inspector" "^1.2.0"
+ "@nuxt/devtools-kit" "^2.6.2"
+ "@nuxt/eslint-config" "1.9.0"
+ "@nuxt/eslint-plugin" "1.9.0"
+ "@nuxt/kit" "^4.0.3"
+ chokidar "^4.0.3"
+ eslint-flat-config-utils "^2.1.1"
+ eslint-typegen "^2.3.0"
+ find-up "^7.0.0"
+ get-port-please "^3.2.0"
+ mlly "^1.7.4"
+ pathe "^2.0.3"
+ unimport "^5.2.0"
+
+"@nuxt/fonts@^0.11.4":
+ version "0.11.4"
+ resolved "https://registry.yarnpkg.com/@nuxt/fonts/-/fonts-0.11.4.tgz#21c0ef65cc841a33610cd2abe16e6f551c013d37"
+ integrity sha512-GbLavsC+9FejVwY+KU4/wonJsKhcwOZx/eo4EuV57C4osnF/AtEmev8xqI0DNlebMEhEGZbu1MGwDDDYbeR7Bw==
+ dependencies:
+ "@nuxt/devtools-kit" "^2.4.0"
+ "@nuxt/kit" "^3.17.3"
+ consola "^3.4.2"
+ css-tree "^3.1.0"
+ defu "^6.1.4"
+ esbuild "^0.25.4"
+ fontaine "^0.6.0"
+ h3 "^1.15.3"
+ jiti "^2.4.2"
+ magic-regexp "^0.10.0"
+ magic-string "^0.30.17"
+ node-fetch-native "^1.6.6"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
+ sirv "^3.0.1"
+ tinyglobby "^0.2.13"
+ ufo "^1.6.1"
+ unifont "^0.4.1"
+ unplugin "^2.3.3"
+ unstorage "^1.16.0"
+
+"@nuxt/icon@^2.0.0":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@nuxt/icon/-/icon-2.1.0.tgz#067ad1fc7847189c4983f987a4637dbdab45816d"
+ integrity sha512-m+XQrgzeK5gQ1HkB7G7u1os6egoD07fiHKijG7NPxqT5yZUGOjKJ7X/Le10l3QWRKyCB+IiU0t+eUqSvh+SULg==
+ dependencies:
+ "@iconify/collections" "^1.0.608"
+ "@iconify/types" "^2.0.0"
+ "@iconify/utils" "^3.0.2"
+ "@iconify/vue" "^5.0.0"
+ "@nuxt/devtools-kit" "^2.6.5"
+ "@nuxt/kit" "^4.1.3"
+ consola "^3.4.2"
+ local-pkg "^1.1.2"
+ mlly "^1.8.0"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
+ picomatch "^4.0.3"
+ std-env "^3.10.0"
+ tinyglobby "^0.2.15"
+
+"@nuxt/image@^1.11.0":
+ version "1.11.0"
+ resolved "https://registry.yarnpkg.com/@nuxt/image/-/image-1.11.0.tgz#3ece1ccaceb64b9fd2d64a6b5e3c03916811e34b"
+ integrity sha512-4kzhvb2tJfxMsa/JZeYn1sMiGbx2J/S6BQrQSdXNsHgSvywGVkFhTiQGjoP6O49EsXyAouJrer47hMeBcTcfXQ==
+ dependencies:
+ "@nuxt/kit" "^3.18.0"
+ consola "^3.4.2"
+ defu "^6.1.4"
+ h3 "^1.15.3"
+ image-meta "^0.2.1"
+ knitwork "^1.2.0"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
+ std-env "^3.9.0"
+ ufo "^1.6.1"
+ optionalDependencies:
+ ipx "^2.1.1"
+
+"@nuxt/kit@4.1.3", "@nuxt/kit@^4.0.3", "@nuxt/kit@^4.1.1", "@nuxt/kit@^4.1.2", "@nuxt/kit@^4.1.3":
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-4.1.3.tgz#c2536419c0f8b4bdd2c3eb5dd158a1cd2baba705"
+ integrity sha512-WK0yPIqcb3GQ8r4GutF6p/2fsyXnmmmkuwVLzN4YaJHrpA2tjEagjbxdjkWYeHW8o4XIKJ4micah4wPOVK49Mg==
+ dependencies:
+ c12 "^3.3.0"
+ consola "^3.4.2"
+ defu "^6.1.4"
+ destr "^2.0.5"
+ errx "^0.1.0"
+ exsolve "^1.0.7"
+ ignore "^7.0.5"
+ jiti "^2.6.1"
+ klona "^2.0.6"
+ mlly "^1.8.0"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
+ pkg-types "^2.3.0"
rc9 "^2.1.2"
scule "^1.3.0"
- semver "^7.6.0"
- simple-git "^3.24.0"
- sirv "^2.0.4"
- unimport "^3.7.1"
- vite-plugin-inspect "^0.8.3"
- vite-plugin-vue-inspector "^4.0.2"
- which "^3.0.1"
- ws "^8.16.0"
-
-"@nuxt/kit@3.11.2", "@nuxt/kit@^3.10.2", "@nuxt/kit@^3.10.3", "@nuxt/kit@^3.11.2", "@nuxt/kit@^3.8.1", "@nuxt/kit@^3.8.2":
- version "3.11.2"
- resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.11.2.tgz#dfc43c05992691bcd6aa58c14f88cf43e3abb788"
- integrity sha512-yiYKP0ZWMW7T3TCmsv4H8+jEsB/nFriRAR8bKoSqSV9bkVYWPE36sf7JDux30dQ91jSlQG6LQkB3vCHYTS2cIg==
- dependencies:
- "@nuxt/schema" "3.11.2"
- c12 "^1.10.0"
- consola "^3.2.3"
+ semver "^7.7.2"
+ std-env "^3.9.0"
+ tinyglobby "^0.2.15"
+ ufo "^1.6.1"
+ unctx "^2.4.1"
+ unimport "^5.4.1"
+ untyped "^2.0.0"
+
+"@nuxt/kit@^3.13.2", "@nuxt/kit@^3.15.4", "@nuxt/kit@^3.17.3", "@nuxt/kit@^3.17.5", "@nuxt/kit@^3.18.0", "@nuxt/kit@^3.19.2":
+ version "3.19.3"
+ resolved "https://registry.yarnpkg.com/@nuxt/kit/-/kit-3.19.3.tgz#9574122aa9f903360380368c154524ae82f02eea"
+ integrity sha512-ze46EW5xW+UxDvinvPkYt2MzR355Az1lA3bpX8KDialgnCwr+IbkBij/udbUEC6ZFbidPkfK1eKl4ESN7gMY+w==
+ dependencies:
+ c12 "^3.3.0"
+ consola "^3.4.2"
defu "^6.1.4"
- globby "^14.0.1"
- hash-sum "^2.0.0"
- ignore "^5.3.1"
- jiti "^1.21.0"
- knitwork "^1.1.0"
- mlly "^1.6.1"
- pathe "^1.1.2"
- pkg-types "^1.0.3"
+ destr "^2.0.5"
+ errx "^0.1.0"
+ exsolve "^1.0.7"
+ ignore "^7.0.5"
+ jiti "^2.6.1"
+ klona "^2.0.6"
+ knitwork "^1.2.0"
+ mlly "^1.8.0"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
+ pkg-types "^2.3.0"
+ rc9 "^2.1.2"
scule "^1.3.0"
- semver "^7.6.0"
- ufo "^1.5.3"
- unctx "^2.3.1"
- unimport "^3.7.1"
- untyped "^1.4.2"
-
-"@nuxt/schema@3.11.2", "@nuxt/schema@^3.11.2", "@nuxt/schema@^3.8.2":
- version "3.11.2"
- resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-3.11.2.tgz#530c7b4efd24c24523d8fd2d83dd66f44474d434"
- integrity sha512-Z0bx7N08itD5edtpkstImLctWMNvxTArsKXzS35ZuqyAyKBPcRjO1CU01slH0ahO30Gg9kbck3/RKNZPwfOjJg==
+ semver "^7.7.2"
+ std-env "^3.9.0"
+ tinyglobby "^0.2.15"
+ ufo "^1.6.1"
+ unctx "^2.4.1"
+ unimport "^5.4.1"
+ untyped "^2.0.0"
+
+"@nuxt/schema@4.1.3", "@nuxt/schema@^4.1.2":
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/@nuxt/schema/-/schema-4.1.3.tgz#63d3e70ee74608e7e0b6c8e5adb72d200942e05e"
+ integrity sha512-ZLkIfleKHQF0PqTDEwuVVnnE/hyMdfY4m2zX8vRC0XMSbFS1I0MFcKkzWnJaMC13NYmGPnT3sX0o3lznweKHJQ==
dependencies:
- "@nuxt/ui-templates" "^1.3.2"
- consola "^3.2.3"
+ "@vue/shared" "^3.5.22"
+ consola "^3.4.2"
defu "^6.1.4"
- hookable "^5.5.3"
- pathe "^1.1.2"
- pkg-types "^1.0.3"
- scule "^1.3.0"
- std-env "^3.7.0"
- ufo "^1.5.3"
- unimport "^3.7.1"
- untyped "^1.4.2"
+ pathe "^2.0.3"
+ pkg-types "^2.3.0"
+ std-env "^3.9.0"
+ ufo "1.6.1"
-"@nuxt/telemetry@^2.5.3":
- version "2.5.4"
- resolved "https://registry.yarnpkg.com/@nuxt/telemetry/-/telemetry-2.5.4.tgz#a395be090cef23de14204cd7b4e1a9faf81e1838"
- integrity sha512-KH6wxzsNys69daSO0xUv0LEBAfhwwjK1M+0Cdi1/vxmifCslMIY7lN11B4eywSfscbyVPAYJvANyc7XiVPImBQ==
+"@nuxt/telemetry@^2.6.6":
+ version "2.6.6"
+ resolved "https://registry.yarnpkg.com/@nuxt/telemetry/-/telemetry-2.6.6.tgz#5e663041eccbc900a743cbe82bac5b91f9a8263a"
+ integrity sha512-Zh4HJLjzvm3Cq9w6sfzIFyH9ozK5ePYVfCUzzUQNiZojFsI2k1QkSBrVI9BGc6ArKXj/O6rkI6w7qQ+ouL8Cag==
dependencies:
- "@nuxt/kit" "^3.11.2"
- ci-info "^4.0.0"
- consola "^3.2.3"
- create-require "^1.1.1"
- defu "^6.1.4"
+ "@nuxt/kit" "^3.15.4"
+ citty "^0.1.6"
+ consola "^3.4.2"
destr "^2.0.3"
- dotenv "^16.4.5"
- git-url-parse "^14.0.0"
+ dotenv "^16.4.7"
+ git-url-parse "^16.0.1"
is-docker "^3.0.0"
- jiti "^1.21.0"
- mri "^1.2.0"
- nanoid "^5.0.7"
- ofetch "^1.3.4"
- parse-git-config "^3.0.0"
- pathe "^1.1.2"
+ ofetch "^1.4.1"
+ package-manager-detector "^1.1.0"
+ pathe "^2.0.3"
rc9 "^2.1.2"
- std-env "^3.7.0"
+ std-env "^3.8.1"
-"@nuxt/ui-templates@^1.3.2":
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/@nuxt/ui-templates/-/ui-templates-1.3.3.tgz#b52728772d247d5027f5cdc0afbc82120b390ff3"
- integrity sha512-3BG5doAREcD50dbKyXgmjD4b1GzY8CUy3T41jMhHZXNDdaNwOd31IBq+D6dV00OSrDVhzrTVj0IxsUsnMyHvIQ==
-
-"@nuxt/vite-builder@3.11.2":
- version "3.11.2"
- resolved "https://registry.yarnpkg.com/@nuxt/vite-builder/-/vite-builder-3.11.2.tgz#2edd81a1482aefce4a4782ef11b072c3742cc3ad"
- integrity sha512-eXTZsAAN4dPz4eA2UD5YU2kD/DqgfyQp1UYsIdCe6+PAVe1ifkUboBjbc0piR5+3qI/S/eqk3nzxRGbiYF7Ccg==
- dependencies:
- "@nuxt/kit" "3.11.2"
- "@rollup/plugin-replace" "^5.0.5"
- "@vitejs/plugin-vue" "^5.0.4"
- "@vitejs/plugin-vue-jsx" "^3.1.0"
- autoprefixer "^10.4.19"
- clear "^0.1.0"
- consola "^3.2.3"
- cssnano "^6.1.2"
+"@nuxt/ui@^4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@nuxt/ui/-/ui-4.0.1.tgz#4962954f1bf49bec29b3a69f105cf185ea216f44"
+ integrity sha512-mtY8wairYw2WXotCYxXG0CmxbqyJWaMHYbes3p+vFaOJ2kdQHQh7QM/7ziQeZHxVNHciBcWayi6G+55ok/kHAQ==
+ dependencies:
+ "@ai-sdk/vue" "^2.0.59"
+ "@iconify/vue" "^5.0.0"
+ "@internationalized/date" "^3.9.0"
+ "@internationalized/number" "^3.6.5"
+ "@nuxt/fonts" "^0.11.4"
+ "@nuxt/icon" "^2.0.0"
+ "@nuxt/kit" "^4.1.2"
+ "@nuxt/schema" "^4.1.2"
+ "@nuxtjs/color-mode" "^3.5.2"
+ "@standard-schema/spec" "^1.0.0"
+ "@tailwindcss/postcss" "^4.1.14"
+ "@tailwindcss/vite" "^4.1.14"
+ "@tanstack/vue-table" "^8.21.3"
+ "@unhead/vue" "^2.0.17"
+ "@vueuse/core" "^13.9.0"
+ "@vueuse/integrations" "^13.9.0"
+ colortranslator "^5.0.0"
+ consola "^3.4.2"
defu "^6.1.4"
- esbuild "^0.20.2"
+ embla-carousel-auto-height "^8.6.0"
+ embla-carousel-auto-scroll "^8.6.0"
+ embla-carousel-autoplay "^8.6.0"
+ embla-carousel-class-names "^8.6.0"
+ embla-carousel-fade "^8.6.0"
+ embla-carousel-vue "^8.6.0"
+ embla-carousel-wheel-gestures "^8.1.0"
+ fuse.js "^7.1.0"
+ hookable "^5.5.3"
+ knitwork "^1.2.0"
+ magic-string "^0.30.19"
+ mlly "^1.8.0"
+ motion-v "^1.7.2"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
+ reka-ui "2.5.1"
+ scule "^1.3.0"
+ tailwind-merge "^3.3.1"
+ tailwind-variants "^3.1.1"
+ tailwindcss "^4.1.14"
+ tinyglobby "^0.2.15"
+ unplugin "^2.3.10"
+ unplugin-auto-import "^20.2.0"
+ unplugin-vue-components "^29.1.0"
+ vaul-vue "0.4.1"
+ vue-component-type-helpers "^3.1.0"
+
+"@nuxt/vite-builder@4.1.3":
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/@nuxt/vite-builder/-/vite-builder-4.1.3.tgz#ab5ba4ab84f39264810392d49b81af374757dcfd"
+ integrity sha512-yrblLSpGW6h9k+sDZa+vtevQz/6JLrPAj3n97HrEmVa6qB+4sE4HWtkMNUtWsOPe60sAm9usRsjDUkkiHZ0DpA==
+ dependencies:
+ "@nuxt/kit" "4.1.3"
+ "@rollup/plugin-replace" "^6.0.2"
+ "@vitejs/plugin-vue" "^6.0.1"
+ "@vitejs/plugin-vue-jsx" "^5.1.1"
+ autoprefixer "^10.4.21"
+ consola "^3.4.2"
+ cssnano "^7.1.1"
+ defu "^6.1.4"
+ esbuild "^0.25.10"
escape-string-regexp "^5.0.0"
- estree-walker "^3.0.3"
- externality "^1.0.2"
- fs-extra "^11.2.0"
- get-port-please "^3.1.2"
- h3 "^1.11.1"
- knitwork "^1.1.0"
- magic-string "^0.30.9"
- mlly "^1.6.1"
- ohash "^1.1.3"
+ exsolve "^1.0.7"
+ get-port-please "^3.2.0"
+ h3 "^1.15.4"
+ jiti "^2.6.1"
+ knitwork "^1.2.0"
+ magic-string "^0.30.19"
+ mlly "^1.8.0"
+ mocked-exports "^0.1.1"
+ pathe "^2.0.3"
+ pkg-types "^2.3.0"
+ postcss "^8.5.6"
+ rollup-plugin-visualizer "^6.0.4"
+ std-env "^3.9.0"
+ ufo "^1.6.1"
+ unenv "^2.0.0-rc.21"
+ vite "^7.1.9"
+ vite-node "^3.2.4"
+ vite-plugin-checker "^0.11.0"
+ vue-bundle-renderer "^2.2.0"
+
+"@nuxtjs/color-mode@^3.5.2":
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/@nuxtjs/color-mode/-/color-mode-3.5.2.tgz#4f2cbdd44009068b746e3bb0964b761b90969b73"
+ integrity sha512-cC6RfgZh3guHBMLLjrBB2Uti5eUoGM9KyauOaYS9ETmxNWBMTvpgjvSiSJp1OFljIXPIqVTJ3xtJpSNZiO3ZaA==
+ dependencies:
+ "@nuxt/kit" "^3.13.2"
pathe "^1.1.2"
- perfect-debounce "^1.0.0"
- pkg-types "^1.0.3"
- postcss "^8.4.38"
- rollup-plugin-visualizer "^5.12.0"
- std-env "^3.7.0"
- strip-literal "^2.1.0"
- ufo "^1.5.3"
- unenv "^1.9.0"
- unplugin "^1.10.1"
- vite "^5.2.8"
- vite-node "^1.4.0"
- vite-plugin-checker "^0.6.4"
- vue-bundle-renderer "^2.0.0"
-
-"@nuxtjs/color-mode@^3.2.0", "@nuxtjs/color-mode@^3.4.0":
- version "3.4.1"
- resolved "https://registry.yarnpkg.com/@nuxtjs/color-mode/-/color-mode-3.4.1.tgz#d538d0239fac3fd050d757d37be3bf93b756d98f"
- integrity sha512-vZgJqDstxInGw3RGSWbLoCLXtU1mvh1LLeuEA/X3a++DYA4ifwSbNoiSiOyb9qZHFEwz1Xr99H71sXV4IhOaEg==
- dependencies:
- "@nuxt/kit" "^3.11.2"
- pathe "^1.1.2"
- pkg-types "^1.1.0"
- semver "^7.6.0"
-
-"@nuxtjs/mdc@^0.6.1":
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/@nuxtjs/mdc/-/mdc-0.6.1.tgz#2db4630eaeb3b3ee8495e58f344acec174cf2ac9"
- integrity sha512-zS5QK7DZ/SBrjqQX1DOy7GnxKy+wbj2+LvooefOWmQqHfLTAqJLVIjuv/BmKnQWiRCq19+uysys3iY42EoY5/A==
- dependencies:
- "@nuxt/kit" "^3.10.3"
- "@shikijs/transformers" "^1.1.7"
+ pkg-types "^1.2.1"
+ semver "^7.6.3"
+
+"@nuxtjs/mdc@^0.17.4":
+ version "0.17.4"
+ resolved "https://registry.yarnpkg.com/@nuxtjs/mdc/-/mdc-0.17.4.tgz#9087d198317494fbf8a67c8096bdfc501c2094b2"
+ integrity sha512-I5ZYUWVlE2xZAkfBG6B0/l2uddDZlr8X2WPVMPYNY4zocobBjMgykj4aqYXHY+N35HRYsa+IpuUCf30bR8xCbA==
+ dependencies:
+ "@nuxt/kit" "^4.1.1"
+ "@shikijs/core" "^3.12.2"
+ "@shikijs/langs" "^3.12.2"
+ "@shikijs/themes" "^3.12.2"
+ "@shikijs/transformers" "^3.12.2"
"@types/hast" "^3.0.4"
- "@types/mdast" "^4.0.3"
- "@vue/compiler-core" "^3.4.21"
- consola "^3.2.3"
- debug "^4.3.4"
+ "@types/mdast" "^4.0.4"
+ "@vue/compiler-core" "^3.5.21"
+ consola "^3.4.2"
+ debug "^4.4.1"
defu "^6.1.4"
- destr "^2.0.3"
+ destr "^2.0.5"
detab "^3.0.2"
github-slugger "^2.0.0"
- hast-util-to-string "^3.0.0"
- mdast-util-to-hast "^13.1.0"
- micromark-util-sanitize-uri "^2.0.0"
- ohash "^1.1.3"
- parse5 "^7.1.2"
- pathe "^1.1.2"
- property-information "^6.4.1"
+ hast-util-format "^1.1.0"
+ hast-util-to-mdast "^10.1.2"
+ hast-util-to-string "^3.0.1"
+ mdast-util-to-hast "^13.2.0"
+ micromark-util-sanitize-uri "^2.0.1"
+ parse5 "^8.0.0"
+ pathe "^2.0.3"
+ property-information "^7.1.0"
rehype-external-links "^3.0.0"
+ rehype-minify-whitespace "^6.0.2"
rehype-raw "^7.0.0"
+ rehype-remark "^10.0.1"
rehype-slug "^6.0.0"
- rehype-sort-attribute-values "^5.0.0"
- rehype-sort-attributes "^5.0.0"
- remark-emoji "^4.0.1"
- remark-gfm "^4.0.0"
- remark-mdc "^3.1.0"
+ rehype-sort-attribute-values "^5.0.1"
+ rehype-sort-attributes "^5.0.1"
+ remark-emoji "^5.0.2"
+ remark-gfm "^4.0.1"
+ remark-mdc v3.6.0
remark-parse "^11.0.0"
- remark-rehype "^11.1.0"
+ remark-rehype "^11.1.2"
+ remark-stringify "^11.0.0"
scule "^1.3.0"
- shiki "^1.1.7"
- ufo "^1.4.0"
- unified "^11.0.4"
+ shiki "^3.12.2"
+ ufo "^1.6.1"
+ unified "^11.0.5"
unist-builder "^4.0.0"
unist-util-visit "^5.0.0"
- unwasm "^0.3.7"
+ unwasm "^0.3.11"
+ vfile "^6.0.3"
-"@nuxtjs/plausible@^0.2.0":
- version "0.2.4"
- resolved "https://registry.yarnpkg.com/@nuxtjs/plausible/-/plausible-0.2.4.tgz#970705847bbb5307cd7ce4f117c4fc9b09c2f771"
- integrity sha512-9HrSl9ZGKS/7bULAt8uzAGo9BJyIZebzRSLQD8ZhiODaGyRdEQlgcJBw5JgUzjcC5n4T0ZlX3FC6C3Wyp7opgA==
+"@nuxtjs/plausible@^2.0.1":
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/@nuxtjs/plausible/-/plausible-2.0.1.tgz#85eb4170d4efc695794037e6c7bd00ae83698619"
+ integrity sha512-Edr7oFIeZ9Og2lS21NhC3MRgcR7X9H1Hyjve8EsM2CycJGBlCcGKHs0+vi4KpbCVi33VlTXUUYNRPtGyeUX6Fw==
dependencies:
- "@nuxt/kit" "^3.8.2"
- defu "^6.1.3"
- pathe "^1.1.1"
- plausible-tracker "^0.3.8"
+ "@barbapapazes/plausible-tracker" "^0.5.6"
+ "@nuxt/kit" "^4.0.3"
+ defu "^6.1.4"
+ ufo "^1.6.1"
-"@nuxtjs/tailwindcss@^6.11.3":
- version "6.12.0"
- resolved "https://registry.yarnpkg.com/@nuxtjs/tailwindcss/-/tailwindcss-6.12.0.tgz#cb0ecaafd30c2773d98e175d32f411357ef210aa"
- integrity sha512-vXvEq8z177TQcx0tc10mw3O6T9WeN0iTL8hIKGDfidmr+HKReexJU01aPgHefFrCu4LJB70egYFYnywzB9lMyQ==
+"@nuxtjs/sitemap@^7.4.7":
+ version "7.4.7"
+ resolved "https://registry.yarnpkg.com/@nuxtjs/sitemap/-/sitemap-7.4.7.tgz#73509c4fc4578545968676ad3ed8c7c77ef91bf8"
+ integrity sha512-DUhX92lnCJD6tpghUmfmRIsSIoiXMS2SQ2Yd9Tg1+SnZskiKX+DGwLeAeHX8r0/9Pl/bTDpmYhs1snWcCoIkXA==
dependencies:
- "@nuxt/kit" "^3.11.2"
- autoprefixer "^10.4.19"
- consola "^3.2.3"
+ "@nuxt/devtools-kit" "^2.6.3"
+ "@nuxt/kit" "^4.1.2"
+ chalk "^5.6.2"
defu "^6.1.4"
- h3 "^1.11.1"
- pathe "^1.1.2"
- postcss "^8.4.38"
- postcss-nesting "^12.1.1"
- tailwind-config-viewer "^2.0.1"
- tailwindcss "~3.4.3"
- ufo "^1.5.3"
- unctx "^2.3.1"
-
-"@parcel/watcher-android-arm64@2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz#c2c19a3c442313ff007d2d7a9c2c1dd3e1c9ca84"
- integrity sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==
-
-"@parcel/watcher-darwin-arm64@2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz#c817c7a3b4f3a79c1535bfe54a1c2818d9ffdc34"
- integrity sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==
-
-"@parcel/watcher-darwin-x64@2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz#1a3f69d9323eae4f1c61a5f480a59c478d2cb020"
- integrity sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==
-
-"@parcel/watcher-freebsd-x64@2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz#0d67fef1609f90ba6a8a662bc76a55fc93706fc8"
- integrity sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==
-
-"@parcel/watcher-linux-arm-glibc@2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz#ce5b340da5829b8e546bd00f752ae5292e1c702d"
- integrity sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==
-
-"@parcel/watcher-linux-arm64-glibc@2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz#6d7c00dde6d40608f9554e73998db11b2b1ff7c7"
- integrity sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==
-
-"@parcel/watcher-linux-arm64-musl@2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz#bd39bc71015f08a4a31a47cd89c236b9d6a7f635"
- integrity sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==
-
-"@parcel/watcher-linux-x64-glibc@2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz#0ce29966b082fb6cdd3de44f2f74057eef2c9e39"
- integrity sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==
+ fast-xml-parser "^5.2.5"
+ h3-compression "^0.3.2"
+ nuxt-site-config "^3.2.5"
+ ofetch "^1.4.1"
+ pathe "^2.0.3"
+ pkg-types "^2.3.0"
+ radix3 "^1.1.2"
+ semver "^7.7.2"
+ sirv "^3.0.2"
+ std-env "^3.9.0"
+ ufo "^1.6.1"
+ ultrahtml "^1.6.0"
-"@parcel/watcher-linux-x64-musl@2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz#d2ebbf60e407170bb647cd6e447f4f2bab19ad16"
- integrity sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==
+"@opentelemetry/api@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz#d03eba68273dc0f7509e2a3d5cba21eae10379fe"
+ integrity sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==
+
+"@oxc-minify/binding-android-arm64@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-android-arm64/-/binding-android-arm64-0.94.0.tgz#afcdc200b2ee8890e46cd12b375b2ef9fdcb5f25"
+ integrity sha512-7VEBFFFAi4cYqlW/ziVs5XmNM/0IqAp7duBuTM/zus/EOc3Q2zhS9ApJo0zIwbRUZMlIm1RHe8Hths//xE7K1A==
+
+"@oxc-minify/binding-darwin-arm64@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-darwin-arm64/-/binding-darwin-arm64-0.94.0.tgz#d19ded91bc395eba9f868d37379a4613158133c2"
+ integrity sha512-T0k3pG/izIutpl8cQl9Xeb0TikBILGd3rglCgRhhG5G5xsk/AAAp/qsSdzBm/8yMXksfRWqE0teh7XDWKmzOXw==
+
+"@oxc-minify/binding-darwin-x64@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-darwin-x64/-/binding-darwin-x64-0.94.0.tgz#68b4538219b7f26342e002e3645ebdbcf1f05860"
+ integrity sha512-1gJeYcQf0Mmnu9Gxld2dLJGXTm9EzOQKRAjCVT2xGciKrNeekkJntDb+NdzxcSNPTjchkvbDwY6lCGZbcJx2lg==
+
+"@oxc-minify/binding-freebsd-x64@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-freebsd-x64/-/binding-freebsd-x64-0.94.0.tgz#5ed57988eb7a47b27b9e28b03f1d3865a1559412"
+ integrity sha512-LvaxVkEVLgBNQO2RUYwbmRC0cLpq5WHPsM7B4xsojwqpJNsK5l2VnTAuExvPthC1gKWlsoQsVoT03Ex/SZ4FOw==
+
+"@oxc-minify/binding-linux-arm-gnueabihf@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.94.0.tgz#798e705e17311cd9b1d030f894eb36d9af39e58c"
+ integrity sha512-o/IEdJKl7Y78fIvIRPeA4ccgmOAzeMS8tsjpO7XlENWPzS3cA/6Iy4BqMqYyqUZewgt0a2ggw0zAioIwKPiDmw==
+
+"@oxc-minify/binding-linux-arm-musleabihf@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.94.0.tgz#49c308f8df5d994a7ad86da80656c437364f18cc"
+ integrity sha512-hFCeIV/eCASCW/F2t/DR4JUKUNxn2pr4hAIBEBYDaGPvdOVMlMh+eMbg401ZiaQLwM26Dj53b5XWALwit0mGAw==
+
+"@oxc-minify/binding-linux-arm64-gnu@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.94.0.tgz#0e259f503f8daf3459199417a60d5780a3ba8511"
+ integrity sha512-so/XF1XdJdpWVUkyz45F3iNJgzoXgeNBoYfmDTuLFIXE2U7vAtE8DHkA87LlbC6Ry7KIM4Ehw7hP4Z4h7M51fA==
+
+"@oxc-minify/binding-linux-arm64-musl@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.94.0.tgz#aceb86184b84f0d2ffa99bacd98f40c428a1a6af"
+ integrity sha512-IMi2Sq3Z3xvA06Otit/D6Vo2BATZJcDHu6dHcaznBwnpO0z0+N9i3TKprIVizBHW77wq8QBLIbQaWQn4go1WwQ==
+
+"@oxc-minify/binding-linux-riscv64-gnu@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.94.0.tgz#1fe24f423f5a2ab3ca8df87a9dfaa52d15e8675b"
+ integrity sha512-1QWSK1CcmGwlJZBWCF+NpzpQ5c3WybtgVqeQX8FRIhlApBtvMsifZe4tz1FIoBoQeCKwCQzyvpIA71cpCpY/xg==
+
+"@oxc-minify/binding-linux-s390x-gnu@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.94.0.tgz#7799143159f5b67adb2d1f44a6165da58bd6ca45"
+ integrity sha512-UfIuYWcs1tb/vwGwZPPVaO38OubKfi+MkySl2ZP/3Vk4InxtQ+BxxgNqiQbhyvx14GZtkFphH3I2FZaDUsvfYg==
+
+"@oxc-minify/binding-linux-x64-gnu@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.94.0.tgz#a2e1053237aab09166ad247663256d2e25129006"
+ integrity sha512-Iokd1dfneOcNHBJH8o5cMgDkII8R7dzOFSaMrZiSZkLr+woT3Ed7uLqTKwleNKq52z5+XwmgcvO00c6ywStCpA==
+
+"@oxc-minify/binding-linux-x64-musl@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-linux-x64-musl/-/binding-linux-x64-musl-0.94.0.tgz#2afe68a0bd946a8b059dc19c9a05e2dc5a7f33f5"
+ integrity sha512-W4hFq/e21o2cOKx9xltJuVo/xgXnn4SsUioo/86pk5vCmUXg++J0PMML/oOZTSbevlklg/Vxo8slRUSU4/0PzA==
+
+"@oxc-minify/binding-wasm32-wasi@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-wasm32-wasi/-/binding-wasm32-wasi-0.94.0.tgz#6d04d271120953ee06b350e2596692f34bb68e89"
+ integrity sha512-0bOaEuh7QX8MfqyrRjNPOWhcsYl0IGoHX1nPtFIFGm0f/AJsJ+3wbyI9WvkAOXZmRgI9DMKGbDJdU6J59JxA7w==
+ dependencies:
+ "@napi-rs/wasm-runtime" "^1.0.6"
+
+"@oxc-minify/binding-win32-arm64-msvc@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.94.0.tgz#140714c049777ba95312769d5845c8c78aec63ce"
+ integrity sha512-qXuSuUmLn7v79R0noaRlJES7m0BLfBWwPAmPjzu553eJObvKS15TfHH4uxr0h31Bmy4jqWX2r+oirz/Pg+hSEg==
+
+"@oxc-minify/binding-win32-x64-msvc@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-minify/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.94.0.tgz#97715f24cfa0d9b401a47ca370e1555f12ec3790"
+ integrity sha512-DtnN623PGZlNLRyyWtUQPEATeiGVnv9l8TMV9wCdd3AFNA9bmeFzmojcpwBFj/a5DOY5mds7cwC+Z+rjTPn+OQ==
+
+"@oxc-parser/binding-android-arm64@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-android-arm64/-/binding-android-arm64-0.94.0.tgz#e2a4f11f10c08e10d4ff071b84f7a1b4f1d32f48"
+ integrity sha512-Ficqj6MggRGFkemU4pVFTyth3jWVL/zpIWjGMTXaPU81l46ZDcYVFWp9ia6nfE5mm8UdVSI2trvmK+BpNUim7g==
+
+"@oxc-parser/binding-darwin-arm64@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-darwin-arm64/-/binding-darwin-arm64-0.94.0.tgz#c6645c8bd9abd1405a50e8d8fbae7bb417b08836"
+ integrity sha512-uYyeMH9vMfb0JAdm6ZwHTgcTv53030elQKMnUbux9K5rxOCWbHUyeVACEv86V+E/Ft6RtkvWDIqUY4sYZRmcuQ==
+
+"@oxc-parser/binding-darwin-x64@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-darwin-x64/-/binding-darwin-x64-0.94.0.tgz#fdb4ae240c2a255f05e7775d9ab942bc20731d33"
+ integrity sha512-Ek1fh8dw6b+/hzLo5jjPuxkshRxekjtTfhfWZ4RehMYiApT8Rj4k+7kcQ+zV1ZaF+1+yLgNqNja2RMRqx3MHzQ==
+
+"@oxc-parser/binding-freebsd-x64@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-freebsd-x64/-/binding-freebsd-x64-0.94.0.tgz#c6209e870effafec86c867d1d42224c71f942118"
+ integrity sha512-81bE/8F252Ew179uVo9FU67dmRc+n8QSMhj6mmMxisdI3ao5MjCI5jDL19mH3UeQ9uRUBSPFILmHBDQYNZ9oKw==
+
+"@oxc-parser/binding-linux-arm-gnueabihf@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.94.0.tgz#2195609d3b32cad5c7b252bed1b9cf3135dfc58d"
+ integrity sha512-aGOU8IYXVYGN2aRrvcU5+UdM7BzIVlm4m0REQzjpblQKRdZfWFtDBRJez+fK/F10g0H1AU5DQVgbW5aeko49Jw==
+
+"@oxc-parser/binding-linux-arm-musleabihf@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.94.0.tgz#9689593b7eff34b51759550d98313e69bfdabf5f"
+ integrity sha512-69/ZuYSZ4dd7UWoEOyf+pXYPtvUZguDQqjhxMx8fI0J30sEEqs1d/DBLLnog/afHmaapPEIEr6rp9jF6bYcgNw==
+
+"@oxc-parser/binding-linux-arm64-gnu@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.94.0.tgz#3aadd37d7319b011e35567b571f3964f60f19473"
+ integrity sha512-u55PGVVfZF/frpEcv/vowfuqsCd5VKz3wta8KZ3MBxboat7XxgRIMS8VQEBiJ3aYE80taACu5EfPN1y9DhiU0Q==
+
+"@oxc-parser/binding-linux-arm64-musl@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.94.0.tgz#c94b51f41868e7c399af882295f868149c39c1b0"
+ integrity sha512-Qm2SEU7/f2b2Rg76Pj49BdMFF7Vv7+2qLPxaae4aH1515kzVv6nZW0bqCo4fPDDyiE4bryF7Jr+WKhllBxvXPw==
+
+"@oxc-parser/binding-linux-riscv64-gnu@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.94.0.tgz#342798ca4013f32bf07aa8b0a377fae6ffa56742"
+ integrity sha512-bZO3QAt0lsZjk351mVM85obMivbXG+tDiah5XmmOaGO8k4vEYmoiKr2YHJoA2eNpKhPJF8dNyIS7U+XAvirr9g==
+
+"@oxc-parser/binding-linux-s390x-gnu@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.94.0.tgz#346de0bbe6da4dda52fe77fce33e2baab47400de"
+ integrity sha512-IdbJ/rwsaEPQx11mQwGoClqhAmVaAF9+3VmDRYVmfsYsrhX1Ue1HvBdVHDvtHzJDuumC/X/codkVId9Ss+7fVg==
+
+"@oxc-parser/binding-linux-x64-gnu@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.94.0.tgz#c5556571d4bc8ffb2309666d45e49dbd19536fa3"
+ integrity sha512-TbtpRdViF3aPCQBKuEo+TcucwW3KFa6bMHVakgaJu12RZrFpO4h1IWppBbuuBQ9X7SfvpgC1YgCDGve9q6fpEA==
+
+"@oxc-parser/binding-linux-x64-musl@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-linux-x64-musl/-/binding-linux-x64-musl-0.94.0.tgz#08e7c11fcc7d4f5f65284f7122a7bb0aa64db175"
+ integrity sha512-hlfoDmWvgSbexoJ9u3KwAJwpeu91FfJR6++fQjeYXD2InK4gZow9o3DRoTpN/kslZwzUNpiRURqxey/RvWh8JQ==
+
+"@oxc-parser/binding-wasm32-wasi@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-wasm32-wasi/-/binding-wasm32-wasi-0.94.0.tgz#368844671e27c66543b495bd52752ef573d0ca62"
+ integrity sha512-VoCtQZIsRZN8mszbdizh+5MwzbgbMxsPgT2hOzzILQLNY2o2OXG3xSiFNFakVhbWc9qSTaZ/MRDsqR+IM3fLFw==
+ dependencies:
+ "@napi-rs/wasm-runtime" "^1.0.6"
+
+"@oxc-parser/binding-win32-arm64-msvc@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.94.0.tgz#a807931c7a2e67770be19e03f44f149b2a71c855"
+ integrity sha512-3wsbMqV8V7WaLdiQ2oawdgKkCgMHXJ7VDuo6uIcXauU3wK6CG0QyDXRV9bPWzorGLRBUHndu/2VB1+9dgT9fvg==
+
+"@oxc-parser/binding-win32-x64-msvc@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-parser/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.94.0.tgz#3366b076dfb68cc698f63de18d8a5e6082608f4f"
+ integrity sha512-UTQQ1576Nzhh4jr/YmvzqnuwTPOauB/TPzsnWzT+w8InHxL5JA1fmy01wB1F2BWT9AD6YV4BTB1ozRICYdAgjw==
+
+"@oxc-project/types@^0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-project/types/-/types-0.94.0.tgz#d43f9ba2129e8eb2e4069ca43485a87a9f28ee66"
+ integrity sha512-+UgQT/4o59cZfH6Cp7G0hwmqEQ0wE+AdIwhikdwnhWI9Dp8CgSY081+Q3O67/wq3VJu8mgUEB93J9EHHn70fOw==
+
+"@oxc-transform/binding-android-arm64@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-android-arm64/-/binding-android-arm64-0.94.0.tgz#a7f1b17df8b193453893a6cc4530fd0df5e72b82"
+ integrity sha512-abxgEoomc5HNbDQaGhBWguR+W4cdrcEIwV8xIQ2qpUuhEUoHy6nQLfN/gREAZMdkyIaKwk12FckB9aNxVTte2w==
+
+"@oxc-transform/binding-darwin-arm64@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-darwin-arm64/-/binding-darwin-arm64-0.94.0.tgz#312bf55c528e2d6fecdfdbe83e2b97999bbf350e"
+ integrity sha512-HbnmwC1pZ9M/nXqA36TpwF7vcXk+PgLMxDvvza5C9CCivfi3MUfqCvFMvRI0snlVm2PK2GAwWJjBtng1fR8LJw==
+
+"@oxc-transform/binding-darwin-x64@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-darwin-x64/-/binding-darwin-x64-0.94.0.tgz#8866bac26aa83722c46e2d56f8de0d8afe04b418"
+ integrity sha512-GADv5xcClQpYj5d6GLdPF6Qz/3OSn0d/LKhDklpW/5S42RQsGxI+83iXF1e61KITd4yp4VAvjEiuDM52zb4xYQ==
+
+"@oxc-transform/binding-freebsd-x64@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-freebsd-x64/-/binding-freebsd-x64-0.94.0.tgz#3684da8ae64f6e4785a4507a23da1a781788a8ae"
+ integrity sha512-5H5V+H1CZoRQwbgAt/wLrN8oZwuYGP6xdXTuGUW2C2ON1DynMyxC4Padf8vjPcKbQph5GnLAuoaTafxokE2Z/Q==
+
+"@oxc-transform/binding-linux-arm-gnueabihf@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.94.0.tgz#3868d2989073267ce598bfd88b36c8ef71f52b60"
+ integrity sha512-BoWVkKUqgmUs4hDvGPgCSUkIeEMBVvHU/mO348Dhp7XT9ijdnSBmRzY6hFaqRSq768Hn6KblM0NM1QV7jEvKOw==
+
+"@oxc-transform/binding-linux-arm-musleabihf@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.94.0.tgz#c42ec62e6e819d10e94e4dd12c224be03d2fd7d0"
+ integrity sha512-XUAyt2EtSDycljMKfgDVg/T5C3aF5dR1mfMJAZUCPQkfJjXZwA/C0DTTC/xPlPm68WA4uRtVNLqExTHJ3JOPwg==
+
+"@oxc-transform/binding-linux-arm64-gnu@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.94.0.tgz#152cbe8df3019cbe136333a9d2e0bcde0668535c"
+ integrity sha512-5Y7FI2FgawingojBEo3df4sI/Sq73UhVZy3DlT9o94Pgu8o+ujlKPD20kFmOJ1jQNEJ4ScKr5vh6pemHSZjUgA==
+
+"@oxc-transform/binding-linux-arm64-musl@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.94.0.tgz#260d694e08dd17ac349372a5bb2beeff63b62c0f"
+ integrity sha512-QiyHubpKo7upYPfwB+8bjaTczd60PJdL2zJrMKgL+CDlmP6HZlnWXZkeVTA3S6QXnbulRlrtERmqS2DePszG0g==
+
+"@oxc-transform/binding-linux-riscv64-gnu@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.94.0.tgz#49fc5d69edef5d85b088be348192a7b5db65545a"
+ integrity sha512-vh3PZGmoUCbfkqVGuB7fweuqthYxzAAGqhiAJAn8x4V+R86W5esCtxbm+PTyVawBT/eoq1cU8HhNVqE0rQlChg==
+
+"@oxc-transform/binding-linux-s390x-gnu@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.94.0.tgz#92f089385019a7f711597b68e13b49159a70c246"
+ integrity sha512-DT3m7cF612RdHBmYK3Ave6OVT1iSvlbKo8T+81n6ZcFXO+L8vDJHzwMwMOXfeOLQ15zr0WmSHqBOZ14tHKNidw==
+
+"@oxc-transform/binding-linux-x64-gnu@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.94.0.tgz#749b043463553bab2fbec403c5d55458f285ed0a"
+ integrity sha512-kK5dt8wfxUD3MGXnLHWxv57oYinIwoRFcjw2oJD5DCoGTeXCmrFk4D0eGPAlZKOm7uvWMs9yNI8rg1KY5nEs1w==
+
+"@oxc-transform/binding-linux-x64-musl@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-linux-x64-musl/-/binding-linux-x64-musl-0.94.0.tgz#594540fc314e514556c7996bba157bc467450e69"
+ integrity sha512-+zfNBO2qEPcSPTHVUxsiG3Hm0vxWzuL+DZX0wbbtjKwwhH2Jr1Eo26R+Dwc1SfbvoWen36NitKkd2arkpMW8KQ==
+
+"@oxc-transform/binding-wasm32-wasi@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-wasm32-wasi/-/binding-wasm32-wasi-0.94.0.tgz#8ed7000d7f670072d2bb8eee883231004b391f60"
+ integrity sha512-rn3c2wGT3ha6j0VLykYOkXU5YyQYIeGXRsDPP7xyiZHVTVssoM0X1BuheFlgxmC1POXMT+dAAcVOFG5MdW1bnQ==
+ dependencies:
+ "@napi-rs/wasm-runtime" "^1.0.6"
+
+"@oxc-transform/binding-win32-arm64-msvc@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.94.0.tgz#45612a8d7ea2066e20ba22c8ba45d72b77982532"
+ integrity sha512-An/Dd+I8dH0b+VLEdfTrZP53S4Fha3w/aD71d1uZB14aU02hBt3ZwU8IE3RGZIJPxub9OZmCmJN66uTqkT6oXg==
+
+"@oxc-transform/binding-win32-x64-msvc@0.94.0":
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/@oxc-transform/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.94.0.tgz#61b4e153cdf5ae4e83b2baf8d388a51bda13c5ab"
+ integrity sha512-HEE/8x6H67jPlkCDDB3xl74eR86zY6nLAql6onmidF5JPNXt9v2XGB6xEwr4brUIaMLPkl90plbdCy9jWhEjdQ==
+
+"@parcel/watcher-android-arm64@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz#507f836d7e2042f798c7d07ad19c3546f9848ac1"
+ integrity sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==
+
+"@parcel/watcher-darwin-arm64@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz#3d26dce38de6590ef79c47ec2c55793c06ad4f67"
+ integrity sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==
+
+"@parcel/watcher-darwin-x64@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz#99f3af3869069ccf774e4ddfccf7e64fd2311ef8"
+ integrity sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==
+
+"@parcel/watcher-freebsd-x64@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz#14d6857741a9f51dfe51d5b08b7c8afdbc73ad9b"
+ integrity sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==
+
+"@parcel/watcher-linux-arm-glibc@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz#43c3246d6892381db473bb4f663229ad20b609a1"
+ integrity sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==
+
+"@parcel/watcher-linux-arm-musl@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz#663750f7090bb6278d2210de643eb8a3f780d08e"
+ integrity sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==
+
+"@parcel/watcher-linux-arm64-glibc@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz#ba60e1f56977f7e47cd7e31ad65d15fdcbd07e30"
+ integrity sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==
+
+"@parcel/watcher-linux-arm64-musl@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz#f7fbcdff2f04c526f96eac01f97419a6a99855d2"
+ integrity sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==
+
+"@parcel/watcher-linux-x64-glibc@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz#4d2ea0f633eb1917d83d483392ce6181b6a92e4e"
+ integrity sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==
+
+"@parcel/watcher-linux-x64-musl@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz#277b346b05db54f55657301dd77bdf99d63606ee"
+ integrity sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==
"@parcel/watcher-wasm@^2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-wasm/-/watcher-wasm-2.4.1.tgz#c4353e4fdb96ee14389856f7f6f6d21b7dcef9e1"
- integrity sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-wasm/-/watcher-wasm-2.5.1.tgz#78b0395319dcc412b214f027593351f932c094a5"
+ integrity sha512-RJxlQQLkaMMIuWRozy+z2vEqbaQlCuaCgVZIUCzQLYggY22LZbP5Y1+ia+FD724Ids9e+XIyOLXLrLgQSHIthw==
dependencies:
is-glob "^4.0.3"
micromatch "^4.0.5"
napi-wasm "^1.1.0"
-"@parcel/watcher-win32-arm64@2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz#eb4deef37e80f0b5e2f215dd6d7a6d40a85f8adc"
- integrity sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==
+"@parcel/watcher-win32-arm64@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz#7e9e02a26784d47503de1d10e8eab6cceb524243"
+ integrity sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==
-"@parcel/watcher-win32-ia32@2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz#94fbd4b497be39fd5c8c71ba05436927842c9df7"
- integrity sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==
+"@parcel/watcher-win32-ia32@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz#2d0f94fa59a873cdc584bf7f6b1dc628ddf976e6"
+ integrity sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==
-"@parcel/watcher-win32-x64@2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz#4bf920912f67cae5f2d264f58df81abfea68dadf"
- integrity sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==
+"@parcel/watcher-win32-x64@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz#ae52693259664ba6f2228fa61d7ee44b64ea0947"
+ integrity sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==
"@parcel/watcher@^2.4.1":
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.4.1.tgz#a50275151a1bb110879c6123589dba90c19f1bf8"
- integrity sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.5.1.tgz#342507a9cfaaf172479a882309def1e991fb1200"
+ integrity sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==
dependencies:
detect-libc "^1.0.3"
is-glob "^4.0.3"
micromatch "^4.0.5"
node-addon-api "^7.0.0"
optionalDependencies:
- "@parcel/watcher-android-arm64" "2.4.1"
- "@parcel/watcher-darwin-arm64" "2.4.1"
- "@parcel/watcher-darwin-x64" "2.4.1"
- "@parcel/watcher-freebsd-x64" "2.4.1"
- "@parcel/watcher-linux-arm-glibc" "2.4.1"
- "@parcel/watcher-linux-arm64-glibc" "2.4.1"
- "@parcel/watcher-linux-arm64-musl" "2.4.1"
- "@parcel/watcher-linux-x64-glibc" "2.4.1"
- "@parcel/watcher-linux-x64-musl" "2.4.1"
- "@parcel/watcher-win32-arm64" "2.4.1"
- "@parcel/watcher-win32-ia32" "2.4.1"
- "@parcel/watcher-win32-x64" "2.4.1"
+ "@parcel/watcher-android-arm64" "2.5.1"
+ "@parcel/watcher-darwin-arm64" "2.5.1"
+ "@parcel/watcher-darwin-x64" "2.5.1"
+ "@parcel/watcher-freebsd-x64" "2.5.1"
+ "@parcel/watcher-linux-arm-glibc" "2.5.1"
+ "@parcel/watcher-linux-arm-musl" "2.5.1"
+ "@parcel/watcher-linux-arm64-glibc" "2.5.1"
+ "@parcel/watcher-linux-arm64-musl" "2.5.1"
+ "@parcel/watcher-linux-x64-glibc" "2.5.1"
+ "@parcel/watcher-linux-x64-musl" "2.5.1"
+ "@parcel/watcher-win32-arm64" "2.5.1"
+ "@parcel/watcher-win32-ia32" "2.5.1"
+ "@parcel/watcher-win32-x64" "2.5.1"
"@pkgjs/parseargs@^0.11.0":
version "0.11.0"
@@ -1184,9 +1780,30 @@
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
"@polka/url@^1.0.0-next.24":
- version "1.0.0-next.25"
- resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.25.tgz#f077fdc0b5d0078d30893396ff4827a13f99e817"
- integrity sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==
+ version "1.0.0-next.29"
+ resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.29.tgz#5a40109a1ab5f84d6fd8fc928b19f367cbe7e7b1"
+ integrity sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==
+
+"@poppinss/colors@^4.1.5":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@poppinss/colors/-/colors-4.1.5.tgz#09273b845a4816f5fd9c53c78a3bc656650fe18f"
+ integrity sha512-FvdDqtcRCtz6hThExcFOgW0cWX+xwSMWcRuQe5ZEb2m7cVQOAVZOIMt+/v9RxGiD9/OY16qJBXK4CVKWAPalBw==
+ dependencies:
+ kleur "^4.1.5"
+
+"@poppinss/dumper@^0.6.4":
+ version "0.6.4"
+ resolved "https://registry.yarnpkg.com/@poppinss/dumper/-/dumper-0.6.4.tgz#b902ff0b2850f5367f947ffdb2d7154f22856d43"
+ integrity sha512-iG0TIdqv8xJ3Lt9O8DrPRxw1MRLjNpoqiSGU03P/wNLP/s0ra0udPJ1J2Tx5M0J3H/cVyEgpbn8xUKRY9j59kQ==
+ dependencies:
+ "@poppinss/colors" "^4.1.5"
+ "@sindresorhus/is" "^7.0.2"
+ supports-color "^10.0.0"
+
+"@poppinss/exception@^1.2.2":
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/@poppinss/exception/-/exception-1.2.2.tgz#8d30d42e126c54fe84e997433e4dcac610090743"
+ integrity sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg==
"@resvg/resvg-js-android-arm-eabi@2.6.2":
version "2.6.2"
@@ -1248,7 +1865,7 @@
resolved "https://registry.yarnpkg.com/@resvg/resvg-js-win32-x64-msvc/-/resvg-js-win32-x64-msvc-2.6.2.tgz#cb0ad04525d65f3def4c8d346157a57976d5b388"
integrity sha512-ZXtYhtUr5SSaBrUDq7DiyjOFJqBVL/dOBN7N/qmi/pO0IgiWW/f/ue3nbvu9joWE5aAKDoIzy/CxsY0suwGosQ==
-"@resvg/resvg-js@^2.6.0":
+"@resvg/resvg-js@^2.6.2":
version "2.6.2"
resolved "https://registry.yarnpkg.com/@resvg/resvg-js/-/resvg-js-2.6.2.tgz#3e92a907d88d879256c585347c5b21a7f3bb5b46"
integrity sha512-xBaJish5OeGmniDj9cW5PRa/PtmuVU3ziqrbr5xJj901ZDN4TosrVaNZpEiLZAxdfnhAe7uQ7QFWfjPe9d9K2Q==
@@ -1266,29 +1883,38 @@
"@resvg/resvg-js-win32-ia32-msvc" "2.6.2"
"@resvg/resvg-js-win32-x64-msvc" "2.6.2"
-"@resvg/resvg-wasm@^2.6.0":
+"@resvg/resvg-wasm@^2.6.2":
version "2.6.2"
resolved "https://registry.yarnpkg.com/@resvg/resvg-wasm/-/resvg-wasm-2.6.2.tgz#128ba6be09a9af776cb01b3e7957d5680724eb34"
integrity sha512-FqALmHI8D4o6lk/LRWDnhw95z5eO+eAa6ORjVg09YRR7BkcM6oPHU9uyC0gtQG5vpFLvgpeU4+zEAz2H8APHNw==
-"@rollup/plugin-alias@^5.1.0":
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/@rollup/plugin-alias/-/plugin-alias-5.1.0.tgz#99a94accc4ff9a3483be5baeedd5d7da3b597e93"
- integrity sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==
- dependencies:
- slash "^4.0.0"
+"@rolldown/pluginutils@1.0.0-beta.29":
+ version "1.0.0-beta.29"
+ resolved "https://registry.yarnpkg.com/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.29.tgz#f8fc9a8788757dccba0d3b7fee93183621773d4c"
+ integrity sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==
+
+"@rolldown/pluginutils@^1.0.0-beta.34":
+ version "1.0.0-beta.44"
+ resolved "https://registry.yarnpkg.com/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.44.tgz#ac8dcf86c50b177f7849a0a21df7e78b08eda2dc"
+ integrity sha512-g6eW7Zwnr2c5RADIoqziHoVs6b3W5QTQ4+qbpfjbkMJ9x+8Og211VW/oot2dj9dVwaK/UyC6Yo+02gV+wWQVNg==
+
+"@rollup/plugin-alias@^5.1.1":
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/@rollup/plugin-alias/-/plugin-alias-5.1.1.tgz#53601d88cda8b1577aa130b4a6e452283605bf26"
+ integrity sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==
-"@rollup/plugin-commonjs@^25.0.7":
- version "25.0.7"
- resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.7.tgz#145cec7589ad952171aeb6a585bbeabd0fd3b4cf"
- integrity sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==
+"@rollup/plugin-commonjs@^28.0.6":
+ version "28.0.8"
+ resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-28.0.8.tgz#ba125055ebbb8375d2d2e465a3bedf434f5b2929"
+ integrity sha512-o1Ug9PxYsF61R7/NXO/GgMZZproLd/WH2XA53Tp9ppf6bU1lMlTtC/gUM6zM3mesi2E0rypk+PNtVrELREyWEQ==
dependencies:
"@rollup/pluginutils" "^5.0.1"
commondir "^1.0.1"
estree-walker "^2.0.2"
- glob "^8.0.3"
+ fdir "^6.2.0"
is-reference "1.2.1"
magic-string "^0.30.3"
+ picomatch "^4.0.2"
"@rollup/plugin-inject@^5.0.5":
version "5.0.5"
@@ -1306,22 +1932,21 @@
dependencies:
"@rollup/pluginutils" "^5.1.0"
-"@rollup/plugin-node-resolve@^15.2.3":
- version "15.2.3"
- resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz#e5e0b059bd85ca57489492f295ce88c2d4b0daf9"
- integrity sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==
+"@rollup/plugin-node-resolve@^16.0.2":
+ version "16.0.3"
+ resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-16.0.3.tgz#0988e6f2cbb13316b0f5e7213f757bc9ed44928f"
+ integrity sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==
dependencies:
"@rollup/pluginutils" "^5.0.1"
"@types/resolve" "1.20.2"
deepmerge "^4.2.2"
- is-builtin-module "^3.2.1"
is-module "^1.0.0"
resolve "^1.22.1"
-"@rollup/plugin-replace@^5.0.5":
- version "5.0.5"
- resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-5.0.5.tgz#33d5653dce6d03cb24ef98bef7f6d25b57faefdf"
- integrity sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==
+"@rollup/plugin-replace@^6.0.2":
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-6.0.2.tgz#2f565d312d681e4570ff376c55c5c08eb6f1908d"
+ integrity sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==
dependencies:
"@rollup/pluginutils" "^5.0.1"
magic-string "^0.30.3"
@@ -1335,231 +1960,407 @@
smob "^1.0.0"
terser "^5.17.4"
-"@rollup/pluginutils@^4.0.0":
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d"
- integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==
- dependencies:
- estree-walker "^2.0.1"
- picomatch "^2.2.2"
-
-"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.0.2", "@rollup/pluginutils@^5.0.4", "@rollup/pluginutils@^5.1.0":
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz#7e53eddc8c7f483a4ad0b94afb1f7f5fd3c771e0"
- integrity sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==
+"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.1.0", "@rollup/pluginutils@^5.1.3":
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.3.0.tgz#57ba1b0cbda8e7a3c597a4853c807b156e21a7b4"
+ integrity sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==
dependencies:
"@types/estree" "^1.0.0"
estree-walker "^2.0.2"
- picomatch "^2.3.1"
-
-"@rollup/rollup-android-arm-eabi@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.1.tgz#4a5135e88d522dbf85c4ca43ad14af9dab27bd07"
- integrity sha512-P6Wg856Ou/DLpR+O0ZLneNmrv7QpqBg+hK4wE05ijbC/t349BRfMfx+UFj5Ha3fCFopIa6iSZlpdaB4agkWp2Q==
-
-"@rollup/rollup-android-arm64@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.1.tgz#e32d5e6511a49ddd64c22f8b3668049f63b7b04c"
- integrity sha512-piwZDjuW2WiHr05djVdUkrG5JbjnGbtx8BXQchYCMfib/nhjzWoiScelZ+s5IJI7lecrwSxHCzW026MWBL+oJQ==
-
-"@rollup/rollup-darwin-arm64@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.1.tgz#d57357c6519ae10605dd5f1881534f490fd1ae3c"
- integrity sha512-LsZXXIsN5Q460cKDT4Y+bzoPDhBmO5DTr7wP80d+2EnYlxSgkwdPfE3hbE+Fk8dtya+8092N9srjBTJ0di8RIA==
-
-"@rollup/rollup-darwin-x64@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.1.tgz#2291592328f6a2fb5dba3f1f41a05a078325a674"
- integrity sha512-S7TYNQpWXB9APkxu/SLmYHezWwCoZRA9QLgrDeml+SR2A1LLPD2DBUdUlvmCF7FUpRMKvbeeWky+iizQj65Etw==
-
-"@rollup/rollup-linux-arm-gnueabihf@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.1.tgz#8851254fc581d860940ab27009c07dde80666e82"
- integrity sha512-Lq2JR5a5jsA5um2ZoLiXXEaOagnVyCpCW7xvlcqHC7y46tLwTEgUSTM3a2TfmmTMmdqv+jknUioWXlmxYxE9Yw==
-
-"@rollup/rollup-linux-arm-musleabihf@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.1.tgz#31c41636467cb0dd5f19e306929f2f4c54bb98dd"
- integrity sha512-9BfzwyPNV0IizQoR+5HTNBGkh1KXE8BqU0DBkqMngmyFW7BfuIZyMjQ0s6igJEiPSBvT3ZcnIFohZ19OqjhDPg==
-
-"@rollup/rollup-linux-arm64-gnu@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.1.tgz#30d3e02585c7b1d2ea96b2834a79aeb1fb10237b"
- integrity sha512-e2uWaoxo/rtzA52OifrTSXTvJhAXb0XeRkz4CdHBK2KtxrFmuU/uNd544Ogkpu938BzEfvmWs8NZ8Axhw33FDw==
-
-"@rollup/rollup-linux-arm64-musl@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.1.tgz#e6a4cdb552ff859b2fce275937999789ae72f659"
- integrity sha512-ekggix/Bc/d/60H1Mi4YeYb/7dbal1kEDZ6sIFVAE8pUSx7PiWeEh+NWbL7bGu0X68BBIkgF3ibRJe1oFTksQQ==
-
-"@rollup/rollup-linux-powerpc64le-gnu@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.1.tgz#35b5af3ded0b20dd7cc00813d96f9823b321d2ea"
- integrity sha512-UGV0dUo/xCv4pkr/C8KY7XLFwBNnvladt8q+VmdKrw/3RUd3rD0TptwjisvE2TTnnlENtuY4/PZuoOYRiGp8Gw==
-
-"@rollup/rollup-linux-riscv64-gnu@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.1.tgz#59fef3d0a5feee3b072d92898c9d62c0c7e6e95c"
- integrity sha512-gEYmYYHaehdvX46mwXrU49vD6Euf1Bxhq9pPb82cbUU9UT2NV+RSckQ5tKWOnNXZixKsy8/cPGtiUWqzPuAcXQ==
-
-"@rollup/rollup-linux-s390x-gnu@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.1.tgz#004f361e29c5b6cd6fb35192583ec2adf541c366"
- integrity sha512-xeae5pMAxHFp6yX5vajInG2toST5lsCTrckSRUFwNgzYqnUjNBcQyqk1bXUxX5yhjWFl2Mnz3F8vQjl+2FRIcw==
-
-"@rollup/rollup-linux-x64-gnu@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.1.tgz#61fbc6580b972893c1e74ac460d41f6ca4143482"
- integrity sha512-AsdnINQoDWfKpBzCPqQWxSPdAWzSgnYbrJYtn6W0H2E9It5bZss99PiLA8CgmDRfvKygt20UpZ3xkhFlIfX9zQ==
-
-"@rollup/rollup-linux-x64-musl@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.1.tgz#9d8f4c016f587bab6a1c21fbb966fdb4d076bbb9"
- integrity sha512-KoB4fyKXTR+wYENkIG3fFF+5G6N4GFvzYx8Jax8BR4vmddtuqSb5oQmYu2Uu067vT/Fod7gxeQYKupm8gAcMSQ==
-
-"@rollup/rollup-win32-arm64-msvc@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.1.tgz#f1b28caca6d97beab3e3a5e623b97610a423bea5"
- integrity sha512-J0d3NVNf7wBL9t4blCNat+d0PYqAx8wOoY+/9Q5cujnafbX7BmtYk3XvzkqLmFECaWvXGLuHmKj/wrILUinmQg==
-
-"@rollup/rollup-win32-ia32-msvc@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.1.tgz#f13b76ecfba6820867f23b805f6626e02c7300ec"
- integrity sha512-xjgkWUwlq7IbgJSIxvl516FJ2iuC/7ttjsAxSPpC9kkI5iQQFHKyEN5BjbhvJ/IXIZ3yIBcW5QDlWAyrA+TFag==
-
-"@rollup/rollup-win32-x64-msvc@4.17.1":
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.1.tgz#e672de70ce490e5564fe75171373d1653b5694da"
- integrity sha512-0QbCkfk6cnnVKWqqlC0cUrrUMDMfu5ffvYMTUHf+qMN2uAb3MKP31LPcwiMXBNsvoFGs/kYdFOsuLmvppCopXA==
-
-"@shikijs/core@1.3.0":
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/@shikijs/core/-/core-1.3.0.tgz#5b93b51ddb8def1e3a1543107f9b5b0540f716f6"
- integrity sha512-7fedsBfuILDTBmrYZNFI8B6ATTxhQAasUHllHmjvSZPnoq4bULWoTpHwmuQvZ8Aq03/tAa2IGo6RXqWtHdWaCA==
+ picomatch "^4.0.2"
+
+"@rollup/rollup-android-arm-eabi@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.5.tgz#0f44a2f8668ed87b040b6fe659358ac9239da4db"
+ integrity sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==
+
+"@rollup/rollup-android-arm64@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.5.tgz#25b9a01deef6518a948431564c987bcb205274f5"
+ integrity sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==
+
+"@rollup/rollup-darwin-arm64@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.5.tgz#8a102869c88f3780c7d5e6776afd3f19084ecd7f"
+ integrity sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==
+
+"@rollup/rollup-darwin-x64@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.5.tgz#8e526417cd6f54daf1d0c04cf361160216581956"
+ integrity sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==
+
+"@rollup/rollup-freebsd-arm64@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.5.tgz#0e7027054493f3409b1f219a3eac5efd128ef899"
+ integrity sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==
+
+"@rollup/rollup-freebsd-x64@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.5.tgz#72b204a920139e9ec3d331bd9cfd9a0c248ccb10"
+ integrity sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.5.tgz#ab1b522ebe5b7e06c99504cc38f6cd8b808ba41c"
+ integrity sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==
+
+"@rollup/rollup-linux-arm-musleabihf@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.5.tgz#f8cc30b638f1ee7e3d18eac24af47ea29d9beb00"
+ integrity sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==
+
+"@rollup/rollup-linux-arm64-gnu@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.5.tgz#7af37a9e85f25db59dc8214172907b7e146c12cc"
+ integrity sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==
+
+"@rollup/rollup-linux-arm64-musl@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.5.tgz#a623eb0d3617c03b7a73716eb85c6e37b776f7e0"
+ integrity sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==
+
+"@rollup/rollup-linux-loong64-gnu@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.5.tgz#76ea038b549c5c6c5f0d062942627c4066642ee2"
+ integrity sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==
+
+"@rollup/rollup-linux-ppc64-gnu@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.5.tgz#d9a4c3f0a3492bc78f6fdfe8131ac61c7359ccd5"
+ integrity sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==
+
+"@rollup/rollup-linux-riscv64-gnu@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.5.tgz#87ab033eebd1a9a1dd7b60509f6333ec1f82d994"
+ integrity sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==
+
+"@rollup/rollup-linux-riscv64-musl@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.5.tgz#bda3eb67e1c993c1ba12bc9c2f694e7703958d9f"
+ integrity sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==
+
+"@rollup/rollup-linux-s390x-gnu@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.5.tgz#f7bc10fbe096ab44694233dc42a2291ed5453d4b"
+ integrity sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==
+
+"@rollup/rollup-linux-x64-gnu@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.5.tgz#a151cb1234cc9b2cf5e8cfc02aa91436b8f9e278"
+ integrity sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==
+
+"@rollup/rollup-linux-x64-musl@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.5.tgz#7859e196501cc3b3062d45d2776cfb4d2f3a9350"
+ integrity sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==
+
+"@rollup/rollup-openharmony-arm64@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.5.tgz#85d0df7233734df31e547c1e647d2a5300b3bf30"
+ integrity sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==
+
+"@rollup/rollup-win32-arm64-msvc@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.5.tgz#e62357d00458db17277b88adbf690bb855cac937"
+ integrity sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==
+
+"@rollup/rollup-win32-ia32-msvc@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.5.tgz#fc7cd40f44834a703c1f1c3fe8bcc27ce476cd50"
+ integrity sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==
+
+"@rollup/rollup-win32-x64-gnu@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.5.tgz#1a22acfc93c64a64a48c42672e857ee51774d0d3"
+ integrity sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==
+
+"@rollup/rollup-win32-x64-msvc@4.52.5":
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.5.tgz#1657f56326bbe0ac80eedc9f9c18fc1ddd24e107"
+ integrity sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==
+
+"@sec-ant/readable-stream@^0.4.1":
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz#60de891bb126abfdc5410fdc6166aca065f10a0c"
+ integrity sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==
-"@shikijs/transformers@^1.1.7":
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/@shikijs/transformers/-/transformers-1.3.0.tgz#b03c5733ef61e25e4f53666bf11889f8876f34e9"
- integrity sha512-3mlpg2I9CjhjE96dEWQOGeCWoPcyTov3s4aAsHmgvnTHa8MBknEnCQy8/xivJPSpD+olqOqIEoHnLfbNJK29AA==
+"@shikijs/core@3.13.0", "@shikijs/core@^3.12.2":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@shikijs/core/-/core-3.13.0.tgz#73503364a1eb51b65cf904115c62fed7a47df596"
+ integrity sha512-3P8rGsg2Eh2qIHekwuQjzWhKI4jV97PhvYjYUzGqjvJfqdQPz+nMlfWahU24GZAyW1FxFI1sYjyhfh5CoLmIUA==
dependencies:
- shiki "1.3.0"
+ "@shikijs/types" "3.13.0"
+ "@shikijs/vscode-textmate" "^10.0.2"
+ "@types/hast" "^3.0.4"
+ hast-util-to-html "^9.0.5"
-"@shuding/opentype.js@1.4.0-beta.0":
- version "1.4.0-beta.0"
- resolved "https://registry.yarnpkg.com/@shuding/opentype.js/-/opentype.js-1.4.0-beta.0.tgz#5d1e7e9e056f546aad41df1c5043f8f85d39e24b"
- integrity sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA==
+"@shikijs/engine-javascript@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@shikijs/engine-javascript/-/engine-javascript-3.13.0.tgz#d25cefdac378216a95fefdf0b3a560550393ea65"
+ integrity sha512-Ty7xv32XCp8u0eQt8rItpMs6rU9Ki6LJ1dQOW3V/56PKDcpvfHPnYFbsx5FFUP2Yim34m/UkazidamMNVR4vKg==
dependencies:
- fflate "^0.7.3"
- string.prototype.codepointat "^0.2.1"
+ "@shikijs/types" "3.13.0"
+ "@shikijs/vscode-textmate" "^10.0.2"
+ oniguruma-to-es "^4.3.3"
-"@sigstore/bundle@^2.3.0", "@sigstore/bundle@^2.3.1":
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-2.3.1.tgz#f6cdc67c8400e58ca27f0ef495b27a9327512073"
- integrity sha512-eqV17lO3EIFqCWK3969Rz+J8MYrRZKw9IBHpSo6DEcEX2c+uzDFOgHE9f2MnyDpfs48LFO4hXmk9KhQ74JzU1g==
+"@shikijs/engine-oniguruma@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@shikijs/engine-oniguruma/-/engine-oniguruma-3.13.0.tgz#ae8efa90c30e2b66c7fd5549ee747f693fbd60df"
+ integrity sha512-O42rBGr4UDSlhT2ZFMxqM7QzIU+IcpoTMzb3W7AlziI1ZF7R8eS2M0yt5Ry35nnnTX/LTLXFPUjRFCIW+Operg==
dependencies:
- "@sigstore/protobuf-specs" "^0.3.1"
+ "@shikijs/types" "3.13.0"
+ "@shikijs/vscode-textmate" "^10.0.2"
-"@sigstore/core@^1.0.0", "@sigstore/core@^1.1.0":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@sigstore/core/-/core-1.1.0.tgz#5583d8f7ffe599fa0a89f2bf289301a5af262380"
- integrity sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==
+"@shikijs/langs@3.13.0", "@shikijs/langs@^3.12.2":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@shikijs/langs/-/langs-3.13.0.tgz#51a927c8089dffb2560ac8d7549297de9d081b91"
+ integrity sha512-672c3WAETDYHwrRP0yLy3W1QYB89Hbpj+pO4KhxK6FzIrDI2FoEXNiNCut6BQmEApYLfuYfpgOZaqbY+E9b8wQ==
+ dependencies:
+ "@shikijs/types" "3.13.0"
-"@sigstore/protobuf-specs@^0.3.0", "@sigstore/protobuf-specs@^0.3.1":
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.3.1.tgz#7095819fa7c5743efde48a858c37b30fab190a09"
- integrity sha512-aIL8Z9NsMr3C64jyQzE0XlkEyBLpgEJJFDHLVVStkFV5Q3Il/r/YtY6NJWKQ4cy4AE7spP1IX5Jq7VCAxHHMfQ==
+"@shikijs/themes@3.13.0", "@shikijs/themes@^3.12.2":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@shikijs/themes/-/themes-3.13.0.tgz#ee92780f0580d4ffa8ed619b52c5eb4a95d012a3"
+ integrity sha512-Vxw1Nm1/Od8jyA7QuAenaV78BG2nSr3/gCGdBkLpfLscddCkzkL36Q5b67SrLLfvAJTOUzW39x4FHVCFriPVgg==
+ dependencies:
+ "@shikijs/types" "3.13.0"
-"@sigstore/sign@^2.3.0":
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-2.3.0.tgz#c35e10a3d707e0c69a29bd9f93fa2bdc6275817c"
- integrity sha512-tsAyV6FC3R3pHmKS880IXcDJuiFJiKITO1jxR1qbplcsBkZLBmjrEw5GbC7ikD6f5RU1hr7WnmxB/2kKc1qUWQ==
+"@shikijs/transformers@^3.12.2":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@shikijs/transformers/-/transformers-3.13.0.tgz#31c15e6187b7670bbd7370f89cfdc72067a45fd0"
+ integrity sha512-833lcuVzcRiG+fXvgslWsM2f4gHpjEgui1ipIknSizRuTgMkNZupiXE5/TVJ6eSYfhNBFhBZKkReKWO2GgYmqA==
dependencies:
- "@sigstore/bundle" "^2.3.0"
- "@sigstore/core" "^1.0.0"
- "@sigstore/protobuf-specs" "^0.3.1"
- make-fetch-happen "^13.0.0"
+ "@shikijs/core" "3.13.0"
+ "@shikijs/types" "3.13.0"
-"@sigstore/tuf@^2.3.1":
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-2.3.2.tgz#e9c5bffc2a5f3434f87195902d7f9cd7f48c70fa"
- integrity sha512-mwbY1VrEGU4CO55t+Kl6I7WZzIl+ysSzEYdA1Nv/FTrl2bkeaPXo5PnWZAVfcY2zSdhOpsUTJW67/M2zHXGn5w==
+"@shikijs/types@3.13.0":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@shikijs/types/-/types-3.13.0.tgz#d223c6e28796914fbb105a3ee63bc3af5483852e"
+ integrity sha512-oM9P+NCFri/mmQ8LoFGVfVyemm5Hi27330zuOBp0annwJdKH1kOLndw3zCtAVDehPLg9fKqoEx3Ht/wNZxolfw==
dependencies:
- "@sigstore/protobuf-specs" "^0.3.0"
- tuf-js "^2.2.0"
+ "@shikijs/vscode-textmate" "^10.0.2"
+ "@types/hast" "^3.0.4"
+
+"@shikijs/vscode-textmate@^10.0.2":
+ version "10.0.2"
+ resolved "https://registry.yarnpkg.com/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz#a90ab31d0cc1dfb54c66a69e515bf624fa7b2224"
+ integrity sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==
-"@sigstore/verify@^1.2.0":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@sigstore/verify/-/verify-1.2.0.tgz#48549186305d8a5e471a3a304cf4cb3e0c99dde7"
- integrity sha512-hQF60nc9yab+Csi4AyoAmilGNfpXT+EXdBgFkP9OgPwIBPwyqVf7JAWPtmqrrrneTmAT6ojv7OlH1f6Ix5BG4Q==
+"@shuding/opentype.js@1.4.0-beta.0":
+ version "1.4.0-beta.0"
+ resolved "https://registry.yarnpkg.com/@shuding/opentype.js/-/opentype.js-1.4.0-beta.0.tgz#5d1e7e9e056f546aad41df1c5043f8f85d39e24b"
+ integrity sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA==
dependencies:
- "@sigstore/bundle" "^2.3.1"
- "@sigstore/core" "^1.1.0"
- "@sigstore/protobuf-specs" "^0.3.1"
+ fflate "^0.7.3"
+ string.prototype.codepointat "^0.2.1"
"@sindresorhus/is@^4.6.0":
version "4.6.0"
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f"
integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==
-"@sindresorhus/merge-streams@^2.1.0":
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz#719df7fb41766bc143369eaa0dd56d8dc87c9958"
- integrity sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==
+"@sindresorhus/is@^7.0.2":
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-7.1.0.tgz#ae17a8f9188644a9be064e0e67932351f82fe967"
+ integrity sha512-7F/yz2IphV39hiS2zB4QYVkivrptHHh0K8qJJd9HhuWSdvf8AN7NpebW3CcDZDBQsUPMoDKWsY2WWgW7bqOcfA==
+
+"@sindresorhus/merge-streams@^4.0.0":
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz#abb11d99aeb6d27f1b563c38147a72d50058e339"
+ integrity sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==
"@socket.io/component-emitter@~3.1.0":
version "3.1.2"
resolved "https://registry.yarnpkg.com/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz#821f8442f4175d8f0467b9daf26e3a18e2d02af2"
integrity sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==
-"@tailwindcss/typography@^0.5.9":
- version "0.5.13"
- resolved "https://registry.yarnpkg.com/@tailwindcss/typography/-/typography-0.5.13.tgz#cd788a4fa4d0ca2506e242d512f377b22c1f7932"
- integrity sha512-ADGcJ8dX21dVVHIwTRgzrcunY6YY9uSlAHHGVKvkA+vLc5qLwEszvKts40lx7z0qc4clpjclwLeK5rVCV2P/uw==
+"@speed-highlight/core@^1.2.7":
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/@speed-highlight/core/-/core-1.2.7.tgz#eeaa7c1e7198559abbb98e4acbc93d108d35f2d3"
+ integrity sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==
+
+"@sqlite.org/sqlite-wasm@3.50.4-build1":
+ version "3.50.4-build1"
+ resolved "https://registry.yarnpkg.com/@sqlite.org/sqlite-wasm/-/sqlite-wasm-3.50.4-build1.tgz#7283358e7cfa4083a88b86bd313982046d2a7ca0"
+ integrity sha512-Qig2Wso7gPkU1PtXwFzndh+CTRzrIFxVGqv6eCetjU7YqxlHItj+GvQYwYTppCRgAPawtRN/4AJcEgB9xDHGug==
+
+"@standard-schema/spec@^1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@standard-schema/spec/-/spec-1.0.0.tgz#f193b73dc316c4170f2e82a881da0f550d551b9c"
+ integrity sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==
+
+"@stylistic/eslint-plugin@^5.2.3":
+ version "5.5.0"
+ resolved "https://registry.yarnpkg.com/@stylistic/eslint-plugin/-/eslint-plugin-5.5.0.tgz#44c2e5454ff827f962b1908f0b5939130a6b18b3"
+ integrity sha512-IeZF+8H0ns6prg4VrkhgL+yrvDXWDH2cKchrbh80ejG9dQgZWp10epHMbgRuQvgchLII/lfh6Xn3lu6+6L86Hw==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.9.0"
+ "@typescript-eslint/types" "^8.46.1"
+ eslint-visitor-keys "^4.2.1"
+ espree "^10.4.0"
+ estraverse "^5.3.0"
+ picomatch "^4.0.3"
+
+"@swc/helpers@^0.5.0", "@swc/helpers@^0.5.12":
+ version "0.5.17"
+ resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.17.tgz#5a7be95ac0f0bf186e7e6e890e7a6f6cda6ce971"
+ integrity sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==
+ dependencies:
+ tslib "^2.8.0"
+
+"@tailwindcss/node@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/node/-/node-4.1.15.tgz#7008f30cd35d67352690ead8f59389455f8003c5"
+ integrity sha512-HF4+7QxATZWY3Jr8OlZrBSXmwT3Watj0OogeDvdUY/ByXJHQ+LBtqA2brDb3sBxYslIFx6UP94BJ4X6a4L9Bmw==
+ dependencies:
+ "@jridgewell/remapping" "^2.3.4"
+ enhanced-resolve "^5.18.3"
+ jiti "^2.6.0"
+ lightningcss "1.30.2"
+ magic-string "^0.30.19"
+ source-map-js "^1.2.1"
+ tailwindcss "4.1.15"
+
+"@tailwindcss/oxide-android-arm64@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.15.tgz#ea5a49655203214bacf3af5b21373457c34d1462"
+ integrity sha512-TkUkUgAw8At4cBjCeVCRMc/guVLKOU1D+sBPrHt5uVcGhlbVKxrCaCW9OKUIBv1oWkjh4GbunD/u/Mf0ql6kEA==
+
+"@tailwindcss/oxide-darwin-arm64@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.15.tgz#6eed73058cef8cb3f0a3f984700d93049dd1549f"
+ integrity sha512-xt5XEJpn2piMSfvd1UFN6jrWXyaKCwikP4Pidcf+yfHTSzSpYhG3dcMktjNkQO3JiLCp+0bG0HoWGvz97K162w==
+
+"@tailwindcss/oxide-darwin-x64@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.15.tgz#1eba5369a071d3b06488be8c12dbb94029e69389"
+ integrity sha512-TnWaxP6Bx2CojZEXAV2M01Yl13nYPpp0EtGpUrY+LMciKfIXiLL2r/SiSRpagE5Fp2gX+rflp/Os1VJDAyqymg==
+
+"@tailwindcss/oxide-freebsd-x64@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.15.tgz#d7395ae1a6d0adcaf313ef6f94e771dd64e11b77"
+ integrity sha512-quISQDWqiB6Cqhjc3iWptXVZHNVENsWoI77L1qgGEHNIdLDLFnw3/AfY7DidAiiCIkGX/MjIdB3bbBZR/G2aJg==
+
+"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.15.tgz#7b296f228fb9bda92ec70d6607927a3eda8b9550"
+ integrity sha512-ObG76+vPlab65xzVUQbExmDU9FIeYLQ5k2LrQdR2Ud6hboR+ZobXpDoKEYXf/uOezOfIYmy2Ta3w0ejkTg9yxg==
+
+"@tailwindcss/oxide-linux-arm64-gnu@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.15.tgz#959afeee72c55a39e80f32a100e9a3ddbf73295c"
+ integrity sha512-4WbBacRmk43pkb8/xts3wnOZMDKsPFyEH/oisCm2q3aLZND25ufvJKcDUpAu0cS+CBOL05dYa8D4U5OWECuH/Q==
+
+"@tailwindcss/oxide-linux-arm64-musl@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.15.tgz#8a58e33595233628bb96e02fbb03b544680a36a2"
+ integrity sha512-AbvmEiteEj1nf42nE8skdHv73NoR+EwXVSgPY6l39X12Ex8pzOwwfi3Kc8GAmjsnsaDEbk+aj9NyL3UeyHcTLg==
+
+"@tailwindcss/oxide-linux-x64-gnu@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.15.tgz#546666cde500f80d3ff2e819de9276a9580685b1"
+ integrity sha512-+rzMVlvVgrXtFiS+ES78yWgKqpThgV19ISKD58Ck+YO5pO5KjyxLt7AWKsWMbY0R9yBDC82w6QVGz837AKQcHg==
+
+"@tailwindcss/oxide-linux-x64-musl@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.15.tgz#07e9ae8ca70bb9a4990ceee612c88781bd45a6fc"
+ integrity sha512-fPdEy7a8eQN9qOIK3Em9D3TO1z41JScJn8yxl/76mp4sAXFDfV4YXxsiptJcOwy6bGR+70ZSwFIZhTXzQeqwQg==
+
+"@tailwindcss/oxide-wasm32-wasi@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.15.tgz#82a6c5159bc562e4619cf938450a9c017837b194"
+ integrity sha512-sJ4yd6iXXdlgIMfIBXuVGp/NvmviEoMVWMOAGxtxhzLPp9LOj5k0pMEMZdjeMCl4C6Up+RM8T3Zgk+BMQ0bGcQ==
+ dependencies:
+ "@emnapi/core" "^1.5.0"
+ "@emnapi/runtime" "^1.5.0"
+ "@emnapi/wasi-threads" "^1.1.0"
+ "@napi-rs/wasm-runtime" "^1.0.7"
+ "@tybys/wasm-util" "^0.10.1"
+ tslib "^2.4.0"
+
+"@tailwindcss/oxide-win32-arm64-msvc@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.15.tgz#7e7f3f187c7a60209466b7064e78d5b70ad1945d"
+ integrity sha512-sJGE5faXnNQ1iXeqmRin7Ds/ru2fgCiaQZQQz3ZGIDtvbkeV85rAZ0QJFMDg0FrqsffZG96H1U9AQlNBRLsHVg==
+
+"@tailwindcss/oxide-win32-x64-msvc@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.15.tgz#fd4e41ed0014a8da456576be1381c12c345d1a0a"
+ integrity sha512-NLeHE7jUV6HcFKS504bpOohyi01zPXi2PXmjFfkzTph8xRxDdxkRsXm/xDO5uV5K3brrE1cCwbUYmFUSHR3u1w==
+
+"@tailwindcss/oxide@4.1.15":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/oxide/-/oxide-4.1.15.tgz#80a261e646f67bbaaa84ce2cf6c97e984fc0eae1"
+ integrity sha512-krhX+UOOgnsUuks2SR7hFafXmLQrKxB4YyRTERuCE59JlYL+FawgaAlSkOYmDRJdf1Q+IFNDMl9iRnBW7QBDfQ==
+ optionalDependencies:
+ "@tailwindcss/oxide-android-arm64" "4.1.15"
+ "@tailwindcss/oxide-darwin-arm64" "4.1.15"
+ "@tailwindcss/oxide-darwin-x64" "4.1.15"
+ "@tailwindcss/oxide-freebsd-x64" "4.1.15"
+ "@tailwindcss/oxide-linux-arm-gnueabihf" "4.1.15"
+ "@tailwindcss/oxide-linux-arm64-gnu" "4.1.15"
+ "@tailwindcss/oxide-linux-arm64-musl" "4.1.15"
+ "@tailwindcss/oxide-linux-x64-gnu" "4.1.15"
+ "@tailwindcss/oxide-linux-x64-musl" "4.1.15"
+ "@tailwindcss/oxide-wasm32-wasi" "4.1.15"
+ "@tailwindcss/oxide-win32-arm64-msvc" "4.1.15"
+ "@tailwindcss/oxide-win32-x64-msvc" "4.1.15"
+
+"@tailwindcss/postcss@^4.1.14":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/postcss/-/postcss-4.1.15.tgz#c39c6de085cfc26c2dc82868734bd63ed5875ec9"
+ integrity sha512-IZh8IT76KujRz6d15wZw4eoeViT4TqmzVWNNfpuNCTKiaZUwgr5vtPqO4HjuYDyx3MgGR5qgPt1HMzTeLJyA3g==
dependencies:
- lodash.castarray "^4.4.0"
- lodash.isplainobject "^4.0.6"
- lodash.merge "^4.6.2"
- postcss-selector-parser "6.0.10"
+ "@alloc/quick-lru" "^5.2.0"
+ "@tailwindcss/node" "4.1.15"
+ "@tailwindcss/oxide" "4.1.15"
+ postcss "^8.4.41"
+ tailwindcss "4.1.15"
-"@tanstack/virtual-core@3.5.0":
- version "3.5.0"
- resolved "https://registry.yarnpkg.com/@tanstack/virtual-core/-/virtual-core-3.5.0.tgz#108208d0f1d75271300bc5560cf9a85a1fa01e89"
- integrity sha512-KnPRCkQTyqhanNC0K63GBG3wA8I+D1fQuVnAvcBF8f13akOKeQp1gSbu6f77zCxhEk727iV5oQnbHLYzHrECLg==
+"@tailwindcss/vite@^4.1.14":
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/@tailwindcss/vite/-/vite-4.1.15.tgz#da8d5432a89f8ff091a3c34681c33bf155cf58f5"
+ integrity sha512-B6s60MZRTUil+xKoZoGe6i0Iar5VuW+pmcGlda2FX+guDuQ1G1sjiIy1W0frneVpeL/ZjZ4KEgWZHNrIm++2qA==
+ dependencies:
+ "@tailwindcss/node" "4.1.15"
+ "@tailwindcss/oxide" "4.1.15"
+ tailwindcss "4.1.15"
-"@tanstack/vue-virtual@^3.0.0-beta.60":
- version "3.5.0"
- resolved "https://registry.yarnpkg.com/@tanstack/vue-virtual/-/vue-virtual-3.5.0.tgz#5794af3b2d0cc0331ba3f671fba8770e0abd4993"
- integrity sha512-wvRQ8sFxn/NDr3WvI5XabhFovZ5MBmpEck2GHpTxYunmV63Ovpl30lRu6W5BPQo35a1GqDZ+Pvzlz6WDWRNqqw==
+"@tanstack/table-core@8.21.3":
+ version "8.21.3"
+ resolved "https://registry.yarnpkg.com/@tanstack/table-core/-/table-core-8.21.3.tgz#2977727d8fc8dfa079112d9f4d4c019110f1732c"
+ integrity sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==
+
+"@tanstack/virtual-core@3.13.12":
+ version "3.13.12"
+ resolved "https://registry.yarnpkg.com/@tanstack/virtual-core/-/virtual-core-3.13.12.tgz#1dff176df9cc8f93c78c5e46bcea11079b397578"
+ integrity sha512-1YBOJfRHV4sXUmWsFSf5rQor4Ss82G8dQWLRbnk3GA4jeP8hQt1hxXh0tmflpC0dz3VgEv/1+qwPyLeWkQuPFA==
+
+"@tanstack/vue-table@^8.21.3":
+ version "8.21.3"
+ resolved "https://registry.yarnpkg.com/@tanstack/vue-table/-/vue-table-8.21.3.tgz#09498ba5bbe5eca5aa665f9b76876da22715bb28"
+ integrity sha512-rusRyd77c5tDPloPskctMyPLFEQUeBzxdQ+2Eow4F7gDPlPOB1UnnhzfpdvqZ8ZyX2rRNGmqNnQWm87OI2OQPw==
+ dependencies:
+ "@tanstack/table-core" "8.21.3"
+
+"@tanstack/vue-virtual@^3.12.0":
+ version "3.13.12"
+ resolved "https://registry.yarnpkg.com/@tanstack/vue-virtual/-/vue-virtual-3.13.12.tgz#a66daac9e6822ce4bcba76a3954937440697c264"
+ integrity sha512-vhF7kEU9EXWXh+HdAwKJ2m3xaOnTTmgcdXcF2pim8g4GvI7eRrk2YRuV5nUlZnd/NbCIX4/Ja2OZu5EjJL06Ww==
dependencies:
- "@tanstack/virtual-core" "3.5.0"
+ "@tanstack/virtual-core" "3.13.12"
"@trysound/sax@0.2.0":
version "0.2.0"
resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
-"@tufjs/canonical-json@2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz#a52f61a3d7374833fca945b2549bc30a2dd40d0a"
- integrity sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==
-
-"@tufjs/models@2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-2.0.0.tgz#c7ab241cf11dd29deb213d6817dabb8c99ce0863"
- integrity sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==
- dependencies:
- "@tufjs/canonical-json" "2.0.0"
- minimatch "^9.0.3"
-
-"@twemoji/api@^14.1.2":
- version "14.1.2"
- resolved "https://registry.yarnpkg.com/@twemoji/api/-/api-14.1.2.tgz#9e75a59cc2ff64c6c9106902823c9b6bc5bb4a9f"
- integrity sha512-JLuszRq7t+NWJTaNwBD+Hbhf67gzn6jAqhNIDTPndEGT55kHiZTJAYRGCHZB/eA58OGVSp7mIvsJs+F/ZDJanA==
+"@tybys/wasm-util@^0.10.0", "@tybys/wasm-util@^0.10.1":
+ version "0.10.1"
+ resolved "https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz#ecddd3205cf1e2d5274649ff0eedd2991ed7f414"
+ integrity sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==
dependencies:
- fs-extra "^8.0.1"
- jsonfile "^5.0.0"
- twemoji-parser "14.0.0"
- universalify "^0.1.2"
+ tslib "^2.4.0"
"@types/debug@^4.0.0":
version "4.1.12"
@@ -1568,18 +2369,10 @@
dependencies:
"@types/ms" "*"
-"@types/estree@*", "@types/estree@1.0.5", "@types/estree@^1.0.0":
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4"
- integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==
-
-"@types/fs-extra@^11.0.3":
- version "11.0.4"
- resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-11.0.4.tgz#e16a863bb8843fba8c5004362b5a73e17becca45"
- integrity sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==
- dependencies:
- "@types/jsonfile" "*"
- "@types/node" "*"
+"@types/estree@*", "@types/estree@1.0.8", "@types/estree@^1.0.0", "@types/estree@^1.0.6", "@types/estree@^1.0.8":
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.8.tgz#958b91c991b1867ced318bedea0e215ee050726e"
+ integrity sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==
"@types/hast@^3.0.0", "@types/hast@^3.0.4":
version "3.0.4"
@@ -1588,652 +2381,666 @@
dependencies:
"@types/unist" "*"
-"@types/http-proxy@^1.17.14":
- version "1.17.14"
- resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.14.tgz#57f8ccaa1c1c3780644f8a94f9c6b5000b5e2eec"
- integrity sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==
- dependencies:
- "@types/node" "*"
+"@types/json-schema@^7.0.15":
+ version "7.0.15"
+ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
+ integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
-"@types/jsonfile@*":
- version "6.1.4"
- resolved "https://registry.yarnpkg.com/@types/jsonfile/-/jsonfile-6.1.4.tgz#614afec1a1164e7d670b4a7ad64df3e7beb7b702"
- integrity sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==
- dependencies:
- "@types/node" "*"
+"@types/lodash@^4.17.7":
+ version "4.17.20"
+ resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.20.tgz#1ca77361d7363432d29f5e55950d9ec1e1c6ea93"
+ integrity sha512-H3MHACvFUEiujabxhaI/ImO6gUrd8oOurg7LQtS7mbwIXA/cUqWrvBsaeJ23aZEPk1TAYkurjfMbSELfoCXlGA==
-"@types/mdast@^4.0.0", "@types/mdast@^4.0.2", "@types/mdast@^4.0.3":
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-4.0.3.tgz#1e011ff013566e919a4232d1701ad30d70cab333"
- integrity sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==
+"@types/mdast@^4.0.0", "@types/mdast@^4.0.4":
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-4.0.4.tgz#7ccf72edd2f1aa7dd3437e180c64373585804dd6"
+ integrity sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==
dependencies:
"@types/unist" "*"
"@types/ms@*":
- version "0.7.34"
- resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.34.tgz#10964ba0dee6ac4cd462e2795b6bebd407303433"
- integrity sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz#052aa67a48eccc4309d7f0191b7e41434b90bb78"
+ integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==
"@types/node@*":
- version "20.12.7"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.7.tgz#04080362fa3dd6c5822061aa3124f5c152cff384"
- integrity sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==
+ version "24.9.1"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-24.9.1.tgz#b7360b3c789089e57e192695a855aa4f6981a53c"
+ integrity sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg==
dependencies:
- undici-types "~5.26.4"
+ undici-types "~7.16.0"
-"@types/node@^17.0.5":
- version "17.0.45"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190"
- integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==
+"@types/parse-path@^7.0.0":
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/@types/parse-path/-/parse-path-7.1.0.tgz#1bdddfe4fb2038e76c7e622234a97d6a050a1be3"
+ integrity sha512-EULJ8LApcVEPbrfND0cRQqutIOdiIgJ1Mgrhpy755r14xMohPTEpkV/k28SJvuOs9bHRFW8x+KeDAEPiGQPB9Q==
+ dependencies:
+ parse-path "*"
"@types/resolve@1.20.2":
version "1.20.2"
resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.20.2.tgz#97d26e00cd4a0423b4af620abecf3e6f442b7975"
integrity sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==
-"@types/sax@^1.2.1":
- version "1.2.7"
- resolved "https://registry.yarnpkg.com/@types/sax/-/sax-1.2.7.tgz#ba5fe7df9aa9c89b6dff7688a19023dd2963091d"
- integrity sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==
- dependencies:
- "@types/node" "*"
-
-"@types/unist@*", "@types/unist@^3.0.0", "@types/unist@^3.0.2":
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.2.tgz#6dd61e43ef60b34086287f83683a5c1b2dc53d20"
- integrity sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==
+"@types/unist@*", "@types/unist@^3.0.0", "@types/unist@^3.0.3":
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.3.tgz#acaab0f919ce69cce629c2d4ed2eb4adc1b6c20c"
+ integrity sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==
"@types/unist@^2.0.0":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.10.tgz#04ffa7f406ab628f7f7e97ca23e290cd8ab15efc"
- integrity sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.11.tgz#11af57b127e32487774841f7a4e54eab166d03c4"
+ integrity sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==
"@types/web-bluetooth@^0.0.20":
version "0.0.20"
resolved "https://registry.yarnpkg.com/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz#f066abfcd1cbe66267cdbbf0de010d8a41b41597"
integrity sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==
-"@ungap/structured-clone@^1.0.0":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
- integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
+"@types/web-bluetooth@^0.0.21":
+ version "0.0.21"
+ resolved "https://registry.yarnpkg.com/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz#525433c784aed9b457aaa0ee3d92aeb71f346b63"
+ integrity sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==
+
+"@typescript-eslint/eslint-plugin@^8.39.1":
+ version "8.46.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.46.2.tgz#dc4ab93ee3d7e6c8e38820a0d6c7c93c7183e2dc"
+ integrity sha512-ZGBMToy857/NIPaaCucIUQgqueOiq7HeAKkhlvqVV4lm089zUFW6ikRySx2v+cAhKeUCPuWVHeimyk6Dw1iY3w==
+ dependencies:
+ "@eslint-community/regexpp" "^4.10.0"
+ "@typescript-eslint/scope-manager" "8.46.2"
+ "@typescript-eslint/type-utils" "8.46.2"
+ "@typescript-eslint/utils" "8.46.2"
+ "@typescript-eslint/visitor-keys" "8.46.2"
+ graphemer "^1.4.0"
+ ignore "^7.0.0"
+ natural-compare "^1.4.0"
+ ts-api-utils "^2.1.0"
+
+"@typescript-eslint/parser@^8.39.1":
+ version "8.46.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.46.2.tgz#dd938d45d581ac8ffa9d8a418a50282b306f7ebf"
+ integrity sha512-BnOroVl1SgrPLywqxyqdJ4l3S2MsKVLDVxZvjI1Eoe8ev2r3kGDo+PcMihNmDE+6/KjkTubSJnmqGZZjQSBq/g==
+ dependencies:
+ "@typescript-eslint/scope-manager" "8.46.2"
+ "@typescript-eslint/types" "8.46.2"
+ "@typescript-eslint/typescript-estree" "8.46.2"
+ "@typescript-eslint/visitor-keys" "8.46.2"
+ debug "^4.3.4"
-"@unhead/dom@1.9.7", "@unhead/dom@^1.7.0", "@unhead/dom@^1.9.4":
- version "1.9.7"
- resolved "https://registry.yarnpkg.com/@unhead/dom/-/dom-1.9.7.tgz#b5cdcbc84d735e28dc863a9f2e15a1a29d9666c8"
- integrity sha512-suZVi8apZCNEMKuasGboBB3njJJm+gd8G0NA89geVozJ0bz40FvLyLEJZ9LirbzpujmhgHhsUSvlq4QyslRqdQ==
+"@typescript-eslint/project-service@8.46.2":
+ version "8.46.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.46.2.tgz#ab2f02a0de4da6a7eeb885af5e059be57819d608"
+ integrity sha512-PULOLZ9iqwI7hXcmL4fVfIsBi6AN9YxRc0frbvmg8f+4hQAjQ5GYNKK0DIArNo+rOKmR/iBYwkpBmnIwin4wBg==
dependencies:
- "@unhead/schema" "1.9.7"
- "@unhead/shared" "1.9.7"
+ "@typescript-eslint/tsconfig-utils" "^8.46.2"
+ "@typescript-eslint/types" "^8.46.2"
+ debug "^4.3.4"
-"@unhead/schema@1.9.7", "@unhead/schema@^1.7.0":
- version "1.9.7"
- resolved "https://registry.yarnpkg.com/@unhead/schema/-/schema-1.9.7.tgz#44c87f89b7526b7cd81ef5c5d399a63e77d373b6"
- integrity sha512-naQGY1gQqq8DmQCxVTOeeXIqaRwbqnLEgvQl12zPEDviYxmg7TCbmKyN9uT4ZarQbJ2WYT2UtYvdSrmTXcwlBw==
+"@typescript-eslint/scope-manager@8.46.2":
+ version "8.46.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.46.2.tgz#7d37df2493c404450589acb3b5d0c69cc0670a88"
+ integrity sha512-LF4b/NmGvdWEHD2H4MsHD8ny6JpiVNDzrSZr3CsckEgCbAGZbYM4Cqxvi9L+WqDMT+51Ozy7lt2M+d0JLEuBqA==
dependencies:
- hookable "^5.5.3"
- zhead "^2.2.4"
+ "@typescript-eslint/types" "8.46.2"
+ "@typescript-eslint/visitor-keys" "8.46.2"
+
+"@typescript-eslint/tsconfig-utils@8.46.2", "@typescript-eslint/tsconfig-utils@^8.46.2":
+ version "8.46.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.46.2.tgz#d110451cb93bbd189865206ea37ef677c196828c"
+ integrity sha512-a7QH6fw4S57+F5y2FIxxSDyi5M4UfGF+Jl1bCGd7+L4KsaUY80GsiF/t0UoRFDHAguKlBaACWJRmdrc6Xfkkag==
+
+"@typescript-eslint/type-utils@8.46.2":
+ version "8.46.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.46.2.tgz#802d027864e6fb752e65425ed09f3e089fb4d384"
+ integrity sha512-HbPM4LbaAAt/DjxXaG9yiS9brOOz6fabal4uvUmaUYe6l3K1phQDMQKBRUrr06BQkxkvIZVVHttqiybM9nJsLA==
+ dependencies:
+ "@typescript-eslint/types" "8.46.2"
+ "@typescript-eslint/typescript-estree" "8.46.2"
+ "@typescript-eslint/utils" "8.46.2"
+ debug "^4.3.4"
+ ts-api-utils "^2.1.0"
+
+"@typescript-eslint/types@8.46.2", "@typescript-eslint/types@^8.34.0", "@typescript-eslint/types@^8.35.0", "@typescript-eslint/types@^8.39.1", "@typescript-eslint/types@^8.42.0", "@typescript-eslint/types@^8.46.1", "@typescript-eslint/types@^8.46.2":
+ version "8.46.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.46.2.tgz#2bad7348511b31e6e42579820e62b73145635763"
+ integrity sha512-lNCWCbq7rpg7qDsQrd3D6NyWYu+gkTENkG5IKYhUIcxSb59SQC/hEQ+MrG4sTgBVghTonNWq42bA/d4yYumldQ==
+
+"@typescript-eslint/typescript-estree@8.46.2":
+ version "8.46.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.2.tgz#ab547a27e4222bb6a3281cb7e98705272e2c7d08"
+ integrity sha512-f7rW7LJ2b7Uh2EiQ+7sza6RDZnajbNbemn54Ob6fRwQbgcIn+GWfyuHDHRYgRoZu1P4AayVScrRW+YfbTvPQoQ==
+ dependencies:
+ "@typescript-eslint/project-service" "8.46.2"
+ "@typescript-eslint/tsconfig-utils" "8.46.2"
+ "@typescript-eslint/types" "8.46.2"
+ "@typescript-eslint/visitor-keys" "8.46.2"
+ debug "^4.3.4"
+ fast-glob "^3.3.2"
+ is-glob "^4.0.3"
+ minimatch "^9.0.4"
+ semver "^7.6.0"
+ ts-api-utils "^2.1.0"
-"@unhead/shared@1.9.7":
- version "1.9.7"
- resolved "https://registry.yarnpkg.com/@unhead/shared/-/shared-1.9.7.tgz#1588ad1c3fb9c9517f48b63261d07d40a1d3a075"
- integrity sha512-srji+qaBkkGOTdtTmFxt3AebFYcpt1qQHeQva7X3dSm5nZJDoKj35BJJTZfBSRCjgvkTtsdVUT14f9p9/4BCMA==
+"@typescript-eslint/utils@8.46.2", "@typescript-eslint/utils@^8.39.1":
+ version "8.46.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.46.2.tgz#b313d33d67f9918583af205bd7bcebf20f231732"
+ integrity sha512-sExxzucx0Tud5tE0XqR0lT0psBQvEpnpiul9XbGUB1QwpWJJAps1O/Z7hJxLGiZLBKMCutjTzDgmd1muEhBnVg==
dependencies:
- "@unhead/schema" "1.9.7"
+ "@eslint-community/eslint-utils" "^4.7.0"
+ "@typescript-eslint/scope-manager" "8.46.2"
+ "@typescript-eslint/types" "8.46.2"
+ "@typescript-eslint/typescript-estree" "8.46.2"
-"@unhead/ssr@^1.7.0", "@unhead/ssr@^1.9.4":
- version "1.9.7"
- resolved "https://registry.yarnpkg.com/@unhead/ssr/-/ssr-1.9.7.tgz#4f25baf6cf456310e0c258c526350be481b578f0"
- integrity sha512-3K0J9biCypPzJ5o4AgjhKboX2Sas4COj54wfT+ghSfyQ05Lp5IlWxw0FrXuxKPk54ObovskUwIf8eCa9ke0Vuw==
+"@typescript-eslint/visitor-keys@8.46.2":
+ version "8.46.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.2.tgz#803fa298948c39acf810af21bdce6f8babfa9738"
+ integrity sha512-tUFMXI4gxzzMXt4xpGJEsBsTox0XbNQ1y94EwlD/CuZwFcQP79xfQqMhau9HsRc/J0cAPA/HZt1dZPtGn9V/7w==
dependencies:
- "@unhead/schema" "1.9.7"
- "@unhead/shared" "1.9.7"
+ "@typescript-eslint/types" "8.46.2"
+ eslint-visitor-keys "^4.2.1"
+
+"@ungap/structured-clone@^1.0.0":
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.3.0.tgz#d06bbb384ebcf6c505fde1c3d0ed4ddffe0aaff8"
+ integrity sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==
-"@unhead/vue@^1.7.0", "@unhead/vue@^1.9.4":
- version "1.9.7"
- resolved "https://registry.yarnpkg.com/@unhead/vue/-/vue-1.9.7.tgz#75b5bcb67a5942192748b2552093f75f169345eb"
- integrity sha512-c5pcNvi3FwMfqd+lfD3XUyRKPDv/AVPrep84CFXaqB7ebb+2OQTgtxBiCoRsa8+DtdhYI50lYJ/yeVdfLI9XUw==
+"@unhead/schema-org@^2.0.14":
+ version "2.0.19"
+ resolved "https://registry.yarnpkg.com/@unhead/schema-org/-/schema-org-2.0.19.tgz#f56e7b208a3eeb5a2fa9a41261c22a9a538e7639"
+ integrity sha512-21xZlIWhq24Lv5iZI4ZcnBkghb9wrtHxrc6tUlsny0qxyJkuHS60jwh7rhoxME48UEkRzcxBSOjilwzxCevl9w==
dependencies:
- "@unhead/schema" "1.9.7"
- "@unhead/shared" "1.9.7"
- hookable "^5.5.3"
- unhead "1.9.7"
+ defu "^6.1.4"
+ ohash "^2.0.11"
+ ufo "^1.6.1"
+ unhead "2.0.19"
-"@unocss/astro@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/astro/-/astro-0.59.4.tgz#5dd7544bfad289ea4c366f772735eb3c67a27cc5"
- integrity sha512-DU3OR5MMR1Uvvec4/wB9EetDASHRg19Moy6z/MiIhn8JWJ0QzWYgSeJcfUX8exomMYv6WUEQJL+CyLI34Wmn8w==
+"@unhead/vue@^2.0.14", "@unhead/vue@^2.0.17":
+ version "2.0.19"
+ resolved "https://registry.yarnpkg.com/@unhead/vue/-/vue-2.0.19.tgz#d628b88526c1e92bb960b2997fdd676b279fe6d9"
+ integrity sha512-7BYjHfOaoZ9+ARJkT10Q2TjnTUqDXmMpfakIAsD/hXiuff1oqWg1xeXT5+MomhNcC15HbiABpbbBmITLSHxdKg==
dependencies:
- "@unocss/core" "0.59.4"
- "@unocss/reset" "0.59.4"
- "@unocss/vite" "0.59.4"
+ hookable "^5.5.3"
+ unhead "2.0.19"
-"@unocss/cli@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/cli/-/cli-0.59.4.tgz#9e58ede167162fde24edbc89a7c02fcaf0adcd2e"
- integrity sha512-TT+WKedSifhsRqnpoYD2LfyYipVzEbzIU4DDGIaDNeDxGXYOGpb876zzkPDcvZSpI37IJ/efkkV7PGYpPBcQBQ==
+"@unocss/core@66.5.4", "@unocss/core@^66.5.3", "@unocss/core@^66.5.4":
+ version "66.5.4"
+ resolved "https://registry.yarnpkg.com/@unocss/core/-/core-66.5.4.tgz#d06e3d81733be38d9d7b2c384427d4281dff7d53"
+ integrity sha512-UDS2CRgyQCEFH+5kStDyJd7OFtgkIUZYn5Ahr5z7v3jc/pEfeOJ0mxsNAr+FgMS/xb17vy4sVFvx3jj/FwMZ1A==
+
+"@unocss/extractor-arbitrary-variants@66.5.4":
+ version "66.5.4"
+ resolved "https://registry.yarnpkg.com/@unocss/extractor-arbitrary-variants/-/extractor-arbitrary-variants-66.5.4.tgz#ceb9e59ccb56f29e887992e20724034bb909b6be"
+ integrity sha512-JsgITF11Z2WdXzF8eO2/qkcFIff/dEEc9C2eKYOSUv5pe+RMZxXHoAw4x+D4n0UrGAbHpoUVaJ8E7kG0ayTbGw==
dependencies:
- "@ampproject/remapping" "^2.3.0"
- "@rollup/pluginutils" "^5.1.0"
- "@unocss/config" "0.59.4"
- "@unocss/core" "0.59.4"
- "@unocss/preset-uno" "0.59.4"
- cac "^6.7.14"
- chokidar "^3.6.0"
- colorette "^2.0.20"
- consola "^3.2.3"
- fast-glob "^3.3.2"
- magic-string "^0.30.10"
- pathe "^1.1.2"
- perfect-debounce "^1.0.0"
+ "@unocss/core" "66.5.4"
-"@unocss/config@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/config/-/config-0.59.4.tgz#311c2c54fef8a4ab03c95e671da579dcddd2ea48"
- integrity sha512-h3yhj+D5Ygn5R7gbK4wMrtXZX6FF5DF6YD517sSSb0XB3lxHD9PhhT4HaV1hpHknvu0cMFU3460M45+TN1TI0Q==
- dependencies:
- "@unocss/core" "0.59.4"
- unconfig "^0.3.13"
-
-"@unocss/core@0.59.4", "@unocss/core@^0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/core/-/core-0.59.4.tgz#0e35db9f439780e7739df695eea8377c99a6290c"
- integrity sha512-bBZ1sgcAtezQVZ1BST9IS3jqcsTLyqKNjiIf7FTnX3DHpfpYuMDFzSOtmkZDzBleOLO/CtcRWjT0HwTSQAmV0A==
-
-"@unocss/extractor-arbitrary-variants@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/extractor-arbitrary-variants/-/extractor-arbitrary-variants-0.59.4.tgz#731572e93c15d80546f70359601bbbc818d3822d"
- integrity sha512-RDe4FgMGJQ+tp9GLvhPHni7Cc2O0lHBRMElVlN8LoXJAdODMICdbrEPGJlEfrc+7x/QgVFoR895KpYJh3hIgGA==
- dependencies:
- "@unocss/core" "0.59.4"
-
-"@unocss/inspector@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/inspector/-/inspector-0.59.4.tgz#390cc0b4beb04772254f48a3f4c741d4dfa2b597"
- integrity sha512-QczJFNDiggmekkJyNcbcZIUVwlhvxz7ZwjnSf0w7K4znxfjKkZ1hNUbqLviM1HumkTKOdT27VISW7saN/ysO4w==
- dependencies:
- "@unocss/core" "0.59.4"
- "@unocss/rule-utils" "0.59.4"
- gzip-size "^6.0.0"
- sirv "^2.0.4"
-
-"@unocss/nuxt@^0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/nuxt/-/nuxt-0.59.4.tgz#2c917771e2f986c4c4886afa7b0e5500d3cbdac4"
- integrity sha512-MnotBKndIM3QxdsOr1KQbUj22iKyoGW/1UeUj3nJ2CndG8Xz2brhzmJrOnhMY7Dq496odtna9n1SHEQP4cgUbw==
- dependencies:
- "@nuxt/kit" "^3.11.2"
- "@unocss/config" "0.59.4"
- "@unocss/core" "0.59.4"
- "@unocss/preset-attributify" "0.59.4"
- "@unocss/preset-icons" "0.59.4"
- "@unocss/preset-tagify" "0.59.4"
- "@unocss/preset-typography" "0.59.4"
- "@unocss/preset-uno" "0.59.4"
- "@unocss/preset-web-fonts" "0.59.4"
- "@unocss/preset-wind" "0.59.4"
- "@unocss/reset" "0.59.4"
- "@unocss/vite" "0.59.4"
- "@unocss/webpack" "0.59.4"
- unocss "0.59.4"
-
-"@unocss/postcss@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/postcss/-/postcss-0.59.4.tgz#cfed2fafb922d93675f67fd0ba61dc84851e2a23"
- integrity sha512-KVz+AD7McHKp7VEWHbFahhyyVEo0oP/e1vnuNSuPlHthe+1V2zfH6lps+iJcvfL2072r5J+0PvD/1kOp5ryUSg==
- dependencies:
- "@unocss/config" "0.59.4"
- "@unocss/core" "0.59.4"
- "@unocss/rule-utils" "0.59.4"
- css-tree "^2.3.1"
- fast-glob "^3.3.2"
- magic-string "^0.30.10"
- postcss "^8.4.38"
-
-"@unocss/preset-attributify@0.59.4", "@unocss/preset-attributify@^0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/preset-attributify/-/preset-attributify-0.59.4.tgz#527c2e271d618b82d40ecb7a0fca4f51837ab619"
- integrity sha512-BeogWuYaIakC1gmOZFFCjFVWmu/m3AqEX8UYQS6tY6lAaK2L4Qf4AstYBlT2zAMxy9LNxPDxFQrvfSfFk5Klsg==
- dependencies:
- "@unocss/core" "0.59.4"
-
-"@unocss/preset-icons@0.59.4", "@unocss/preset-icons@^0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/preset-icons/-/preset-icons-0.59.4.tgz#8f634cb51c5ba19ef87d655e2a5be8cb2e5ec702"
- integrity sha512-Afjwh5oC4KRE8TNZDUkRK6hvvV1wKLrS1e5trniE0B0AM9HK3PBolQaIU7QmzPv6WQrog+MZgIwafg1eqsPUCA==
- dependencies:
- "@iconify/utils" "^2.1.23"
- "@unocss/core" "0.59.4"
- ofetch "^1.3.4"
-
-"@unocss/preset-mini@0.59.4", "@unocss/preset-mini@^0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/preset-mini/-/preset-mini-0.59.4.tgz#d820c56696488f7800861dd9eadc460948a0daca"
- integrity sha512-ZLywGrXi1OCr4My5vX2rLUb5Xgx6ufR9WTQOvpQJGBdIV/jnZn/pyE5avCs476SnOq2K172lnd8mFmTK7/zArA==
- dependencies:
- "@unocss/core" "0.59.4"
- "@unocss/extractor-arbitrary-variants" "0.59.4"
- "@unocss/rule-utils" "0.59.4"
-
-"@unocss/preset-tagify@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/preset-tagify/-/preset-tagify-0.59.4.tgz#a0cbc3736252d20223dbb103da127035b1adb2f0"
- integrity sha512-vWMdTUoghOSmTbdmZtERssffmdUdOuhh4vUdl0R8Kv6KxB0PkvEFCu2FItn97nRJdSPlZSFxxDkaOIg9w+STNQ==
- dependencies:
- "@unocss/core" "0.59.4"
-
-"@unocss/preset-typography@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/preset-typography/-/preset-typography-0.59.4.tgz#49017a17d1fc4fde8d2397a199a9e4c93789a4fa"
- integrity sha512-ZX9bxZUqlXK1qEDzO5lkK96ICt9itR/oNyn/7mMc1JPqwj263LumQMn5silocgzoLSUXEeq//L6GylqYjkL8GA==
- dependencies:
- "@unocss/core" "0.59.4"
- "@unocss/preset-mini" "0.59.4"
-
-"@unocss/preset-uno@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/preset-uno/-/preset-uno-0.59.4.tgz#fee0339c11a59881447101aea2ac7488df26211b"
- integrity sha512-G1f8ZluplvXZ3bERj+sM/8zzY//XD++nNOlAQNKOANSVht3qEoJebrfEiMClNpA5qW5VWOZhEhPkh0M7GsXtnA==
- dependencies:
- "@unocss/core" "0.59.4"
- "@unocss/preset-mini" "0.59.4"
- "@unocss/preset-wind" "0.59.4"
- "@unocss/rule-utils" "0.59.4"
-
-"@unocss/preset-web-fonts@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/preset-web-fonts/-/preset-web-fonts-0.59.4.tgz#d7aeda80e0283a3c5023bab1fb912ddfce07a7c9"
- integrity sha512-ehutTjKHnf2KPmdatN42N9a8+y+glKSU3UlcBRNsVIIXVIlaBQuPVGZSPhnMtrKD17IgWylXq2K6RJK+ab0hZA==
- dependencies:
- "@unocss/core" "0.59.4"
- ofetch "^1.3.4"
-
-"@unocss/preset-wind@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/preset-wind/-/preset-wind-0.59.4.tgz#ee5dcf9ed807c45c971d5bc3fc64101ee42cf832"
- integrity sha512-CNX6w0ZpSQg/i1oF0/WKWzto8PtLqoknC5h8JmmcGb7VsyBQeV0oNnhbURxpbuMEhbv1MWVIGvk8a+P6y0rFkQ==
- dependencies:
- "@unocss/core" "0.59.4"
- "@unocss/preset-mini" "0.59.4"
- "@unocss/rule-utils" "0.59.4"
-
-"@unocss/reset@0.59.4", "@unocss/reset@^0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/reset/-/reset-0.59.4.tgz#fb6e82e51e577c41a22798b6547bcbe105a74ba1"
- integrity sha512-Upy4xzdWl4RChbLAXBq1BoR4WqxXMoIfjvtcwSZcZK2sylXCFAseSWnyzJFdSiXPqNfmMuNgPXgiSxiQB+cmNA==
-
-"@unocss/rule-utils@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/rule-utils/-/rule-utils-0.59.4.tgz#a30ed36a8d6f0ca6ce99b10b0dabd096b4af4a6b"
- integrity sha512-1qoLJlBWAkS4D4sg73990S1MT7E8E5md/YhopKjTQuEC9SyeVmEg+5pR/Xd8xhPKMqbcuBPl/DS8b6l/GQO56A==
- dependencies:
- "@unocss/core" "^0.59.4"
- magic-string "^0.30.10"
-
-"@unocss/scope@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/scope/-/scope-0.59.4.tgz#844e8b18b9c62a4d77600f10e7532882995fdfb6"
- integrity sha512-wBQJ39kw4Tfj4km7AoGvSIobPKVnRZVsgc0bema5Y0PL3g1NeVQ/LopBI2zEJWdpxGXUWxSDsXm7BZo6qVlD/A==
-
-"@unocss/transformer-attributify-jsx-babel@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/transformer-attributify-jsx-babel/-/transformer-attributify-jsx-babel-0.59.4.tgz#9c39d211bfb68d815a095f754edf0aab04dcd4ff"
- integrity sha512-xtCRSgeTaDBiNJLVX7oOSFe63JiFB5nrdK23PHn3IlZM9O7Bxx4ZxI3MQJtFZFQNE+INFko+DVyY1WiFEm1p/Q==
- dependencies:
- "@babel/core" "^7.24.4"
- "@babel/plugin-syntax-jsx" "^7.24.1"
- "@babel/preset-typescript" "^7.24.1"
- "@unocss/core" "0.59.4"
-
-"@unocss/transformer-attributify-jsx@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-0.59.4.tgz#a26522db11fccf4930557067a8cad98f053f9dbd"
- integrity sha512-m4b83utzKMfUQH/45V2QkjJoXd8Tu2pRP1nic91Xf7QRceyKDD+BxoTneo2JNC2K274cQu7HqqotnCm2aFfEGw==
- dependencies:
- "@unocss/core" "0.59.4"
-
-"@unocss/transformer-compile-class@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/transformer-compile-class/-/transformer-compile-class-0.59.4.tgz#29996ddc3fe569c56e489ef851c3376d17a558ce"
- integrity sha512-Vgk2OCLPW0pU+Uzr1IgDtHVspSBb+gPrQFkV+5gxHk9ZdKi3oYKxLuufVWYDSwv7o9yfQGbYrMH9YLsjRsnA7Q==
- dependencies:
- "@unocss/core" "0.59.4"
-
-"@unocss/transformer-directives@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/transformer-directives/-/transformer-directives-0.59.4.tgz#1c9d58212ff0db1a35a2cc0c20f309ec8a952443"
- integrity sha512-nXUTEclUbs0vQ4KfLhKt4J/5SLSEq1az2FNlJmiXMmqmn75X89OrtCu2OJu9sGXhn+YyBApxgcSSdxmtpqMi1Q==
- dependencies:
- "@unocss/core" "0.59.4"
- "@unocss/rule-utils" "0.59.4"
- css-tree "^2.3.1"
+"@unocss/preset-mini@66.5.4":
+ version "66.5.4"
+ resolved "https://registry.yarnpkg.com/@unocss/preset-mini/-/preset-mini-66.5.4.tgz#91b56a8a98bb1c59de2c98d7ebc325085ee00fd5"
+ integrity sha512-KaBGsw3+Pi5ZTsp5u0OrUUUXFVltHin02cYhv3A4b9392Kej5R3y7zIf1VjiQ3ZXR4KZWfv0CQj0LBqIqAJ5WA==
+ dependencies:
+ "@unocss/core" "66.5.4"
+ "@unocss/extractor-arbitrary-variants" "66.5.4"
+ "@unocss/rule-utils" "66.5.4"
-"@unocss/transformer-variant-group@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/transformer-variant-group/-/transformer-variant-group-0.59.4.tgz#4269f622a3e114f72b8c5fb0848cba0635730256"
- integrity sha512-9XLixxn1NRgP62Kj4R/NC/rpqhql5F2s6ulJ8CAMTEbd/NylVhEANluPGDVUGcLJ4cj6E02hFa8C1PLGSm7/xw==
+"@unocss/preset-wind3@^66.5.3":
+ version "66.5.4"
+ resolved "https://registry.yarnpkg.com/@unocss/preset-wind3/-/preset-wind3-66.5.4.tgz#5862533e3fb0b9991fbfd20ccaa22222a1fbf0fe"
+ integrity sha512-cqQGg9E2476YVpnX3sgO/jEoA4cKCA5rEl2NgemoAJpKAgdM68JPB+Tve4LlSLssxRQZ7ZYNO6hOfW8R2gVVuw==
dependencies:
- "@unocss/core" "0.59.4"
+ "@unocss/core" "66.5.4"
+ "@unocss/preset-mini" "66.5.4"
+ "@unocss/rule-utils" "66.5.4"
-"@unocss/vite@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/vite/-/vite-0.59.4.tgz#6367d2b1acddc06c79922362328edfe1e5f1132e"
- integrity sha512-q7GN7vkQYn79n7vYIUlaa7gXGwc7pk0Qo3z3ZFwWGE43/DtZnn2Hwl5UjgBAgi9McA+xqHJEHRsJnI7HJPHUYA==
+"@unocss/rule-utils@66.5.4":
+ version "66.5.4"
+ resolved "https://registry.yarnpkg.com/@unocss/rule-utils/-/rule-utils-66.5.4.tgz#2f0c9f0d8e7bf562f555d41b6e3cd822379878df"
+ integrity sha512-LFzLuXQfZKI/qJBrsqkaVKlw0ECU8Xw7m+MaKIKyFH/hqggzkvNG0PyWU2HnPNzz1dIiVBn+Epfpz8pzi+MLFA==
dependencies:
- "@ampproject/remapping" "^2.3.0"
- "@rollup/pluginutils" "^5.1.0"
- "@unocss/config" "0.59.4"
- "@unocss/core" "0.59.4"
- "@unocss/inspector" "0.59.4"
- "@unocss/scope" "0.59.4"
- "@unocss/transformer-directives" "0.59.4"
- chokidar "^3.6.0"
- fast-glob "^3.3.2"
- magic-string "^0.30.10"
+ "@unocss/core" "^66.5.4"
+ magic-string "^0.30.19"
+
+"@unrs/resolver-binding-android-arm-eabi@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz#9f5b04503088e6a354295e8ea8fe3cb99e43af81"
+ integrity sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==
+
+"@unrs/resolver-binding-android-arm64@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz#7414885431bd7178b989aedc4d25cccb3865bc9f"
+ integrity sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==
+
+"@unrs/resolver-binding-darwin-arm64@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz#b4a8556f42171fb9c9f7bac8235045e82aa0cbdf"
+ integrity sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==
+
+"@unrs/resolver-binding-darwin-x64@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz#fd4d81257b13f4d1a083890a6a17c00de571f0dc"
+ integrity sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==
+
+"@unrs/resolver-binding-freebsd-x64@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz#d2513084d0f37c407757e22f32bd924a78cfd99b"
+ integrity sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==
+
+"@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz#844d2605d057488d77fab09705f2866b86164e0a"
+ integrity sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==
+
+"@unrs/resolver-binding-linux-arm-musleabihf@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz#204892995cefb6bd1d017d52d097193bc61ddad3"
+ integrity sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==
+
+"@unrs/resolver-binding-linux-arm64-gnu@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz#023eb0c3aac46066a10be7a3f362e7b34f3bdf9d"
+ integrity sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==
+
+"@unrs/resolver-binding-linux-arm64-musl@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz#9e6f9abb06424e3140a60ac996139786f5d99be0"
+ integrity sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==
+
+"@unrs/resolver-binding-linux-ppc64-gnu@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz#b111417f17c9d1b02efbec8e08398f0c5527bb44"
+ integrity sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==
+
+"@unrs/resolver-binding-linux-riscv64-gnu@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz#92ffbf02748af3e99873945c9a8a5ead01d508a9"
+ integrity sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==
+
+"@unrs/resolver-binding-linux-riscv64-musl@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz#0bec6f1258fc390e6b305e9ff44256cb207de165"
+ integrity sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==
+
+"@unrs/resolver-binding-linux-s390x-gnu@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz#577843a084c5952f5906770633ccfb89dac9bc94"
+ integrity sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==
+
+"@unrs/resolver-binding-linux-x64-gnu@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz#36fb318eebdd690f6da32ac5e0499a76fa881935"
+ integrity sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==
+
+"@unrs/resolver-binding-linux-x64-musl@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz#bfb9af75f783f98f6a22c4244214efe4df1853d6"
+ integrity sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==
-"@unocss/webpack@0.59.4":
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/@unocss/webpack/-/webpack-0.59.4.tgz#fb90132e928281715783ab53f2912bb672a35b4e"
- integrity sha512-MjCs4D0FXgyEm2PUTyPyggL8J4GbFk0EKAFORWzzLdCm1XW52QCDHE681+T+iDSyLTcYKZXAJ+QOzJ6z/WKq+w==
+"@unrs/resolver-binding-wasm32-wasi@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz#752c359dd875684b27429500d88226d7cc72f71d"
+ integrity sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==
dependencies:
- "@ampproject/remapping" "^2.3.0"
- "@rollup/pluginutils" "^5.1.0"
- "@unocss/config" "0.59.4"
- "@unocss/core" "0.59.4"
- chokidar "^3.6.0"
- fast-glob "^3.3.2"
- magic-string "^0.30.10"
- unplugin "^1.10.1"
- webpack-sources "^3.2.3"
+ "@napi-rs/wasm-runtime" "^0.2.11"
+
+"@unrs/resolver-binding-win32-arm64-msvc@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz#ce5735e600e4c2fbb409cd051b3b7da4a399af35"
+ integrity sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==
+
+"@unrs/resolver-binding-win32-ia32-msvc@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz#72fc57bc7c64ec5c3de0d64ee0d1810317bc60a6"
+ integrity sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==
+
+"@unrs/resolver-binding-win32-x64-msvc@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz#538b1e103bf8d9864e7b85cc96fa8d6fb6c40777"
+ integrity sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==
-"@vercel/nft@^0.26.4":
- version "0.26.4"
- resolved "https://registry.yarnpkg.com/@vercel/nft/-/nft-0.26.4.tgz#d7e8ebb91567d25240e8cb996152ea77392cea7f"
- integrity sha512-j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA==
+"@vercel/nft@^0.30.2":
+ version "0.30.3"
+ resolved "https://registry.yarnpkg.com/@vercel/nft/-/nft-0.30.3.tgz#ab09a7f22ec7b354fcbe2d79f3d8c0c8adfbcc89"
+ integrity sha512-UEq+eF0ocEf9WQCV1gktxKhha36KDs7jln5qii6UpPf5clMqDc0p3E7d9l2Smx0i9Pm1qpq4S4lLfNl97bbv6w==
dependencies:
- "@mapbox/node-pre-gyp" "^1.0.5"
- "@rollup/pluginutils" "^4.0.0"
+ "@mapbox/node-pre-gyp" "^2.0.0"
+ "@rollup/pluginutils" "^5.1.3"
acorn "^8.6.0"
- acorn-import-attributes "^1.9.2"
+ acorn-import-attributes "^1.9.5"
async-sema "^3.1.1"
bindings "^1.4.0"
estree-walker "2.0.2"
- glob "^7.1.3"
+ glob "^10.4.5"
graceful-fs "^4.2.9"
- micromatch "^4.0.2"
node-gyp-build "^4.2.2"
+ picomatch "^4.0.2"
resolve-from "^5.0.0"
-"@vitejs/plugin-vue-jsx@^3.1.0":
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-3.1.0.tgz#9953fd9456539e1f0f253bf0fcd1289e66c67cd1"
- integrity sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==
- dependencies:
- "@babel/core" "^7.23.3"
- "@babel/plugin-transform-typescript" "^7.23.3"
- "@vue/babel-plugin-jsx" "^1.1.5"
-
-"@vitejs/plugin-vue@^5.0.4":
- version "5.0.4"
- resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.0.4.tgz#508d6a0f2440f86945835d903fcc0d95d1bb8a37"
- integrity sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==
+"@vercel/oidc@3.0.3":
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/@vercel/oidc/-/oidc-3.0.3.tgz#82c2b6dd4d5c3b37dcb1189718cdeb9db402d052"
+ integrity sha512-yNEQvPcVrK9sIe637+I0jD6leluPxzwJKx/Haw6F4H77CdDsszUn5V3o96LPziXkSNE2B83+Z3mjqGKBK/R6Gg==
-"@vue-macros/common@^1.8.0":
- version "1.10.2"
- resolved "https://registry.yarnpkg.com/@vue-macros/common/-/common-1.10.2.tgz#4c886082cfd94de2fb16e8e1df99d141873450e7"
- integrity sha512-WC66NPVh2mJWqm4L0l/u/cOqm4pNOIwVdMGnDYAH2rHcOWy5x68GkhpkYTBu1+xwCSeHWOQn1TCGGbD+98fFpA==
+"@vitejs/plugin-vue-jsx@^5.1.1":
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-5.1.1.tgz#36504c57c8ccfc73b2dbd1fc560a1a473cba6cb4"
+ integrity sha512-uQkfxzlF8SGHJJVH966lFTdjM/lGcwJGzwAHpVqAPDD/QcsqoUGa+q31ox1BrUfi+FLP2ChVp7uLXE3DkHyDdQ==
dependencies:
- "@babel/types" "^7.24.0"
- "@rollup/pluginutils" "^5.1.0"
- "@vue/compiler-sfc" "^3.4.21"
- ast-kit "^0.12.1"
- local-pkg "^0.5.0"
- magic-string-ast "^0.3.0"
-
-"@vue/babel-helper-vue-transform-on@1.2.2":
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.2.2.tgz#7f1f817a4f00ad531651a8d1d22e22d9e42807ef"
- integrity sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==
-
-"@vue/babel-plugin-jsx@^1.1.5":
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.2.2.tgz#eb426fb4660aa510bb8d188ff0ec140405a97d8a"
- integrity sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==
- dependencies:
- "@babel/helper-module-imports" "~7.22.15"
- "@babel/helper-plugin-utils" "^7.22.5"
- "@babel/plugin-syntax-jsx" "^7.23.3"
- "@babel/template" "^7.23.9"
- "@babel/traverse" "^7.23.9"
- "@babel/types" "^7.23.9"
- "@vue/babel-helper-vue-transform-on" "1.2.2"
- "@vue/babel-plugin-resolve-type" "1.2.2"
- camelcase "^6.3.0"
- html-tags "^3.3.1"
- svg-tags "^1.0.0"
-
-"@vue/babel-plugin-resolve-type@1.2.2":
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.2.2.tgz#66844898561da6449e0f4a261b0c875118e0707b"
- integrity sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==
- dependencies:
- "@babel/code-frame" "^7.23.5"
- "@babel/helper-module-imports" "~7.22.15"
- "@babel/helper-plugin-utils" "^7.22.5"
- "@babel/parser" "^7.23.9"
- "@vue/compiler-sfc" "^3.4.15"
-
-"@vue/compiler-core@3.4.26", "@vue/compiler-core@^3.4.21":
- version "3.4.26"
- resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.4.26.tgz#d507886520e83a6f8339ed55ed0b2b5d84b44b73"
- integrity sha512-N9Vil6Hvw7NaiyFUFBPXrAyETIGlQ8KcFMkyk6hW1Cl6NvoqvP+Y8p1Eqvx+UdqsnrnI9+HMUEJegzia3mhXmQ==
- dependencies:
- "@babel/parser" "^7.24.4"
- "@vue/shared" "3.4.26"
- entities "^4.5.0"
- estree-walker "^2.0.2"
- source-map-js "^1.2.0"
+ "@babel/core" "^7.28.3"
+ "@babel/plugin-syntax-typescript" "^7.27.1"
+ "@babel/plugin-transform-typescript" "^7.28.0"
+ "@rolldown/pluginutils" "^1.0.0-beta.34"
+ "@vue/babel-plugin-jsx" "^1.5.0"
-"@vue/compiler-dom@3.4.26", "@vue/compiler-dom@^3.3.4":
- version "3.4.26"
- resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.4.26.tgz#acc7b788b48152d087d4bb9e655b795e3dbec554"
- integrity sha512-4CWbR5vR9fMg23YqFOhr6t6WB1Fjt62d6xdFPyj8pxrYub7d+OgZaObMsoxaF9yBUHPMiPFK303v61PwAuGvZA==
+"@vitejs/plugin-vue@^6.0.1":
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-6.0.1.tgz#4c7f559621af104a22255c6ace5626e6d8349689"
+ integrity sha512-+MaE752hU0wfPFJEUAIxqw18+20euHHdxVtMvbFcOEpjEyfqXH/5DCoTHiVJ0J29EhTJdoTkjEv5YBKU9dnoTw==
dependencies:
- "@vue/compiler-core" "3.4.26"
- "@vue/shared" "3.4.26"
+ "@rolldown/pluginutils" "1.0.0-beta.29"
-"@vue/compiler-sfc@3.4.26", "@vue/compiler-sfc@^3.4.15", "@vue/compiler-sfc@^3.4.21":
- version "3.4.26"
- resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.4.26.tgz#c679f206829954c3c078d8a9be76d0098b8377ae"
- integrity sha512-It1dp+FAOCgluYSVYlDn5DtZBxk1NCiJJfu2mlQqa/b+k8GL6NG/3/zRbJnHdhV2VhxFghaDq5L4K+1dakW6cw==
+"@volar/language-core@2.4.23":
+ version "2.4.23"
+ resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-2.4.23.tgz#deb6dbc5fdbafa9bb7ba691fc59cb196cdb856d3"
+ integrity sha512-hEEd5ET/oSmBC6pi1j6NaNYRWoAiDhINbT8rmwtINugR39loROSlufGdYMF9TaKGfz+ViGs1Idi3mAhnuPcoGQ==
dependencies:
- "@babel/parser" "^7.24.4"
- "@vue/compiler-core" "3.4.26"
- "@vue/compiler-dom" "3.4.26"
- "@vue/compiler-ssr" "3.4.26"
- "@vue/shared" "3.4.26"
- estree-walker "^2.0.2"
- magic-string "^0.30.10"
- postcss "^8.4.38"
- source-map-js "^1.2.0"
+ "@volar/source-map" "2.4.23"
-"@vue/compiler-ssr@3.4.26":
- version "3.4.26"
- resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.4.26.tgz#22842d8adfff972d87bb798b8d496111f7f814b5"
- integrity sha512-FNwLfk7LlEPRY/g+nw2VqiDKcnDTVdCfBREekF8X74cPLiWHUX6oldktf/Vx28yh4STNy7t+/yuLoMBBF7YDiQ==
+"@volar/source-map@2.4.23":
+ version "2.4.23"
+ resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-2.4.23.tgz#d476e11a3a669d89858a5eb38b02342be39b0e44"
+ integrity sha512-Z1Uc8IB57Lm6k7q6KIDu/p+JWtf3xsXJqAX/5r18hYOTpJyBn0KXUR8oTJ4WFYOcDzWC9n3IflGgHowx6U6z9Q==
+
+"@volar/typescript@2.4.23":
+ version "2.4.23"
+ resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-2.4.23.tgz#b9b114ea01ad0ad977139edda0239fdafdb21ad7"
+ integrity sha512-lAB5zJghWxVPqfcStmAP1ZqQacMpe90UrP5RJ3arDyrhy4aCUQqmxPPLB2PWDKugvylmO41ljK7vZ+t6INMTag==
dependencies:
- "@vue/compiler-dom" "3.4.26"
- "@vue/shared" "3.4.26"
+ "@volar/language-core" "2.4.23"
+ path-browserify "^1.0.1"
+ vscode-uri "^3.0.8"
-"@vue/devtools-api@^6.5.1":
- version "6.6.1"
- resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.6.1.tgz#7c14346383751d9f6ad4bea0963245b30220ef83"
- integrity sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==
+"@vue-macros/common@3.0.0-beta.16":
+ version "3.0.0-beta.16"
+ resolved "https://registry.yarnpkg.com/@vue-macros/common/-/common-3.0.0-beta.16.tgz#504141897a7acd2cdab6d7ba85a61b2bae178faa"
+ integrity sha512-8O2gWxWFiaoNkk7PGi0+p7NPGe/f8xJ3/INUufvje/RZOs7sJvlI1jnR4lydtRFa/mU0ylMXUXXjSK0fHDEYTA==
+ dependencies:
+ "@vue/compiler-sfc" "^3.5.17"
+ ast-kit "^2.1.1"
+ local-pkg "^1.1.1"
+ magic-string-ast "^1.0.0"
+ unplugin-utils "^0.2.4"
-"@vue/devtools-applet@^7.0.27":
- version "7.1.3"
- resolved "https://registry.yarnpkg.com/@vue/devtools-applet/-/devtools-applet-7.1.3.tgz#6aa6d222bb8ccde873d56bb14b11c7f1e36ebaf7"
- integrity sha512-525h17FzUF7ssko/U+yeP5jv0HaGm3eI4dVqncWPRCLTDtOy1V+srjoxYqr5qnzx6AdIU2icPQF2KNomd9FGZw==
- dependencies:
- "@vue/devtools-core" "^7.1.3"
- "@vue/devtools-kit" "^7.1.3"
- "@vue/devtools-shared" "^7.1.3"
- "@vue/devtools-ui" "^7.1.3"
- lodash-es "^4.17.21"
- perfect-debounce "^1.0.0"
- shiki "1.3.0"
- splitpanes "^3.1.5"
- vue-virtual-scroller "2.0.0-beta.8"
+"@vue/babel-helper-vue-transform-on@1.5.0":
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.5.0.tgz#b7e99d37eeb144d7b9757d7a1f40cd977fde748a"
+ integrity sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==
-"@vue/devtools-core@^7.0.27", "@vue/devtools-core@^7.1.3":
- version "7.1.3"
- resolved "https://registry.yarnpkg.com/@vue/devtools-core/-/devtools-core-7.1.3.tgz#22107b618ae05d873545724c6238a8c41c70b426"
- integrity sha512-pVbWi8pf2Z/fZPioYOIgu+cv9pQG55k4D8bL31ec+Wfe+pQR0ImFDu0OhHfch1Ra8uvLLrAZTF4IKeGAkmzD4A==
- dependencies:
- "@vue/devtools-kit" "^7.1.3"
- "@vue/devtools-shared" "^7.1.3"
+"@vue/babel-plugin-jsx@^1.5.0":
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.5.0.tgz#1b988b497cb1f79725da94463e75cebe60b72e70"
+ integrity sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw==
+ dependencies:
+ "@babel/helper-module-imports" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/plugin-syntax-jsx" "^7.27.1"
+ "@babel/template" "^7.27.2"
+ "@babel/traverse" "^7.28.0"
+ "@babel/types" "^7.28.2"
+ "@vue/babel-helper-vue-transform-on" "1.5.0"
+ "@vue/babel-plugin-resolve-type" "1.5.0"
+ "@vue/shared" "^3.5.18"
+
+"@vue/babel-plugin-resolve-type@1.5.0":
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.5.0.tgz#6881d7b1478e9fc0ea4bb08aaad1f4d206655568"
+ integrity sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w==
+ dependencies:
+ "@babel/code-frame" "^7.27.1"
+ "@babel/helper-module-imports" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/parser" "^7.28.0"
+ "@vue/compiler-sfc" "^3.5.18"
+
+"@vue/compiler-core@3.5.22", "@vue/compiler-core@^3.5.21":
+ version "3.5.22"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.22.tgz#bb8294a0dd31df540563cc6ffa0456f1f7687b97"
+ integrity sha512-jQ0pFPmZwTEiRNSb+i9Ow/I/cHv2tXYqsnHKKyCQ08irI2kdF5qmYedmF8si8mA7zepUFmJ2hqzS8CQmNOWOkQ==
+ dependencies:
+ "@babel/parser" "^7.28.4"
+ "@vue/shared" "3.5.22"
+ entities "^4.5.0"
+ estree-walker "^2.0.2"
+ source-map-js "^1.2.1"
+
+"@vue/compiler-dom@3.5.22", "@vue/compiler-dom@^3.5.0":
+ version "3.5.22"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.22.tgz#6c9c2c9843520f6d3dbc685e5d0e1e12a2c04c56"
+ integrity sha512-W8RknzUM1BLkypvdz10OVsGxnMAuSIZs9Wdx1vzA3mL5fNMN15rhrSCLiTm6blWeACwUwizzPVqGJgOGBEN/hA==
+ dependencies:
+ "@vue/compiler-core" "3.5.22"
+ "@vue/shared" "3.5.22"
+
+"@vue/compiler-sfc@3.5.22", "@vue/compiler-sfc@^3.5.17", "@vue/compiler-sfc@^3.5.18":
+ version "3.5.22"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.22.tgz#663a8483b1dda8de83b6fa1aab38a52bf73dd965"
+ integrity sha512-tbTR1zKGce4Lj+JLzFXDq36K4vcSZbJ1RBu8FxcDv1IGRz//Dh2EBqksyGVypz3kXpshIfWKGOCcqpSbyGWRJQ==
+ dependencies:
+ "@babel/parser" "^7.28.4"
+ "@vue/compiler-core" "3.5.22"
+ "@vue/compiler-dom" "3.5.22"
+ "@vue/compiler-ssr" "3.5.22"
+ "@vue/shared" "3.5.22"
+ estree-walker "^2.0.2"
+ magic-string "^0.30.19"
+ postcss "^8.5.6"
+ source-map-js "^1.2.1"
+
+"@vue/compiler-ssr@3.5.22":
+ version "3.5.22"
+ resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.22.tgz#a0ef16e364731b25e79a13470569066af101320f"
+ integrity sha512-GdgyLvg4R+7T8Nk2Mlighx7XGxq/fJf9jaVofc3IL0EPesTE86cP/8DD1lT3h1JeZr2ySBvyqKQJgbS54IX1Ww==
+ dependencies:
+ "@vue/compiler-dom" "3.5.22"
+ "@vue/shared" "3.5.22"
+
+"@vue/devtools-api@^6.6.4":
+ version "6.6.4"
+ resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz#cbe97fe0162b365edc1dba80e173f90492535343"
+ integrity sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==
+
+"@vue/devtools-core@^7.7.7":
+ version "7.7.7"
+ resolved "https://registry.yarnpkg.com/@vue/devtools-core/-/devtools-core-7.7.7.tgz#9885e2ecb7b462cca8e629d9cff0ab00bfd30d63"
+ integrity sha512-9z9TLbfC+AjAi1PQyWX+OErjIaJmdFlbDHcD+cAMYKY6Bh5VlsAtCeGyRMrXwIlMEQPukvnWt3gZBLwTAIMKzQ==
+ dependencies:
+ "@vue/devtools-kit" "^7.7.7"
+ "@vue/devtools-shared" "^7.7.7"
mitt "^3.0.1"
- nanoid "^3.3.4"
- pathe "^1.1.2"
- vite-hot-client "^0.2.3"
+ nanoid "^5.1.0"
+ pathe "^2.0.3"
+ vite-hot-client "^2.0.4"
-"@vue/devtools-kit@^7.0.27", "@vue/devtools-kit@^7.1.3":
- version "7.1.3"
- resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.1.3.tgz#0344fd1a926ff535d3be3378e1da8bb71d8430b9"
- integrity sha512-NFskFSJMVCBXTkByuk2llzI3KD3Blcm7WqiRorWjD6nClHPgkH5BobDH08rfulqq5ocRt5xV+3qOT1Q9FXJrwQ==
+"@vue/devtools-kit@^7.7.7":
+ version "7.7.7"
+ resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.7.7.tgz#41a64f9526e9363331c72405544df020ce2e3641"
+ integrity sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==
dependencies:
- "@vue/devtools-shared" "^7.1.3"
+ "@vue/devtools-shared" "^7.7.7"
+ birpc "^2.3.0"
hookable "^5.5.3"
mitt "^3.0.1"
perfect-debounce "^1.0.0"
speakingurl "^14.0.1"
+ superjson "^2.2.2"
-"@vue/devtools-shared@7.1.3", "@vue/devtools-shared@^7.1.3":
- version "7.1.3"
- resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.1.3.tgz#f570bba72d53a0c84d1faa19f4d1a29a339c1dc7"
- integrity sha512-KJ3AfgjTn3tJz/XKF+BlVShNPecim3G21oHRue+YQOsooW+0s+qXvm09U09aO7yBza5SivL1QgxSrzAbiKWjhQ==
+"@vue/devtools-shared@^7.7.7":
+ version "7.7.7"
+ resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.7.7.tgz#ff14aa8c1262ebac8c0397d3b09f767cd489750c"
+ integrity sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==
dependencies:
- rfdc "^1.3.1"
+ rfdc "^1.4.1"
-"@vue/devtools-ui@^7.1.3":
- version "7.1.3"
- resolved "https://registry.yarnpkg.com/@vue/devtools-ui/-/devtools-ui-7.1.3.tgz#346866cc8a6a72984c7e8b7f12c070c56a6ae387"
- integrity sha512-gO2EV3T0wO+HK884+m6UgTEirNOuf+k8U4PcR0vIYA97/A9nTzv9HheCRyFMiHMePYxnlBOsgD7K2fp1/M+EWA==
- dependencies:
- "@vue/devtools-shared" "7.1.3"
- "@vueuse/components" "^10.9.0"
- "@vueuse/core" "^10.9.0"
- "@vueuse/integrations" "^10.9.0"
- colord "^2.9.3"
- focus-trap "^7.5.4"
+"@vue/language-core@3.1.1", "@vue/language-core@^3.0.1":
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/@vue/language-core/-/language-core-3.1.1.tgz#29f32ca1fc5f1393f20e3eb9154a18914c813354"
+ integrity sha512-qjMY3Q+hUCjdH+jLrQapqgpsJ0rd/2mAY02lZoHG3VFJZZZKLjAlV+Oo9QmWIT4jh8+Rx8RUGUi++d7T9Wb6Mw==
+ dependencies:
+ "@volar/language-core" "2.4.23"
+ "@vue/compiler-dom" "^3.5.0"
+ "@vue/shared" "^3.5.0"
+ alien-signals "^3.0.0"
+ muggle-string "^0.4.1"
+ path-browserify "^1.0.1"
+ picomatch "^4.0.2"
+
+"@vue/reactivity@3.5.22":
+ version "3.5.22"
+ resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.22.tgz#9b26f8557c96df46c9a859914a2229f3ca5b8f4f"
+ integrity sha512-f2Wux4v/Z2pqc9+4SmgZC1p73Z53fyD90NFWXiX9AKVnVBEvLFOWCEgJD3GdGnlxPZt01PSlfmLqbLYzY/Fw4A==
+ dependencies:
+ "@vue/shared" "3.5.22"
+
+"@vue/runtime-core@3.5.22":
+ version "3.5.22"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.22.tgz#e004c1e35f423555a0e4c10646ef3e9d380643d1"
+ integrity sha512-EHo4W/eiYeAzRTN5PCextDUZ0dMs9I8mQ2Fy+OkzvRPUYQEyK9yAjbasrMCXbLNhF7P0OUyivLjIy0yc6VrLJQ==
+ dependencies:
+ "@vue/reactivity" "3.5.22"
+ "@vue/shared" "3.5.22"
+
+"@vue/runtime-dom@3.5.22":
+ version "3.5.22"
+ resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.22.tgz#01276cea7cb9ac2b9aba046adfb5903b494e2e7e"
+ integrity sha512-Av60jsryAkI023PlN7LsqrfPvwfxOd2yAwtReCjeuugTJTkgrksYJJstg1e12qle0NarkfhfFu1ox2D+cQotww==
+ dependencies:
+ "@vue/reactivity" "3.5.22"
+ "@vue/runtime-core" "3.5.22"
+ "@vue/shared" "3.5.22"
+ csstype "^3.1.3"
-"@vue/reactivity@3.4.26":
- version "3.4.26"
- resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.4.26.tgz#1191f543809d4c93e5b3e842ba83022350a3f205"
- integrity sha512-E/ynEAu/pw0yotJeLdvZEsp5Olmxt+9/WqzvKff0gE67tw73gmbx6tRkiagE/eH0UCubzSlGRebCbidB1CpqZQ==
+"@vue/server-renderer@3.5.22":
+ version "3.5.22"
+ resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.22.tgz#d134e3409094044bd066d9803714677457756157"
+ integrity sha512-gXjo+ao0oHYTSswF+a3KRHZ1WszxIqO7u6XwNHqcqb9JfyIL/pbWrrh/xLv7jeDqla9u+LK7yfZKHih1e1RKAQ==
dependencies:
- "@vue/shared" "3.4.26"
+ "@vue/compiler-ssr" "3.5.22"
+ "@vue/shared" "3.5.22"
-"@vue/runtime-core@3.4.26":
- version "3.4.26"
- resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.4.26.tgz#51ee971cb700370a67e5a510c4a84eff7491d658"
- integrity sha512-AFJDLpZvhT4ujUgZSIL9pdNcO23qVFh7zWCsNdGQBw8ecLNxOOnPcK9wTTIYCmBJnuPHpukOwo62a2PPivihqw==
+"@vue/shared@3.5.22", "@vue/shared@^3.5.0", "@vue/shared@^3.5.18", "@vue/shared@^3.5.22":
+ version "3.5.22"
+ resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.22.tgz#9d56a1644a3becb8af1e34655928b0e288d827f8"
+ integrity sha512-F4yc6palwq3TT0u+FYf0Ns4Tfl9GRFURDN2gWG7L1ecIaS/4fCIuFOjMTnCyjsu/OK6vaDKLCrGAa+KvvH+h4w==
+
+"@vueuse/core@13.9.0", "@vueuse/core@^13.9.0":
+ version "13.9.0"
+ resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-13.9.0.tgz#051aeff47a259e9e4d7d0cc3e54879817b0cbcad"
+ integrity sha512-ts3regBQyURfCE2BcytLqzm8+MmLlo5Ln/KLoxDVcsZ2gzIwVNnQpQOL/UKV8alUqjSZOlpFZcRNsLRqj+OzyA==
dependencies:
- "@vue/reactivity" "3.4.26"
- "@vue/shared" "3.4.26"
+ "@types/web-bluetooth" "^0.0.21"
+ "@vueuse/metadata" "13.9.0"
+ "@vueuse/shared" "13.9.0"
-"@vue/runtime-dom@3.4.26":
- version "3.4.26"
- resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.4.26.tgz#179aa7c8dc964112e6d096bc8ec5f361111009a1"
- integrity sha512-UftYA2hUXR2UOZD/Fc3IndZuCOOJgFxJsWOxDkhfVcwLbsfh2CdXE2tG4jWxBZuDAs9J9PzRTUFt1PgydEtItw==
+"@vueuse/core@14.0.0", "@vueuse/core@^14.0.0":
+ version "14.0.0"
+ resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-14.0.0.tgz#a3d9520935a191b167cb91e08f698545e46bf0a6"
+ integrity sha512-d6tKRWkZE8IQElX2aHBxXOMD478fHIYV+Dzm2y9Ag122ICBpNKtGICiXKOhWU3L1kKdttDD9dCMS4bGP3jhCTQ==
dependencies:
- "@vue/runtime-core" "3.4.26"
- "@vue/shared" "3.4.26"
- csstype "^3.1.3"
+ "@types/web-bluetooth" "^0.0.21"
+ "@vueuse/metadata" "14.0.0"
+ "@vueuse/shared" "14.0.0"
-"@vue/server-renderer@3.4.26":
- version "3.4.26"
- resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.4.26.tgz#6d0c6b0366bfe0232579aea00e3ff6784e5a1c60"
- integrity sha512-xoGAqSjYDPGAeRWxeoYwqJFD/gw7mpgzOvSxEmjWaFO2rE6qpbD1PC172YRpvKhrihkyHJkNDADFXTfCyVGhKw==
+"@vueuse/core@^10.8.0":
+ version "10.11.1"
+ resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-10.11.1.tgz#15d2c0b6448d2212235b23a7ba29c27173e0c2c6"
+ integrity sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==
dependencies:
- "@vue/compiler-ssr" "3.4.26"
- "@vue/shared" "3.4.26"
+ "@types/web-bluetooth" "^0.0.20"
+ "@vueuse/metadata" "10.11.1"
+ "@vueuse/shared" "10.11.1"
+ vue-demi ">=0.14.8"
+
+"@vueuse/core@^12.5.0":
+ version "12.8.2"
+ resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-12.8.2.tgz#007c6dd29a7d1f6933e916e7a2f8ef3c3f968eaa"
+ integrity sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==
+ dependencies:
+ "@types/web-bluetooth" "^0.0.21"
+ "@vueuse/metadata" "12.8.2"
+ "@vueuse/shared" "12.8.2"
+ vue "^3.5.13"
+
+"@vueuse/integrations@^13.9.0":
+ version "13.9.0"
+ resolved "https://registry.yarnpkg.com/@vueuse/integrations/-/integrations-13.9.0.tgz#1bd1d77093a327321cca00e2bbf5da7b18aa6b43"
+ integrity sha512-SDobKBbPIOe0cVL7QxMzGkuUGHvWTdihi9zOrrWaWUgFKe15cwEcwfWmgrcNzjT6kHnNmWuTajPHoIzUjYNYYQ==
+ dependencies:
+ "@vueuse/core" "13.9.0"
+ "@vueuse/shared" "13.9.0"
+
+"@vueuse/metadata@10.11.1":
+ version "10.11.1"
+ resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-10.11.1.tgz#209db7bb5915aa172a87510b6de2ca01cadbd2a7"
+ integrity sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==
+
+"@vueuse/metadata@12.8.2":
+ version "12.8.2"
+ resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-12.8.2.tgz#6cb3a4e97cdcf528329eebc1bda73cd7f64318d3"
+ integrity sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==
+
+"@vueuse/metadata@13.9.0":
+ version "13.9.0"
+ resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-13.9.0.tgz#57c738d99661c33347080c0bc4cd11160e0d0881"
+ integrity sha512-1AFRvuiGphfF7yWixZa0KwjYH8ulyjDCC0aFgrGRz8+P4kvDFSdXLVfTk5xAN9wEuD1J6z4/myMoYbnHoX07zg==
+
+"@vueuse/metadata@14.0.0":
+ version "14.0.0"
+ resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-14.0.0.tgz#139231dc8503f172a7a45ce1ceaa7a415befbf3c"
+ integrity sha512-6yoGqbJcMldVCevkFiHDBTB1V5Hq+G/haPlGIuaFZHpXC0HADB0EN1ryQAAceiW+ryS3niUwvdFbGiqHqBrfVA==
-"@vue/shared@3.4.26", "@vue/shared@^3.4.21":
- version "3.4.26"
- resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.4.26.tgz#f17854fb1faf889854aed4b23b60e86a8cab6403"
- integrity sha512-Fg4zwR0GNnjzodMt3KRy2AWGMKQXByl56+4HjN87soxLNU9P5xcJkstAlIeEF3cU6UYOzmJl1tV0dVPGIljCnQ==
+"@vueuse/nuxt@^14.0.0":
+ version "14.0.0"
+ resolved "https://registry.yarnpkg.com/@vueuse/nuxt/-/nuxt-14.0.0.tgz#55f817da27444b48e8b0c707eea11ad3486839e5"
+ integrity sha512-6DNZ1DLw3UI52TtVX4jmL8oD/L3jFgtWeQmsSXP+0myMhpmlBpWB2xe1x5UdwdHly9j1Fq9DI8wz+LsW6wvdeg==
+ dependencies:
+ "@nuxt/kit" "^4.1.3"
+ "@vueuse/core" "14.0.0"
+ "@vueuse/metadata" "14.0.0"
+ local-pkg "^1.1.2"
-"@vueuse/components@^10.9.0":
- version "10.9.0"
- resolved "https://registry.yarnpkg.com/@vueuse/components/-/components-10.9.0.tgz#5c1011e0511b68e4d94f5d545343f86d2a7e3044"
- integrity sha512-BHQpA0yIi3y7zKa1gYD0FUzLLkcRTqVhP8smnvsCK6GFpd94Nziq1XVPD7YpFeho0k5BzbBiNZF7V/DpkJ967A==
+"@vueuse/shared@10.11.1":
+ version "10.11.1"
+ resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-10.11.1.tgz#62b84e3118ae6e1f3ff38f4fbe71b0c5d0f10938"
+ integrity sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==
dependencies:
- "@vueuse/core" "10.9.0"
- "@vueuse/shared" "10.9.0"
- vue-demi ">=0.14.7"
+ vue-demi ">=0.14.8"
-"@vueuse/core@10.9.0", "@vueuse/core@^10.7.2", "@vueuse/core@^10.9.0":
- version "10.9.0"
- resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-10.9.0.tgz#7d779a95cf0189de176fee63cee4ba44b3c85d64"
- integrity sha512-/1vjTol8SXnx6xewDEKfS0Ra//ncg4Hb0DaZiwKf7drgfMsKFExQ+FnnENcN6efPen+1kIzhLQoGSy0eDUVOMg==
+"@vueuse/shared@12.8.2", "@vueuse/shared@^12.5.0":
+ version "12.8.2"
+ resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-12.8.2.tgz#b9e4611d0603629c8e151f982459da394e22f930"
+ integrity sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==
dependencies:
- "@types/web-bluetooth" "^0.0.20"
- "@vueuse/metadata" "10.9.0"
- "@vueuse/shared" "10.9.0"
- vue-demi ">=0.14.7"
+ vue "^3.5.13"
-"@vueuse/head@^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@vueuse/head/-/head-2.0.0.tgz#a4570c0933368a436796c2f737d56e169a8f0864"
- integrity sha512-ykdOxTGs95xjD4WXE4na/umxZea2Itl0GWBILas+O4oqS7eXIods38INvk3XkJKjqMdWPcpCyLX/DioLQxU1KA==
- dependencies:
- "@unhead/dom" "^1.7.0"
- "@unhead/schema" "^1.7.0"
- "@unhead/ssr" "^1.7.0"
- "@unhead/vue" "^1.7.0"
-
-"@vueuse/integrations@^10.9.0":
- version "10.9.0"
- resolved "https://registry.yarnpkg.com/@vueuse/integrations/-/integrations-10.9.0.tgz#2b1a9556215ad3c1f96d39cbfbef102cf6e0ec05"
- integrity sha512-acK+A01AYdWSvL4BZmCoJAcyHJ6EqhmkQEXbQLwev1MY7NBnS+hcEMx/BzVoR9zKI+UqEPMD9u6PsyAuiTRT4Q==
- dependencies:
- "@vueuse/core" "10.9.0"
- "@vueuse/shared" "10.9.0"
- vue-demi ">=0.14.7"
-
-"@vueuse/metadata@10.9.0":
- version "10.9.0"
- resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-10.9.0.tgz#769a1a9db65daac15cf98084cbf7819ed3758620"
- integrity sha512-iddNbg3yZM0X7qFY2sAotomgdHK7YJ6sKUvQqbvwnf7TmaVPxS4EJydcNsVejNdS8iWCtDk+fYXr7E32nyTnGA==
-
-"@vueuse/nuxt@^10.7.2", "@vueuse/nuxt@^10.9.0":
- version "10.9.0"
- resolved "https://registry.yarnpkg.com/@vueuse/nuxt/-/nuxt-10.9.0.tgz#598663517c0285caa8b6a8221c7c931d32d11c0b"
- integrity sha512-nC4Efg28Q6E41fUD5R+zM9uT5c+NfaDzaJCpqaEV/qHj+/BNJmkDBK8POLIUsiVOY35d0oD/YxZ+eVizqWBZow==
- dependencies:
- "@nuxt/kit" "^3.10.2"
- "@vueuse/core" "10.9.0"
- "@vueuse/metadata" "10.9.0"
- local-pkg "^0.5.0"
- vue-demi ">=0.14.7"
-
-"@vueuse/shared@10.9.0":
- version "10.9.0"
- resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-10.9.0.tgz#13af2a348de15d07b7be2fd0c7fc9853a69d8fe0"
- integrity sha512-Uud2IWncmAfJvRaFYzv5OHDli+FbOzxiVEQdLCKQKLyhz94PIyFC3CHcH7EDMwIn8NPtD06+PNbC/PiO0LGLtw==
- dependencies:
- vue-demi ">=0.14.7"
-
-abbrev@1:
+"@vueuse/shared@13.9.0":
+ version "13.9.0"
+ resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-13.9.0.tgz#7168b4ed647e625b05eb4e7e80fe8aabd00e3923"
+ integrity sha512-e89uuTLMh0U5cZ9iDpEI2senqPGfbPRTHM/0AaQkcxnpqjkZqDYP8rpfm7edOz8s+pOCOROEy1PIveSW8+fL5g==
+
+"@vueuse/shared@14.0.0":
+ version "14.0.0"
+ resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-14.0.0.tgz#15a424285fd6d453d1a99d1caba8cc293992868d"
+ integrity sha512-mTCA0uczBgurRlwVaQHfG0Ja7UdGe4g9mwffiJmvLiTtp1G4AQyIjej6si/k8c8pUwTfVpNufck+23gXptPAkw==
+
+"@webcontainer/env@^1.1.1":
version "1.1.1"
- resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
- integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
+ resolved "https://registry.yarnpkg.com/@webcontainer/env/-/env-1.1.1.tgz#23021b2bb24befeeef53dba8996d1886b7016515"
+ integrity sha512-6aN99yL695Hi9SuIk1oC88l9o0gmxL1nGWWQ/kNy81HigJ0FoaoTXpytCj6ItzgyCEwA9kF1wixsTuv5cjsgng==
-abbrev@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-2.0.0.tgz#cf59829b8b4f03f89dda2771cb7f3653828c89bf"
- integrity sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==
+abbrev@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz#8ac8b3b5024d31464fe2a5feeea9f4536bf44025"
+ integrity sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==
abort-controller@^3.0.0:
version "3.0.0"
@@ -2242,47 +3049,37 @@ abort-controller@^3.0.0:
dependencies:
event-target-shim "^5.0.0"
-accepts@^1.3.5:
- version "1.3.8"
- resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e"
- integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==
- dependencies:
- mime-types "~2.1.34"
- negotiator "0.6.3"
-
-acorn-import-attributes@^1.9.2:
+acorn-import-attributes@^1.9.5:
version "1.9.5"
resolved "https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz#7eb1557b1ba05ef18b5ed0ec67591bfab04688ef"
integrity sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==
-acorn@8.11.3, acorn@^8.10.0, acorn@^8.11.2, acorn@^8.11.3, acorn@^8.6.0, acorn@^8.8.2:
- version "8.11.3"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a"
- integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==
+acorn-jsx@^5.3.2:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
+ integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
-agent-base@6:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
- integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
- dependencies:
- debug "4"
+acorn@^8.14.0, acorn@^8.15.0, acorn@^8.6.0:
+ version "8.15.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz#a360898bc415edaac46c8241f6383975b930b816"
+ integrity sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==
-agent-base@^7.0.2, agent-base@^7.1.0, agent-base@^7.1.1:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317"
- integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==
- dependencies:
- debug "^4.3.4"
+agent-base@^7.1.2:
+ version "7.1.4"
+ resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.4.tgz#e3cd76d4c548ee895d3c3fd8dc1f6c5b9032e7a8"
+ integrity sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==
-aggregate-error@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
- integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
+ai@5.0.76:
+ version "5.0.76"
+ resolved "https://registry.yarnpkg.com/ai/-/ai-5.0.76.tgz#cb34925808ecf557120aaa7648026c4b2d232d5d"
+ integrity sha512-ZCxi1vrpyCUnDbtYrO/W8GLvyacV9689f00yshTIQ3mFFphbD7eIv40a2AOZBv3GGRA7SSRYIDnr56wcS/gyQg==
dependencies:
- clean-stack "^2.0.0"
- indent-string "^4.0.0"
+ "@ai-sdk/gateway" "2.0.0"
+ "@ai-sdk/provider" "2.0.0"
+ "@ai-sdk/provider-utils" "3.0.12"
+ "@opentelemetry/api" "1.9.0"
-ajv@^6.12.3:
+ajv@^6.12.4:
version "6.12.6"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
@@ -2292,32 +3089,10 @@ ajv@^6.12.3:
json-schema-traverse "^0.4.1"
uri-js "^4.2.2"
-ansi-colors@^4.1.3:
- version "4.1.3"
- resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b"
- integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==
-
-ansi-escapes@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
- integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
-
-ansi-escapes@^4.3.0:
- version "4.3.2"
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
- integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
- dependencies:
- type-fest "^0.21.3"
-
-ansi-regex@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1"
- integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==
-
-ansi-regex@^4.1.0:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed"
- integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==
+alien-signals@^3.0.0:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/alien-signals/-/alien-signals-3.0.3.tgz#f54e89180e490a9577e4f6f7203720e4335a8715"
+ integrity sha512-2JXjom6R7ZwrISpUphLhf4htUq1aKRCennTJ6u9kFfr3sLmC9+I4CxxVi+McoFnIg+p1HnVrfLT/iCt4Dlz//Q==
ansi-regex@^5.0.1:
version "5.0.1"
@@ -2325,16 +3100,9 @@ ansi-regex@^5.0.1:
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
ansi-regex@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a"
- integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==
-
-ansi-styles@^3.2.1:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
- integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
- dependencies:
- color-convert "^1.9.0"
+ version "6.2.2"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz#60216eea464d864597ce2832000738a0589650c1"
+ integrity sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==
ansi-styles@^4.0.0, ansi-styles@^4.1.0:
version "4.3.0"
@@ -2344,14 +3112,14 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
color-convert "^2.0.1"
ansi-styles@^6.1.0:
- version "6.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
- integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
+ version "6.2.3"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz#c044d5dcc521a076413472597a1acb1f103c4041"
+ integrity sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==
-any-promise@^1.0.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
- integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==
+ansis@^4.1.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/ansis/-/ansis-4.2.0.tgz#2e6e61c46b11726ac67f78785385618b9e658780"
+ integrity sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==
anymatch@^3.1.3, anymatch@~3.1.2:
version "3.1.3"
@@ -2361,11 +3129,6 @@ anymatch@^3.1.3, anymatch@~3.1.2:
normalize-path "^3.0.0"
picomatch "^2.0.4"
-"aproba@^1.0.3 || ^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc"
- integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==
-
archiver-utils@^5.0.0, archiver-utils@^5.0.2:
version "5.0.2"
resolved "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-5.0.2.tgz#63bc719d951803efc72cf961a56ef810760dd14d"
@@ -2392,114 +3155,65 @@ archiver@^7.0.1:
tar-stream "^3.0.0"
zip-stream "^6.0.1"
-are-we-there-yet@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c"
- integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==
- dependencies:
- delegates "^1.0.0"
- readable-stream "^3.6.0"
-
-arg@^5.0.0, arg@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c"
- integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==
+are-docs-informative@^0.0.2:
+ version "0.0.2"
+ resolved "https://registry.yarnpkg.com/are-docs-informative/-/are-docs-informative-0.0.2.tgz#387f0e93f5d45280373d387a59d34c96db321963"
+ integrity sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==
argparse@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
-asn1@~0.2.3:
- version "0.2.6"
- resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d"
- integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==
- dependencies:
- safer-buffer "~2.1.0"
-
-assert-plus@1.0.0, assert-plus@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
- integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==
-
-ast-kit@^0.12.1:
- version "0.12.1"
- resolved "https://registry.yarnpkg.com/ast-kit/-/ast-kit-0.12.1.tgz#94a42db3c1a3d73efdb627e01839dae15586fdd8"
- integrity sha512-O+33g7x6irsESUcd47KdfWUrS2F6aGp9KeVJFGj0YjIznfXpBxVGjA0w+y/1OKqX4mFOfmZ9Xpf1ixPT4n9xxw==
+aria-hidden@^1.2.4:
+ version "1.2.6"
+ resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.6.tgz#73051c9b088114c795b1ea414e9c0fff874ffc1a"
+ integrity sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==
dependencies:
- "@babel/parser" "^7.23.9"
- pathe "^1.1.2"
+ tslib "^2.0.0"
-ast-kit@^0.9.4:
- version "0.9.5"
- resolved "https://registry.yarnpkg.com/ast-kit/-/ast-kit-0.9.5.tgz#88c0ba76b6f7f24c04ccf9ae778e33afc187dc80"
- integrity sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==
+ast-kit@^2.1.1, ast-kit@^2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/ast-kit/-/ast-kit-2.1.3.tgz#06419605c7258f0432eed8707fdadc0a8e967c58"
+ integrity sha512-TH+b3Lv6pUjy/Nu0m6A2JULtdzLpmqF9x1Dhj00ZoEiML8qvVA9j1flkzTKNYgdEhWrjDwtWNpyyCUbfQe514g==
dependencies:
- "@babel/parser" "^7.22.7"
- "@rollup/pluginutils" "^5.0.2"
- pathe "^1.1.1"
+ "@babel/parser" "^7.28.4"
+ pathe "^2.0.3"
-ast-walker-scope@^0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/ast-walker-scope/-/ast-walker-scope-0.5.0.tgz#87e0ca4f34394d11ec4dea5925b8bda80b811819"
- integrity sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==
+ast-walker-scope@^0.8.1:
+ version "0.8.3"
+ resolved "https://registry.yarnpkg.com/ast-walker-scope/-/ast-walker-scope-0.8.3.tgz#f516c42669f3b77e1473a78e5e9d3c5b2e7c1e8e"
+ integrity sha512-cbdCP0PGOBq0ASG+sjnKIoYkWMKhhz+F/h9pRexUdX2Hd38+WOlBkRKlqkGOSm0YQpcFMQBJeK4WspUAkwsEdg==
dependencies:
- "@babel/parser" "^7.22.7"
- ast-kit "^0.9.4"
+ "@babel/parser" "^7.28.4"
+ ast-kit "^2.1.3"
async-sema@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/async-sema/-/async-sema-3.1.1.tgz#e527c08758a0f8f6f9f15f799a173ff3c40ea808"
integrity sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==
-async@^2.6.4:
- version "2.6.4"
- resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221"
- integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==
- dependencies:
- lodash "^4.17.14"
-
async@^3.2.4:
- version "3.2.5"
- resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66"
- integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==
-
-asynckit@^0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
- integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
+ version "3.2.6"
+ resolved "https://registry.yarnpkg.com/async/-/async-3.2.6.tgz#1b0728e14929d51b85b449b7f06e27c1145e38ce"
+ integrity sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==
-at-least-node@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
- integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
-
-autoprefixer@^10.4.19:
- version "10.4.19"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.19.tgz#ad25a856e82ee9d7898c59583c1afeb3fa65f89f"
- integrity sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==
+autoprefixer@^10.4.21:
+ version "10.4.21"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.21.tgz#77189468e7a8ad1d9a37fbc08efc9f480cf0a95d"
+ integrity sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==
dependencies:
- browserslist "^4.23.0"
- caniuse-lite "^1.0.30001599"
+ browserslist "^4.24.4"
+ caniuse-lite "^1.0.30001702"
fraction.js "^4.3.7"
normalize-range "^0.1.2"
- picocolors "^1.0.0"
+ picocolors "^1.1.1"
postcss-value-parser "^4.2.0"
-aws-sign2@~0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
- integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==
-
-aws4@^1.8.0:
- version "1.12.0"
- resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3"
- integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==
-
b4a@^1.6.4:
- version "1.6.6"
- resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.6.tgz#a4cc349a3851987c3c4ac2d7785c18744f6da9ba"
- integrity sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==
+ version "1.7.3"
+ resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.7.3.tgz#24cf7ccda28f5465b66aec2bac69e32809bf112f"
+ integrity sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==
bail@^2.0.0:
version "2.0.2"
@@ -2511,56 +3225,101 @@ balanced-match@^1.0.0:
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
-bare-events@^2.2.0:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.2.2.tgz#a98a41841f98b2efe7ecc5c5468814469b018078"
- integrity sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==
+bare-events@^2.5.4, bare-events@^2.7.0:
+ version "2.8.1"
+ resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.8.1.tgz#121afaeee9e9a8eb92e71d125bc85753d39913d0"
+ integrity sha512-oxSAxTS1hRfnyit2CL5QpAOS5ixfBjj6ex3yTNvXyY/kE719jQ/IjuESJBK2w5v4wwQRAHGseVJXx9QBYOtFGQ==
+
+bare-fs@^4.0.1:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/bare-fs/-/bare-fs-4.5.0.tgz#f3227b4bc79a65ca7e91a1c05be5919c7c7d8340"
+ integrity sha512-GljgCjeupKZJNetTqxKaQArLK10vpmK28or0+RwWjEl5Rk+/xG3wkpmkv+WrcBm3q1BwHKlnhXzR8O37kcvkXQ==
+ dependencies:
+ bare-events "^2.5.4"
+ bare-path "^3.0.0"
+ bare-stream "^2.6.4"
+ bare-url "^2.2.2"
+ fast-fifo "^1.3.2"
+
+bare-os@^3.0.1:
+ version "3.6.2"
+ resolved "https://registry.yarnpkg.com/bare-os/-/bare-os-3.6.2.tgz#b3c4f5ad5e322c0fd0f3c29fc97d19009e2796e5"
+ integrity sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==
+
+bare-path@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/bare-path/-/bare-path-3.0.0.tgz#b59d18130ba52a6af9276db3e96a2e3d3ea52178"
+ integrity sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==
+ dependencies:
+ bare-os "^3.0.1"
+
+bare-stream@^2.6.4:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/bare-stream/-/bare-stream-2.7.0.tgz#5b9e7dd0a354d06e82d6460c426728536c35d789"
+ integrity sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==
+ dependencies:
+ streamx "^2.21.0"
+
+bare-url@^2.2.2:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/bare-url/-/bare-url-2.3.1.tgz#95e33e99bdc768766ca94246fdc397e88675ec9c"
+ integrity sha512-v2yl0TnaZTdEnelkKtXZGnotiV6qATBlnNuUMrHl6v9Lmmrh9mw9RYyImPU7/4RahumSwQS1k2oKXcRfXcbjJw==
+ dependencies:
+ bare-path "^3.0.0"
base64-js@0.0.8:
version "0.0.8"
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-0.0.8.tgz#1101e9544f4a76b1bc3b26d452ca96d7a35e7978"
integrity sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw==
-base64-js@^1.3.1:
+base64-js@^1.1.2, base64-js@^1.3.0, base64-js@^1.3.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
-bcrypt-pbkdf@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
- integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==
+baseline-browser-mapping@^2.8.19:
+ version "2.8.19"
+ resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.19.tgz#8d99bb7f06bc6ea5c9c1b961e631a1713069bbe0"
+ integrity sha512-zoKGUdu6vb2jd3YOq0nnhEDQVbPcHhco3UImJrv5dSkvxTc2pl2WjOPsjZXDwPDSl5eghIMuY3R6J9NDKF3KcQ==
+
+better-sqlite3@^12.4.1:
+ version "12.4.1"
+ resolved "https://registry.yarnpkg.com/better-sqlite3/-/better-sqlite3-12.4.1.tgz#f78df6c80530d1a0b750b538033e6199b7d30d26"
+ integrity sha512-3yVdyZhklTiNrtg+4WqHpJpFDd+WHTg2oM7UcR80GqL05AOV0xEJzc6qNvFYoEtE+hRp1n9MpN6/+4yhlGkDXQ==
dependencies:
- tweetnacl "^0.14.3"
+ bindings "^1.5.0"
+ prebuild-install "^7.1.1"
binary-extensions@^2.0.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522"
integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==
-bindings@^1.4.0:
+bindings@^1.4.0, bindings@^1.5.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
dependencies:
file-uri-to-path "1.0.0"
-birpc@0.2.14:
- version "0.2.14"
- resolved "https://registry.yarnpkg.com/birpc/-/birpc-0.2.14.tgz#4a5498771e6ff24cf8ae5f47faf90e76ca2fce03"
- integrity sha512-37FHE8rqsYM5JEKCnXFyHpBCzvgHEExwVVTq+nUmloInU7l8ezD1TpOhKpS8oe1DTYFqEK27rFZVKG43oTqXRA==
-
-birpc@^0.2.17:
- version "0.2.17"
- resolved "https://registry.yarnpkg.com/birpc/-/birpc-0.2.17.tgz#d0bdb90d4d063061156637f03b7b0adea1779734"
- integrity sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg==
+birpc@^2.3.0, birpc@^2.4.0, birpc@^2.5.0:
+ version "2.6.1"
+ resolved "https://registry.yarnpkg.com/birpc/-/birpc-2.6.1.tgz#c73463590928897e80f3263d9fbb7da63515014b"
+ integrity sha512-LPnFhlDpdSH6FJhJyn4M0kFO7vtQ5iPw24FnG0y21q09xC7e8+1LeR31S1MAIrDAHp4m7aas4bEkTDTvMAtebQ==
-block-stream@*:
- version "0.0.9"
- resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
- integrity sha512-OorbnJVPII4DuUKbjARAe8u8EfqOmkEEaSFIyoQ7OjTHn6kafxWl0wLgoZ2rXaYd7MyLcDaU4TmhfxtwgcccMQ==
+bl@^4.0.3:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a"
+ integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==
dependencies:
- inherits "~2.0.0"
+ buffer "^5.5.0"
+ inherits "^2.0.4"
+ readable-stream "^3.4.0"
+
+blob-to-buffer@^1.2.8:
+ version "1.2.9"
+ resolved "https://registry.yarnpkg.com/blob-to-buffer/-/blob-to-buffer-1.2.9.tgz#a17fd6c1c564011408f8971e451544245daaa84a"
+ integrity sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==
boolbase@^1.0.0:
version "1.0.0"
@@ -2568,36 +3327,44 @@ boolbase@^1.0.0:
integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==
brace-expansion@^1.1.7:
- version "1.1.11"
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
- integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
+ version "1.1.12"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz#ab9b454466e5a8cc3a187beaad580412a9c5b843"
+ integrity sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==
dependencies:
balanced-match "^1.0.0"
concat-map "0.0.1"
brace-expansion@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
- integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz#54fc53237a613d854c7bd37463aad17df87214e7"
+ integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==
dependencies:
balanced-match "^1.0.0"
-braces@^3.0.2, braces@~3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
- integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
+braces@^3.0.3, braces@~3.0.2:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
+ integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
+ dependencies:
+ fill-range "^7.1.1"
+
+brotli@^1.3.2:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/brotli/-/brotli-1.3.3.tgz#7365d8cc00f12cf765d2b2c898716bcf4b604d48"
+ integrity sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==
dependencies:
- fill-range "^7.0.1"
+ base64-js "^1.1.2"
-browserslist@^4.0.0, browserslist@^4.22.2, browserslist@^4.23.0:
- version "4.23.0"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab"
- integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==
+browserslist@^4.0.0, browserslist@^4.24.0, browserslist@^4.24.4, browserslist@^4.25.1, browserslist@^4.26.3:
+ version "4.27.0"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.27.0.tgz#755654744feae978fbb123718b2f139bc0fa6697"
+ integrity sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==
dependencies:
- caniuse-lite "^1.0.30001587"
- electron-to-chromium "^1.4.668"
- node-releases "^2.0.14"
- update-browserslist-db "^1.0.13"
+ baseline-browser-mapping "^2.8.19"
+ caniuse-lite "^1.0.30001751"
+ electron-to-chromium "^1.5.238"
+ node-releases "^2.0.26"
+ update-browserslist-db "^1.1.4"
buffer-crc32@^1.0.0:
version "1.0.0"
@@ -2609,6 +3376,14 @@ buffer-from@^1.0.0:
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
+buffer@^5.5.0:
+ version "5.7.1"
+ resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0"
+ integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==
+ dependencies:
+ base64-js "^1.3.1"
+ ieee754 "^1.1.13"
+
buffer@^6.0.3:
version "6.0.3"
resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6"
@@ -2617,17 +3392,10 @@ buffer@^6.0.3:
base64-js "^1.3.1"
ieee754 "^1.2.1"
-builtin-modules@^3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6"
- integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
-
-builtins@^5.0.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.1.0.tgz#6d85eeb360c4ebc166c3fdef922a15aa7316a5e8"
- integrity sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==
- dependencies:
- semver "^7.0.0"
+builtin-modules@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-5.0.0.tgz#9be95686dedad2e9eed05592b07733db87dcff1a"
+ integrity sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==
bundle-name@^4.1.0:
version "4.1.0"
@@ -2636,64 +3404,40 @@ bundle-name@^4.1.0:
dependencies:
run-applescript "^7.0.0"
-c12@^1.10.0:
- version "1.10.0"
- resolved "https://registry.yarnpkg.com/c12/-/c12-1.10.0.tgz#e1936baa26fd03a9427875554aa6aeb86077b7fb"
- integrity sha512-0SsG7UDhoRWcuSvKWHaXmu5uNjDCDN3nkQLRL4Q42IlFy+ze58FcCoI3uPwINXinkz7ZinbhEgyzYFw9u9ZV8g==
+bundle-require@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/bundle-require/-/bundle-require-5.1.0.tgz#8db66f41950da3d77af1ef3322f4c3e04009faee"
+ integrity sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==
dependencies:
- chokidar "^3.6.0"
- confbox "^0.1.3"
+ load-tsconfig "^0.2.3"
+
+c12@^3.2.0, c12@^3.3.0:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/c12/-/c12-3.3.1.tgz#a100b50ecf1cd659b7bdcb2743f6ffe1dceb8a05"
+ integrity sha512-LcWQ01LT9tkoUINHgpIOv3mMs+Abv7oVCrtpMRi1PaapVEpWoMga5WuT7/DqFTu7URP9ftbOmimNw1KNIGh9DQ==
+ dependencies:
+ chokidar "^4.0.3"
+ confbox "^0.2.2"
defu "^6.1.4"
- dotenv "^16.4.5"
- giget "^1.2.1"
- jiti "^1.21.0"
- mlly "^1.6.1"
- ohash "^1.1.3"
- pathe "^1.1.2"
- perfect-debounce "^1.0.0"
- pkg-types "^1.0.3"
- rc9 "^2.1.1"
+ dotenv "^17.2.3"
+ exsolve "^1.0.7"
+ giget "^2.0.0"
+ jiti "^2.6.1"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
+ perfect-debounce "^2.0.0"
+ pkg-types "^2.3.0"
+ rc9 "^2.1.2"
cac@^6.7.14:
version "6.7.14"
resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959"
integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==
-cacache@^18.0.0:
- version "18.0.2"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-18.0.2.tgz#fd527ea0f03a603be5c0da5805635f8eef00c60c"
- integrity sha512-r3NU8h/P+4lVUHfeRw1dtgQYar3DZMm4/cm2bZgOvrFC/su7budSOeqh52VJIC4U4iG1WWwV6vRW0znqBvxNuw==
- dependencies:
- "@npmcli/fs" "^3.1.0"
- fs-minipass "^3.0.0"
- glob "^10.2.2"
- lru-cache "^10.0.1"
- minipass "^7.0.3"
- minipass-collect "^2.0.1"
- minipass-flush "^1.0.5"
- minipass-pipeline "^1.2.4"
- p-map "^4.0.0"
- ssri "^10.0.0"
- tar "^6.1.11"
- unique-filename "^3.0.0"
-
-cache-content-type@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/cache-content-type/-/cache-content-type-1.0.1.tgz#035cde2b08ee2129f4a8315ea8f00a00dba1453c"
- integrity sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==
- dependencies:
- mime-types "^2.1.18"
- ylru "^1.2.0"
-
-camelcase-css@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
- integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
-
-camelcase@^6.3.0:
- version "6.3.0"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
- integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
+callsites@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
+ integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
camelize@^1.0.0:
version "1.0.1"
@@ -2710,31 +3454,17 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001587, caniuse-lite@^1.0.30001599:
- version "1.0.30001614"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001614.tgz#f894b4209376a0bf923d67d9c361d96b1dfebe39"
- integrity sha512-jmZQ1VpmlRwHgdP1/uiKzgiAuGOfLEJsYFP4+GBou/QQ4U6IOJCB4NP1c+1p9RGLpwObcT94jA5/uO+F1vBbog==
-
-caseless@~0.12.0:
- version "0.12.0"
- resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
- integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001702, caniuse-lite@^1.0.30001751:
+ version "1.0.30001751"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz#dacd5d9f4baeea841641640139d2b2a4df4226ad"
+ integrity sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==
ccount@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5"
integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==
-chalk@^2.4.2:
- version "2.4.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
- integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
- dependencies:
- ansi-styles "^3.2.1"
- escape-string-regexp "^1.0.5"
- supports-color "^5.3.0"
-
-chalk@^4.1.1, chalk@^4.1.2:
+chalk@^4.0.0:
version "4.1.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
@@ -2742,10 +3472,15 @@ chalk@^4.1.1, chalk@^4.1.2:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
-chalk@^5.3.0:
- version "5.3.0"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385"
- integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==
+chalk@^5.6.2:
+ version "5.6.2"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.6.2.tgz#b1238b6e23ea337af71c7f8a295db5af0c158aea"
+ integrity sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==
+
+change-case@^5.4.4:
+ version "5.4.4"
+ resolved "https://registry.yarnpkg.com/change-case/-/change-case-5.4.4.tgz#0d52b507d8fb8f204343432381d1a6d7bff97a02"
+ integrity sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==
char-regex@^1.0.2:
version "1.0.2"
@@ -2772,12 +3507,7 @@ character-reference-invalid@^2.0.0:
resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz#85c66b041e43b47210faf401278abf808ac45cb9"
integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==
-chardet@^0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
- integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
-
-chokidar@^3.5.1, chokidar@^3.5.3, chokidar@^3.6.0:
+chokidar@^3.6.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b"
integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
@@ -2792,25 +3522,37 @@ chokidar@^3.5.1, chokidar@^3.5.3, chokidar@^3.6.0:
optionalDependencies:
fsevents "~2.3.2"
-chownr@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
- integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
+chokidar@^4.0.3:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.3.tgz#7be37a4c03c9aee1ecfe862a4a23b2c70c205d30"
+ integrity sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==
+ dependencies:
+ readdirp "^4.0.1"
-chrome-launcher@^1.1.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/chrome-launcher/-/chrome-launcher-1.1.1.tgz#17b7302aaf951d79ac3910de377425c915913c94"
- integrity sha512-OAQgBmpUzrIuShApIwOpjt7WFripGKcDMW/qeYU+kcl6jBPg87mRG+N2C3Vu+VeCVPqZ/ds3GfI2TK7tpz3Yyw==
+chownr@^1.1.1:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
+ integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
+
+chownr@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz#9855e64ecd240a9cc4267ce8a4aa5d24a1da15e4"
+ integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==
+
+chrome-launcher@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/chrome-launcher/-/chrome-launcher-1.2.1.tgz#a84877c123192bdadb40dc274b74caf164e98032"
+ integrity sha512-qmFR5PLMzHyuNJHwOloHPAHhbaNglkfeV/xDtt5b7xiFFyU1I+AZZX0PYseMuhenJSSirgxELYIbswcoc+5H4A==
dependencies:
"@types/node" "*"
escape-string-regexp "^4.0.0"
is-wsl "^2.2.0"
lighthouse-logger "^2.0.1"
-ci-info@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.0.0.tgz#65466f8b280fc019b9f50a5388115d17a63a44f2"
- integrity sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==
+ci-info@^4.3.0:
+ version "4.3.1"
+ resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.3.1.tgz#355ad571920810b5623e11d40232f443f16f1daa"
+ integrity sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==
citty@^0.1.5, citty@^0.1.6:
version "0.1.6"
@@ -2819,37 +3561,12 @@ citty@^0.1.5, citty@^0.1.6:
dependencies:
consola "^3.2.3"
-clean-stack@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
- integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
-
-clear@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/clear/-/clear-0.1.0.tgz#b81b1e03437a716984fd7ac97c87d73bdfe7048a"
- integrity sha512-qMjRnoL+JDPJHeLePZJuao6+8orzHMGP04A8CdwCNsKhRbOnKRjefxONR7bwILT3MHecxKBjHkKL/tkZ8r4Uzw==
-
-cli-cursor@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
- integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==
- dependencies:
- restore-cursor "^2.0.0"
-
-cli-table3@^0.5.1:
- version "0.5.1"
- resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202"
- integrity sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==
+clean-regexp@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz#8df7c7aae51fd36874e8f8d05b9180bc11a3fed7"
+ integrity sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==
dependencies:
- object-assign "^4.1.0"
- string-width "^2.1.1"
- optionalDependencies:
- colors "^1.1.2"
-
-cli-width@^2.0.0:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48"
- integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==
+ escape-string-regexp "^1.0.5"
clipboardy@^4.0.0:
version "4.0.0"
@@ -2860,6 +3577,16 @@ clipboardy@^4.0.0:
is-wsl "^3.1.0"
is64bit "^2.0.0"
+clipboardy@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-5.0.0.tgz#70b16e111bdcedb782e046ba5a1901550a51225b"
+ integrity sha512-MQfKHaD09eP80Pev4qBxZLbxJK/ONnqfSYAPlCmPh+7BDboYtO/3BmB6HGzxDIT0SlTRc2tzS8lQqfcdLtZ0Kg==
+ dependencies:
+ execa "^9.6.0"
+ is-wayland "^0.1.0"
+ is-wsl "^3.1.0"
+ is64bit "^2.0.0"
+
cliui@^8.0.1:
version "8.0.1"
resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa"
@@ -2869,23 +3596,16 @@ cliui@^8.0.1:
strip-ansi "^6.0.1"
wrap-ansi "^7.0.0"
+clone@^2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f"
+ integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==
+
cluster-key-slot@^1.1.0:
version "1.1.2"
resolved "https://registry.yarnpkg.com/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz#88ddaa46906e303b5de30d3153b7d9fe0a0c19ac"
integrity sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==
-co@^4.6.0:
- version "4.6.0"
- resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
- integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==
-
-color-convert@^1.9.0:
- version "1.9.3"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
- integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
- dependencies:
- color-name "1.1.3"
-
color-convert@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
@@ -2893,78 +3613,72 @@ color-convert@^2.0.1:
dependencies:
color-name "~1.1.4"
-color-name@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
- integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
-
-color-name@^1.1.4, color-name@~1.1.4:
+color-name@^1.0.0, color-name@^1.1.4, color-name@~1.1.4:
version "1.1.4"
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
-color-support@^1.1.2:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2"
- integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==
+color-string@^1.9.0:
+ version "1.9.1"
+ resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4"
+ integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==
+ dependencies:
+ color-name "^1.0.0"
+ simple-swizzle "^0.2.2"
+
+color@^4.2.3:
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a"
+ integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==
+ dependencies:
+ color-convert "^2.0.1"
+ color-string "^1.9.0"
colord@^2.9.3:
version "2.9.3"
resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43"
integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==
-colorette@^2.0.20:
- version "2.0.20"
- resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a"
- integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==
-
-colors@1.4.0, colors@^1.1.2:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
- integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==
-
-combined-stream@^1.0.6, combined-stream@~1.0.6:
- version "1.0.8"
- resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
- integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
- dependencies:
- delayed-stream "~1.0.0"
+colortranslator@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/colortranslator/-/colortranslator-5.0.0.tgz#a7590fa56702c2be75e4fec755127cb658385583"
+ integrity sha512-Z3UPUKasUVDFCDYAjP2fmlVRf1jFHJv1izAmPjiOa0OCIw1W7iC8PZ2GsoDa8uZv+mKyWopxxStT9q05+27h7w==
comma-separated-tokens@^2.0.0:
version "2.0.3"
resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee"
integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==
-commander@^2.20.0:
+commander@^11.1.0:
+ version "11.1.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-11.1.0.tgz#62fdce76006a68e5c1ab3314dc92e800eb83d906"
+ integrity sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==
+
+commander@^2.20.0, commander@^2.20.3:
version "2.20.3"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
-commander@^4.0.0:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
- integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
-
-commander@^6.0.0:
- version "6.2.1"
- resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c"
- integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==
-
commander@^7.2.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
-commander@^8.0.0:
- version "8.3.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66"
- integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==
+comment-parser@1.4.1, comment-parser@^1.4.0, comment-parser@^1.4.1:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.4.1.tgz#bdafead37961ac079be11eb7ec65c4d021eaf9cc"
+ integrity sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==
commondir@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
+compatx@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/compatx/-/compatx-0.2.0.tgz#76bae4e221c8de3da795f52b2e0b67003735b313"
+ integrity sha512-6gLRNt4ygsi5NyMVhceOCFv14CIdDFN7fQjX1U4+47qVE/+kjPoXMK65KWK+dWxmFzMTuKazoQ9sch6pM0p5oA==
+
compress-commons@^6.0.2:
version "6.0.2"
resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-6.0.2.tgz#26d31251a66b9d6ba23a84064ecd3a6a71d2609e"
@@ -2981,55 +3695,54 @@ concat-map@0.0.1:
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
-confbox@^0.1.3, confbox@^0.1.7:
- version "0.1.7"
- resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.1.7.tgz#ccfc0a2bcae36a84838e83a3b7f770fb17d6c579"
- integrity sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==
-
-consola@^3.2.3:
- version "3.2.3"
- resolved "https://registry.yarnpkg.com/consola/-/consola-3.2.3.tgz#0741857aa88cfa0d6fd53f1cff0375136e98502f"
- integrity sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==
-
-console-control-strings@^1.0.0, console-control-strings@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
- integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==
+confbox@^0.1.8:
+ version "0.1.8"
+ resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.1.8.tgz#820d73d3b3c82d9bd910652c5d4d599ef8ff8b06"
+ integrity sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==
-content-disposition@~0.5.2:
- version "0.5.4"
- resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe"
- integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==
- dependencies:
- safe-buffer "5.2.1"
+confbox@^0.2.2:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.2.2.tgz#8652f53961c74d9e081784beed78555974a9c110"
+ integrity sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==
-content-type@^1.0.4:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
- integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
+consola@^3.2.3, consola@^3.4.0, consola@^3.4.2:
+ version "3.4.2"
+ resolved "https://registry.yarnpkg.com/consola/-/consola-3.4.2.tgz#5af110145397bb67afdab77013fdc34cae590ea7"
+ integrity sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==
convert-source-map@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
-cookie-es@^1.0.0, cookie-es@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/cookie-es/-/cookie-es-1.1.0.tgz#68f8d9f48aeb5a534f3896f80e792760d3d20def"
- integrity sha512-L2rLOcK0wzWSfSDA33YR+PUHDG10a8px7rUHKWbGLP4YfbsMed2KFUw5fczvDPbT98DDe3LEzviswl810apTEw==
+cookie-es@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/cookie-es/-/cookie-es-1.2.2.tgz#18ceef9eb513cac1cb6c14bcbf8bdb2679b34821"
+ integrity sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==
-cookies@~0.9.0:
- version "0.9.1"
- resolved "https://registry.yarnpkg.com/cookies/-/cookies-0.9.1.tgz#3ffed6f60bb4fb5f146feeedba50acc418af67e3"
- integrity sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==
- dependencies:
- depd "~2.0.0"
- keygrip "~1.1.0"
+cookie-es@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/cookie-es/-/cookie-es-2.0.0.tgz#ca6163d7ef8686ea6bbdd551f1de575569c1ed69"
+ integrity sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==
-core-util-is@1.0.2:
+cookie@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
- integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==
+ resolved "https://registry.yarnpkg.com/cookie/-/cookie-1.0.2.tgz#27360701532116bd3f1f9416929d176afe1e4610"
+ integrity sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==
+
+copy-anything@^4:
+ version "4.0.5"
+ resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-4.0.5.tgz#16cabafd1ea4bb327a540b750f2b4df522825aea"
+ integrity sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==
+ dependencies:
+ is-what "^5.2.0"
+
+core-js-compat@^3.44.0:
+ version "3.46.0"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.46.0.tgz#0c87126a19a1af00371e12b02a2b088a40f3c6f7"
+ integrity sha512-p9hObIIEENxSV8xIu+V68JjSeARg6UVMG5mR+JEUguG3sI6MsiS1njz2jHmyJDvA+8jX/sytkBHup6kxhM9law==
+ dependencies:
+ browserslist "^4.26.3"
core-util-is@~1.0.0:
version "1.0.3"
@@ -3049,34 +3762,33 @@ crc32-stream@^6.0.0:
crc-32 "^1.2.0"
readable-stream "^4.0.0"
-create-require@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
- integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
-
-croner@^8.0.1:
- version "8.0.2"
- resolved "https://registry.yarnpkg.com/croner/-/croner-8.0.2.tgz#e8f7b539ba4e23e16d737867fec2d89d984789de"
- integrity sha512-HgSdlSUX8mIgDTTiQpWUP4qY4IFRMsduPCYdca34Pelt8MVdxdaDOzreFtCscA6R+cRZd7UbD1CD3uyx6J3X1A==
+croner@^9.1.0:
+ version "9.1.0"
+ resolved "https://registry.yarnpkg.com/croner/-/croner-9.1.0.tgz#94ccbba2570bca329f60f36ec19875dccf9a63aa"
+ integrity sha512-p9nwwR4qyT5W996vBZhdvBCnMhicY5ytZkR4D1Xj0wuTDEiMnjwR57Q3RXYY/s0EpX6Ay3vgIcfaR+ewGHsi+g==
-cronstrue@^2.49.0:
- version "2.49.0"
- resolved "https://registry.yarnpkg.com/cronstrue/-/cronstrue-2.49.0.tgz#d59f6d19e33030d45d9ecd3b845d4ccd79c6bfbd"
- integrity sha512-FWZBqdStQaPR8ZTBQGALh1EK9Hl1HcG70dyGvD1rKLPafFO3H73o38dz/e8YkIlbLn3JxmBI/f6Doe3Nh+DcEQ==
+cross-fetch@^3.0.4:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.2.0.tgz#34e9192f53bc757d6614304d9e5e6fb4edb782e3"
+ integrity sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==
+ dependencies:
+ node-fetch "^2.7.0"
-cross-spawn@^7.0.0, cross-spawn@^7.0.3:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
- integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+cross-spawn@^7.0.3, cross-spawn@^7.0.6:
+ version "7.0.6"
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f"
+ integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
dependencies:
path-key "^3.1.0"
shebang-command "^2.0.0"
which "^2.0.1"
-crossws@^0.2.0, crossws@^0.2.2, crossws@^0.2.4:
- version "0.2.4"
- resolved "https://registry.yarnpkg.com/crossws/-/crossws-0.2.4.tgz#82a8b518bff1018ab1d21ced9e35ffbe1681ad03"
- integrity sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==
+"crossws@>=0.2.0 <0.4.0", crossws@^0.3.5:
+ version "0.3.5"
+ resolved "https://registry.yarnpkg.com/crossws/-/crossws-0.3.5.tgz#daad331d44148ea6500098bc858869f3a5ab81a6"
+ integrity sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==
+ dependencies:
+ uncrypto "^0.1.3"
css-background-parser@^0.1.0:
version "0.1.0"
@@ -3094,19 +3806,19 @@ css-color-keywords@^1.0.0:
integrity sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==
css-declaration-sorter@^7.2.0:
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz#6dec1c9523bc4a643e088aab8f09e67a54961024"
- integrity sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==
+ version "7.3.0"
+ resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-7.3.0.tgz#edc45c36bcdfea0788b1d4452829f142ef1c4a4a"
+ integrity sha512-LQF6N/3vkAMYF4xoHLJfG718HRJh34Z8BnNhd6bosOMIVjMlhuZK5++oZa3uYAgrI5+7x2o27gUqTR2U/KjUOQ==
-css-inline@^0.11.0:
- version "0.11.2"
- resolved "https://registry.yarnpkg.com/css-inline/-/css-inline-0.11.2.tgz#02cb4e0d4ca04d731a21e438c02b3ff11b0a1034"
- integrity sha512-c/oie5Yqa2lVRwUO7A8nd3c3r0x7yE6MQH2PPB/R1LaUb6ohZD7vNXj23fod5y4QNsNhsQi98/AWfUwo1K6R7g==
+css-gradient-parser@^0.0.16:
+ version "0.0.16"
+ resolved "https://registry.yarnpkg.com/css-gradient-parser/-/css-gradient-parser-0.0.16.tgz#5735da0822aef39da9b1960b314792ab542d9bb5"
+ integrity sha512-3O5QdqgFRUbXvK1x5INf1YkBz1UKSWqrd63vWsum8MNHDBYD5urm3QtxZbKU259OrEXNM26lP/MPY3d1IGkBgA==
css-select@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6"
- integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==
+ version "5.2.2"
+ resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.2.2.tgz#01b6e8d163637bb2dd6c982ca4ed65863682786e"
+ integrity sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==
dependencies:
boolbase "^1.0.0"
css-what "^6.1.0"
@@ -3131,6 +3843,14 @@ css-tree@^2.3.1:
mdn-data "2.0.30"
source-map-js "^1.0.1"
+css-tree@^3.0.0, css-tree@^3.0.1, css-tree@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-3.1.0.tgz#7aabc035f4e66b5c86f54570d55e05b1346eb0fd"
+ integrity sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==
+ dependencies:
+ mdn-data "2.12.2"
+ source-map-js "^1.0.1"
+
css-tree@~2.2.0:
version "2.2.1"
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.2.1.tgz#36115d382d60afd271e377f9c5f67d02bd48c032"
@@ -3140,63 +3860,68 @@ css-tree@~2.2.0:
source-map-js "^1.0.1"
css-what@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4"
- integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==
+ version "6.2.2"
+ resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.2.2.tgz#cdcc8f9b6977719fdfbd1de7aec24abf756b9dea"
+ integrity sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==
cssesc@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
-cssnano-preset-default@^6.1.2:
- version "6.1.2"
- resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz#adf4b89b975aa775f2750c89dbaf199bbd9da35e"
- integrity sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==
+cssfilter@0.0.10:
+ version "0.0.10"
+ resolved "https://registry.yarnpkg.com/cssfilter/-/cssfilter-0.0.10.tgz#c6d2672632a2e5c83e013e6864a42ce8defd20ae"
+ integrity sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==
+
+cssnano-preset-default@^7.0.9:
+ version "7.0.9"
+ resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-7.0.9.tgz#ba778ab7cbec830e4dbcac722443a90fd99ae34e"
+ integrity sha512-tCD6AAFgYBOVpMBX41KjbvRh9c2uUjLXRyV7KHSIrwHiq5Z9o0TFfUCoM3TwVrRsRteN3sVXGNvjVNxYzkpTsA==
dependencies:
- browserslist "^4.23.0"
+ browserslist "^4.25.1"
css-declaration-sorter "^7.2.0"
- cssnano-utils "^4.0.2"
- postcss-calc "^9.0.1"
- postcss-colormin "^6.1.0"
- postcss-convert-values "^6.1.0"
- postcss-discard-comments "^6.0.2"
- postcss-discard-duplicates "^6.0.3"
- postcss-discard-empty "^6.0.3"
- postcss-discard-overridden "^6.0.2"
- postcss-merge-longhand "^6.0.5"
- postcss-merge-rules "^6.1.1"
- postcss-minify-font-values "^6.1.0"
- postcss-minify-gradients "^6.0.3"
- postcss-minify-params "^6.1.0"
- postcss-minify-selectors "^6.0.4"
- postcss-normalize-charset "^6.0.2"
- postcss-normalize-display-values "^6.0.2"
- postcss-normalize-positions "^6.0.2"
- postcss-normalize-repeat-style "^6.0.2"
- postcss-normalize-string "^6.0.2"
- postcss-normalize-timing-functions "^6.0.2"
- postcss-normalize-unicode "^6.1.0"
- postcss-normalize-url "^6.0.2"
- postcss-normalize-whitespace "^6.0.2"
- postcss-ordered-values "^6.0.2"
- postcss-reduce-initial "^6.1.0"
- postcss-reduce-transforms "^6.0.2"
- postcss-svgo "^6.0.3"
- postcss-unique-selectors "^6.0.4"
-
-cssnano-utils@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-4.0.2.tgz#56f61c126cd0f11f2eef1596239d730d9fceff3c"
- integrity sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==
+ cssnano-utils "^5.0.1"
+ postcss-calc "^10.1.1"
+ postcss-colormin "^7.0.4"
+ postcss-convert-values "^7.0.7"
+ postcss-discard-comments "^7.0.4"
+ postcss-discard-duplicates "^7.0.2"
+ postcss-discard-empty "^7.0.1"
+ postcss-discard-overridden "^7.0.1"
+ postcss-merge-longhand "^7.0.5"
+ postcss-merge-rules "^7.0.6"
+ postcss-minify-font-values "^7.0.1"
+ postcss-minify-gradients "^7.0.1"
+ postcss-minify-params "^7.0.4"
+ postcss-minify-selectors "^7.0.5"
+ postcss-normalize-charset "^7.0.1"
+ postcss-normalize-display-values "^7.0.1"
+ postcss-normalize-positions "^7.0.1"
+ postcss-normalize-repeat-style "^7.0.1"
+ postcss-normalize-string "^7.0.1"
+ postcss-normalize-timing-functions "^7.0.1"
+ postcss-normalize-unicode "^7.0.4"
+ postcss-normalize-url "^7.0.1"
+ postcss-normalize-whitespace "^7.0.1"
+ postcss-ordered-values "^7.0.2"
+ postcss-reduce-initial "^7.0.4"
+ postcss-reduce-transforms "^7.0.1"
+ postcss-svgo "^7.1.0"
+ postcss-unique-selectors "^7.0.4"
+
+cssnano-utils@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-5.0.1.tgz#f529e9aa0d7930512ca45b9e2ddb8d6b9092eb30"
+ integrity sha512-ZIP71eQgG9JwjVZsTPSqhc6GHgEr53uJ7tK5///VfyWj6Xp2DBmixWHqJgPno+PqATzn48pL42ww9x5SSGmhZg==
-cssnano@^6.1.2:
- version "6.1.2"
- resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-6.1.2.tgz#4bd19e505bd37ee7cf0dc902d3d869f6d79c66b8"
- integrity sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==
+cssnano@^7.1.1:
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-7.1.1.tgz#a24ae8a87ec4129f9a783498402c9cbcb2e9fe25"
+ integrity sha512-fm4D8ti0dQmFPeF8DXSAA//btEmqCOgAc/9Oa3C1LW94h5usNrJEfrON7b4FkPZgnDEn6OUs5NdxiJZmAtGOpQ==
dependencies:
- cssnano-preset-default "^6.1.2"
- lilconfig "^3.1.1"
+ cssnano-preset-default "^7.0.9"
+ lilconfig "^3.1.3"
csso@^5.0.5:
version "5.0.5"
@@ -3210,50 +3935,48 @@ csstype@^3.1.3:
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81"
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
-dashdash@^1.12.0:
- version "1.14.1"
- resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
- integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==
- dependencies:
- assert-plus "^1.0.0"
-
-db0@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/db0/-/db0-0.1.4.tgz#8df1d9600b812bad0b4129ccbbb7f1b8596a5817"
- integrity sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA==
-
-debug@2.6.9, debug@^2.6.9:
- version "2.6.9"
- resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
- integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
- dependencies:
- ms "2.0.0"
+db0@^0.3.2, db0@^0.3.4:
+ version "0.3.4"
+ resolved "https://registry.yarnpkg.com/db0/-/db0-0.3.4.tgz#fb109b0d9823ba1f787a4a3209fa1f3cf9ae9cf9"
+ integrity sha512-RiXXi4WaNzPTHEOu8UPQKMooIbqOEyqA1t7Z6MsdxSCeb8iUC9ko3LcmsLmeUt2SM5bctfArZKkRQggKZz7JNw==
-debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@~4.3.1, debug@~4.3.2:
- version "4.3.4"
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
- integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
+debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5, debug@^4.4.0, debug@^4.4.1, debug@^4.4.3:
+ version "4.4.3"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a"
+ integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==
dependencies:
- ms "2.1.2"
+ ms "^2.1.3"
-debug@^3.1.0, debug@^3.2.7:
- version "3.2.7"
- resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
- integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
+debug@~4.3.1, debug@~4.3.2:
+ version "4.3.7"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52"
+ integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==
dependencies:
- ms "^2.1.1"
+ ms "^2.1.3"
decode-named-character-reference@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz#daabac9690874c394c81e4162a0304b35d824f0e"
- integrity sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz#25c32ae6dd5e21889549d40f676030e9514cc0ed"
+ integrity sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==
dependencies:
character-entities "^2.0.0"
-deep-equal@~1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
- integrity sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==
+decompress-response@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc"
+ integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==
+ dependencies:
+ mimic-response "^3.1.0"
+
+deep-extend@^0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
+ integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
+
+deep-is@^0.1.3:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
+ integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
deepmerge@^4.2.2:
version "4.3.1"
@@ -3283,50 +4006,30 @@ define-lazy-prop@^3.0.0:
resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f"
integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==
-defu@^6.0.0, defu@^6.1.3, defu@^6.1.4:
+defu@^6.1.4:
version "6.1.4"
resolved "https://registry.yarnpkg.com/defu/-/defu-6.1.4.tgz#4e0c9cf9ff68fe5f3d7f2765cc1a012dfdcb0479"
integrity sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==
-delayed-stream@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
- integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
-
-delegates@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
- integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==
-
denque@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/denque/-/denque-2.1.0.tgz#e93e1a6569fb5e66f16a3c2a2964617d349d6ab1"
integrity sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==
-depd@2.0.0, depd@^2.0.0, depd@~2.0.0:
+depd@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
-depd@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
- integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==
-
dequal@^2.0.0:
version "2.0.3"
resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==
-destr@^2.0.3:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/destr/-/destr-2.0.3.tgz#7f9e97cb3d16dbdca7be52aca1644ce402cfe449"
- integrity sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==
-
-destroy@1.2.0, destroy@^1.0.4:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015"
- integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==
+destr@^2.0.2, destr@^2.0.3, destr@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/destr/-/destr-2.0.5.tgz#7d112ff1b925fb8d2079fac5bdb4a90973b51fdb"
+ integrity sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==
detab@^3.0.2:
version "3.0.2"
@@ -3338,15 +4041,15 @@ detect-libc@^1.0.3:
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==
-detect-libc@^2.0.0:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz#f0cd503b40f9939b894697d19ad50895e30cf700"
- integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==
+detect-libc@^2.0.0, detect-libc@^2.0.2, detect-libc@^2.0.3:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz#689c5dcdc1900ef5583a4cb9f6d7b473742074ad"
+ integrity sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==
-devalue@^4.3.2:
- version "4.3.3"
- resolved "https://registry.yarnpkg.com/devalue/-/devalue-4.3.3.tgz#e35df3bdc49136837e77986f629b9fa6fef50726"
- integrity sha512-UH8EL6H2ifcY8TbD2QsxwCC/pr5xSwPvv85LrLXVihmHVC3T3YqTCIwnR5ak0yO1KYqlxrPVOA/JVZJYPy2ATg==
+devalue@^5.3.2:
+ version "5.4.2"
+ resolved "https://registry.yarnpkg.com/devalue/-/devalue-5.4.2.tgz#d002d836f9e92fc0c3bd9b76ea69129cbf99dca7"
+ integrity sha512-MwPZTKEPK2k8Qgfmqrd48ZKVvzSQjgW0lXLxiIBA8dQjtf/6mw6pggHNLcyDKyf+fI6eXxlQwPsfaCMTU5U+Bw==
devlop@^1.0.0, devlop@^1.1.0:
version "1.1.0"
@@ -3355,27 +4058,15 @@ devlop@^1.0.0, devlop@^1.1.0:
dependencies:
dequal "^2.0.0"
-didyoumean@^1.2.2:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037"
- integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==
-
-diff@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.0.tgz#26ded047cd1179b78b9537d5ef725503ce1ae531"
- integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==
-
-dir-glob@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
- integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
- dependencies:
- path-type "^4.0.0"
+dfa@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/dfa/-/dfa-1.2.0.tgz#96ac3204e2d29c49ea5b57af8d92c2ae12790657"
+ integrity sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==
-dlv@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79"
- integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==
+diff@^8.0.2:
+ version "8.0.2"
+ resolved "https://registry.yarnpkg.com/diff/-/diff-8.0.2.tgz#712156a6dd288e66ebb986864e190c2fc9eddfae"
+ integrity sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==
dom-serializer@^2.0.0:
version "2.0.0"
@@ -3399,27 +4090,32 @@ domhandler@^5.0.2, domhandler@^5.0.3:
domelementtype "^2.3.0"
domutils@^3.0.1:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e"
- integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==
+ version "3.2.2"
+ resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.2.2.tgz#edbfe2b668b0c1d97c24baf0f1062b132221bc78"
+ integrity sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==
dependencies:
dom-serializer "^2.0.0"
domelementtype "^2.3.0"
domhandler "^5.0.3"
-dot-prop@^8.0.2:
- version "8.0.2"
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-8.0.2.tgz#afda6866610684dd155a96538f8efcdf78a27f18"
- integrity sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==
+dot-prop@^10.1.0:
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-10.1.0.tgz#91dbeb6771a9d2c31eab11ade3fdb1d83c4376c4"
+ integrity sha512-MVUtAugQMOff5RnBy2d9N31iG0lNwg1qAoAOn7pOK5wf94WIaE3My2p3uwTQuvS2AcqchkcR3bHByjaM0mmi7Q==
dependencies:
- type-fest "^3.8.0"
+ type-fest "^5.0.0"
+
+dotenv@^16.4.7:
+ version "16.6.1"
+ resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.6.1.tgz#773f0e69527a8315c7285d5ee73c4459d20a8020"
+ integrity sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==
-dotenv@^16.4.5:
- version "16.4.5"
- resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f"
- integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==
+dotenv@^17.2.3:
+ version "17.2.3"
+ resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-17.2.3.tgz#ad995d6997f639b11065f419a22fabf567cdb9a2"
+ integrity sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==
-duplexer@^0.1.2, duplexer@~0.1.1:
+duplexer@^0.1.2:
version "0.1.2"
resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
@@ -3429,28 +4125,70 @@ eastasianwidth@^0.2.0:
resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
-ecc-jsbn@~0.1.1:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
- integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==
- dependencies:
- jsbn "~0.1.0"
- safer-buffer "^2.1.0"
-
ee-first@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
-electron-to-chromium@^1.4.668:
- version "1.4.751"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.751.tgz#b5b19742a435c589de02f60c16618150498bbd59"
- integrity sha512-2DEPi++qa89SMGRhufWTiLmzqyuGmNF3SK4+PQetW1JKiZdEpF4XQonJXJCzyuYSA6mauiMhbyVhqYAP45Hvfw==
+electron-to-chromium@^1.5.238:
+ version "1.5.238"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.238.tgz#cdf5ee412df435174490f5aa5793df815b4ee157"
+ integrity sha512-khBdc+w/Gv+cS8e/Pbnaw/FXcBUeKrRVik9IxfXtgREOWyJhR4tj43n3amkVogJ/yeQUqzkrZcFhtIxIdqmmcQ==
+
+embla-carousel-auto-height@^8.6.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-auto-height/-/embla-carousel-auto-height-8.6.0.tgz#89ea31e2119531b2a83884497a6307178e66b00c"
+ integrity sha512-/HrJQOEM6aol/oF33gd2QlINcXy3e19fJWvHDuHWp2bpyTa+2dm9tVVJak30m2Qy6QyQ6Fc8DkImtv7pxWOJUQ==
+
+embla-carousel-auto-scroll@^8.6.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-auto-scroll/-/embla-carousel-auto-scroll-8.6.0.tgz#02f648acd8b184a0f3ae0f2b38a983afc16a2648"
+ integrity sha512-WT9fWhNXFpbQ6kP+aS07oF5IHYLZ1Dx4DkwgCY8Hv2ZyYd2KMCPfMV1q/cA3wFGuLO7GMgKiySLX90/pQkcOdQ==
+
+embla-carousel-autoplay@^8.6.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-autoplay/-/embla-carousel-autoplay-8.6.0.tgz#bc86c97de00d52ec34b05058736ef50af6e0d0e4"
+ integrity sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==
+
+embla-carousel-class-names@^8.6.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-class-names/-/embla-carousel-class-names-8.6.0.tgz#2bdd057427c60d6281f5e2d11fca02ca60529939"
+ integrity sha512-l1hm1+7GxQ+zwdU2sea/LhD946on7XO2qk3Xq2XWSwBaWfdgchXdK567yzLtYSHn4sWYdiX+x4nnaj+saKnJkw==
+
+embla-carousel-fade@^8.6.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-fade/-/embla-carousel-fade-8.6.0.tgz#92d19ecd54441eb6f37910bf9e16fd3f547e3374"
+ integrity sha512-qaYsx5mwCz72ZrjlsXgs1nKejSrW+UhkbOMwLgfRT7w2LtdEB03nPRI06GHuHv5ac2USvbEiX2/nAHctcDwvpg==
+
+embla-carousel-reactive-utils@8.6.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-reactive-utils/-/embla-carousel-reactive-utils-8.6.0.tgz#607f1d8ab9921c906a555c206251b2c6db687223"
+ integrity sha512-fMVUDUEx0/uIEDM0Mz3dHznDhfX+znCCDCeIophYb1QGVM7YThSWX+wz11zlYwWFOr74b4QLGg0hrGPJeG2s4A==
+
+embla-carousel-vue@^8.6.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-vue/-/embla-carousel-vue-8.6.0.tgz#ef70e8f49c8a04e502a9b3de45ab6ecc8247f50b"
+ integrity sha512-v8UO5UsyLocZnu/LbfQA7Dn2QHuZKurJY93VUmZYP//QRWoCWOsionmvLLAlibkET3pGPs7++03VhJKbWD7vhQ==
+ dependencies:
+ embla-carousel "8.6.0"
+ embla-carousel-reactive-utils "8.6.0"
+
+embla-carousel-wheel-gestures@^8.1.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-wheel-gestures/-/embla-carousel-wheel-gestures-8.1.0.tgz#dfdb865f634058723c46539bdde45248673a43a5"
+ integrity sha512-J68jkYrxbWDmXOm2n2YHl+uMEXzkGSKjWmjaEgL9xVvPb3HqVmg6rJSKfI3sqIDVvm7mkeTy87wtG/5263XqHQ==
+ dependencies:
+ wheel-gestures "^2.2.5"
+
+embla-carousel@8.6.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel/-/embla-carousel-8.6.0.tgz#abcedff2bff36992ea8ac27cd30080ca5b6a3f58"
+ integrity sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==
-emoji-regex@^10.2.1:
- version "10.3.0"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.3.0.tgz#76998b9268409eb3dae3de989254d456e70cfe23"
- integrity sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==
+emoji-regex-xs@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/emoji-regex-xs/-/emoji-regex-xs-2.0.1.tgz#012f4e4d88ecec8397df32d5b4ef89d422559c0e"
+ integrity sha512-1QFuh8l7LqUcKe24LsPUNzjrzJQ7pgRwp1QMcZ5MX6mFplk2zQ08NVCM84++1cveaUUYtcCYHmeFEuNg16sU4g==
emoji-regex@^8.0.0:
version "8.0.0"
@@ -3468,101 +4206,109 @@ emojilib@^2.4.0:
integrity sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==
emoticon@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/emoticon/-/emoticon-4.0.1.tgz#2d2bbbf231ce3a5909e185bbb64a9da703a1e749"
- integrity sha512-dqx7eA9YaqyvYtUhJwT4rC1HIp82j5ybS1/vQ42ur+jBe17dJMwZE4+gvL1XadSFfxaPFFGt3Xsw+Y8akThDlw==
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/emoticon/-/emoticon-4.1.0.tgz#d5a156868ee173095627a33de3f1e914c3dde79e"
+ integrity sha512-VWZfnxqwNcc51hIy/sbOdEem6D+cVtpPzEEtVAFdaas30+1dgkyaOQ4sQ6Bp0tOMqWO1v+HQfYaoodOkdhK6SQ==
-encodeurl@^1.0.2, encodeurl@~1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
- integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==
+encodeurl@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58"
+ integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==
-encoding@^0.1.13:
- version "0.1.13"
- resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9"
- integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==
+end-of-stream@^1.1.0, end-of-stream@^1.4.1:
+ version "1.4.5"
+ resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.5.tgz#7344d711dea40e0b74abc2ed49778743ccedb08c"
+ integrity sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==
dependencies:
- iconv-lite "^0.6.2"
+ once "^1.4.0"
-engine.io-client@~6.5.2:
- version "6.5.3"
- resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-6.5.3.tgz#4cf6fa24845029b238f83c628916d9149c399bc5"
- integrity sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==
+engine.io-client@~6.6.1:
+ version "6.6.3"
+ resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-6.6.3.tgz#815393fa24f30b8e6afa8f77ccca2f28146be6de"
+ integrity sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w==
dependencies:
"@socket.io/component-emitter" "~3.1.0"
debug "~4.3.1"
engine.io-parser "~5.2.1"
- ws "~8.11.0"
- xmlhttprequest-ssl "~2.0.0"
+ ws "~8.17.1"
+ xmlhttprequest-ssl "~2.1.1"
engine.io-parser@~5.2.1:
- version "5.2.2"
- resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-5.2.2.tgz#37b48e2d23116919a3453738c5720455e64e1c49"
- integrity sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==
+ version "5.2.3"
+ resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-5.2.3.tgz#00dc5b97b1f233a23c9398d0209504cf5f94d92f"
+ integrity sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==
-enhanced-resolve@^5.14.1:
- version "5.16.0"
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz#65ec88778083056cb32487faa9aef82ed0864787"
- integrity sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==
+enhanced-resolve@^5.18.3:
+ version "5.18.3"
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz#9b5f4c5c076b8787c78fe540392ce76a88855b44"
+ integrity sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==
dependencies:
graceful-fs "^4.2.4"
tapable "^2.2.0"
-entities@^4.2.0, entities@^4.4.0, entities@^4.5.0:
+entities@^4.2.0, entities@^4.5.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
-env-paths@^2.2.0:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2"
- integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==
-
-err-code@^2.0.2:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9"
- integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==
+entities@^6.0.0:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/entities/-/entities-6.0.1.tgz#c28c34a43379ca7f61d074130b2f5f7020a30694"
+ integrity sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==
-error-stack-parser-es@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/error-stack-parser-es/-/error-stack-parser-es-0.1.1.tgz#9c1d2bbfbba8b51670062e7fbf43c6bcfb6eb4da"
- integrity sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==
+error-stack-parser-es@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/error-stack-parser-es/-/error-stack-parser-es-1.0.5.tgz#e6a1655dd12f39bb3a85bf4c7088187d78740327"
+ integrity sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==
-esbuild@^0.20.1, esbuild@^0.20.2:
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1"
- integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==
+errx@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/errx/-/errx-0.1.0.tgz#4881e411d90a3b1e1620a07604f50081dd59f3aa"
+ integrity sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==
+
+es-module-lexer@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.7.0.tgz#9159601561880a85f2734560a9099b2c31e5372a"
+ integrity sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==
+
+esbuild@^0.25.0, esbuild@^0.25.10, esbuild@^0.25.4, esbuild@^0.25.9:
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.11.tgz#0f31b82f335652580f75ef6897bba81962d9ae3d"
+ integrity sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==
optionalDependencies:
- "@esbuild/aix-ppc64" "0.20.2"
- "@esbuild/android-arm" "0.20.2"
- "@esbuild/android-arm64" "0.20.2"
- "@esbuild/android-x64" "0.20.2"
- "@esbuild/darwin-arm64" "0.20.2"
- "@esbuild/darwin-x64" "0.20.2"
- "@esbuild/freebsd-arm64" "0.20.2"
- "@esbuild/freebsd-x64" "0.20.2"
- "@esbuild/linux-arm" "0.20.2"
- "@esbuild/linux-arm64" "0.20.2"
- "@esbuild/linux-ia32" "0.20.2"
- "@esbuild/linux-loong64" "0.20.2"
- "@esbuild/linux-mips64el" "0.20.2"
- "@esbuild/linux-ppc64" "0.20.2"
- "@esbuild/linux-riscv64" "0.20.2"
- "@esbuild/linux-s390x" "0.20.2"
- "@esbuild/linux-x64" "0.20.2"
- "@esbuild/netbsd-x64" "0.20.2"
- "@esbuild/openbsd-x64" "0.20.2"
- "@esbuild/sunos-x64" "0.20.2"
- "@esbuild/win32-arm64" "0.20.2"
- "@esbuild/win32-ia32" "0.20.2"
- "@esbuild/win32-x64" "0.20.2"
-
-escalade@^3.1.1:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27"
- integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==
+ "@esbuild/aix-ppc64" "0.25.11"
+ "@esbuild/android-arm" "0.25.11"
+ "@esbuild/android-arm64" "0.25.11"
+ "@esbuild/android-x64" "0.25.11"
+ "@esbuild/darwin-arm64" "0.25.11"
+ "@esbuild/darwin-x64" "0.25.11"
+ "@esbuild/freebsd-arm64" "0.25.11"
+ "@esbuild/freebsd-x64" "0.25.11"
+ "@esbuild/linux-arm" "0.25.11"
+ "@esbuild/linux-arm64" "0.25.11"
+ "@esbuild/linux-ia32" "0.25.11"
+ "@esbuild/linux-loong64" "0.25.11"
+ "@esbuild/linux-mips64el" "0.25.11"
+ "@esbuild/linux-ppc64" "0.25.11"
+ "@esbuild/linux-riscv64" "0.25.11"
+ "@esbuild/linux-s390x" "0.25.11"
+ "@esbuild/linux-x64" "0.25.11"
+ "@esbuild/netbsd-arm64" "0.25.11"
+ "@esbuild/netbsd-x64" "0.25.11"
+ "@esbuild/openbsd-arm64" "0.25.11"
+ "@esbuild/openbsd-x64" "0.25.11"
+ "@esbuild/openharmony-arm64" "0.25.11"
+ "@esbuild/sunos-x64" "0.25.11"
+ "@esbuild/win32-arm64" "0.25.11"
+ "@esbuild/win32-ia32" "0.25.11"
+ "@esbuild/win32-x64" "0.25.11"
+
+escalade@^3.1.1, escalade@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5"
+ integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==
-escape-html@^1.0.3, escape-html@~1.0.3:
+escape-html@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
@@ -3582,7 +4328,221 @@ escape-string-regexp@^5.0.0:
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8"
integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==
-estree-walker@2.0.2, estree-walker@^2.0.1, estree-walker@^2.0.2:
+eslint-config-flat-gitignore@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/eslint-config-flat-gitignore/-/eslint-config-flat-gitignore-2.1.0.tgz#8b93caa703977f04dee11e4c3c8303432462921c"
+ integrity sha512-cJzNJ7L+psWp5mXM7jBX+fjHtBvvh06RBlcweMhKD8jWqQw0G78hOW5tpVALGHGFPsBV+ot2H+pdDGJy6CV8pA==
+ dependencies:
+ "@eslint/compat" "^1.2.5"
+
+eslint-flat-config-utils@^2.1.1:
+ version "2.1.4"
+ resolved "https://registry.yarnpkg.com/eslint-flat-config-utils/-/eslint-flat-config-utils-2.1.4.tgz#eb675d35fee4a46513dc3fb4835981f4aac20460"
+ integrity sha512-bEnmU5gqzS+4O+id9vrbP43vByjF+8KOs+QuuV4OlqAuXmnRW2zfI/Rza1fQvdihQ5h4DUo0NqFAiViD4mSrzQ==
+ dependencies:
+ pathe "^2.0.3"
+
+eslint-import-context@^0.1.9:
+ version "0.1.9"
+ resolved "https://registry.yarnpkg.com/eslint-import-context/-/eslint-import-context-0.1.9.tgz#967b0b2f0a90ef4b689125e088f790f0b7756dbe"
+ integrity sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg==
+ dependencies:
+ get-tsconfig "^4.10.1"
+ stable-hash-x "^0.2.0"
+
+eslint-merge-processors@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/eslint-merge-processors/-/eslint-merge-processors-2.0.0.tgz#f1e02bd863962fab7fd038c293979283e61b473c"
+ integrity sha512-sUuhSf3IrJdGooquEUB5TNpGNpBoQccbnaLHsb1XkBLUPPqCNivCpY05ZcpCOiV9uHwO2yxXEWVczVclzMxYlA==
+
+eslint-plugin-import-lite@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-import-lite/-/eslint-plugin-import-lite-0.3.0.tgz#78fb6df41ed6e4ddfa40706ebe7a35563d4173d0"
+ integrity sha512-dkNBAL6jcoCsXZsQ/Tt2yXmMDoNt5NaBh/U7yvccjiK8cai6Ay+MK77bMykmqQA2bTF6lngaLCDij6MTO3KkvA==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.7.0"
+ "@typescript-eslint/types" "^8.34.0"
+
+eslint-plugin-import-x@^4.16.1:
+ version "4.16.1"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-import-x/-/eslint-plugin-import-x-4.16.1.tgz#a96ee1ad5ba6816f9a5573a9617935011a24c4df"
+ integrity sha512-vPZZsiOKaBAIATpFE2uMI4w5IRwdv/FpQ+qZZMR4E+PeOcM4OeoEbqxRMnywdxP19TyB/3h6QBB0EWon7letSQ==
+ dependencies:
+ "@typescript-eslint/types" "^8.35.0"
+ comment-parser "^1.4.1"
+ debug "^4.4.1"
+ eslint-import-context "^0.1.9"
+ is-glob "^4.0.3"
+ minimatch "^9.0.3 || ^10.0.1"
+ semver "^7.7.2"
+ stable-hash-x "^0.2.0"
+ unrs-resolver "^1.9.2"
+
+eslint-plugin-jsdoc@^54.1.0:
+ version "54.7.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.7.0.tgz#256a7ffc07f96c939a17e8bc0484b11ae0ccba75"
+ integrity sha512-u5Na4he2+6kY1rWqxzbQaAwJL3/tDCuT5ElDRc5UJ9stOeQeQ5L1JJ1kRRu7ldYMlOHMCJLsY8Mg/Tu3ExdZiQ==
+ dependencies:
+ "@es-joy/jsdoccomment" "~0.56.0"
+ are-docs-informative "^0.0.2"
+ comment-parser "1.4.1"
+ debug "^4.4.1"
+ escape-string-regexp "^4.0.0"
+ espree "^10.4.0"
+ esquery "^1.6.0"
+ parse-imports-exports "^0.2.4"
+ semver "^7.7.2"
+ spdx-expression-parse "^4.0.0"
+
+eslint-plugin-regexp@^2.10.0:
+ version "2.10.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-regexp/-/eslint-plugin-regexp-2.10.0.tgz#a4014bc576d3fc5fa157f67c28dd93d55d2497c9"
+ integrity sha512-ovzQT8ESVn5oOe5a7gIDPD5v9bCSjIFJu57sVPDqgPRXicQzOnYfFN21WoQBQF18vrhT5o7UMKFwJQVVjyJ0ng==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.2.0"
+ "@eslint-community/regexpp" "^4.11.0"
+ comment-parser "^1.4.0"
+ jsdoc-type-pratt-parser "^4.0.0"
+ refa "^0.12.1"
+ regexp-ast-analysis "^0.7.1"
+ scslre "^0.3.0"
+
+eslint-plugin-unicorn@^60.0.0:
+ version "60.0.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-60.0.0.tgz#68f712bcb17e94bd176cce7312647ba1d1409c3c"
+ integrity sha512-QUzTefvP8stfSXsqKQ+vBQSEsXIlAiCduS/V1Em+FKgL9c21U/IIm20/e3MFy1jyCf14tHAhqC1sX8OTy6VUCg==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.27.1"
+ "@eslint-community/eslint-utils" "^4.7.0"
+ "@eslint/plugin-kit" "^0.3.3"
+ change-case "^5.4.4"
+ ci-info "^4.3.0"
+ clean-regexp "^1.0.0"
+ core-js-compat "^3.44.0"
+ esquery "^1.6.0"
+ find-up-simple "^1.0.1"
+ globals "^16.3.0"
+ indent-string "^5.0.0"
+ is-builtin-module "^5.0.0"
+ jsesc "^3.1.0"
+ pluralize "^8.0.0"
+ regexp-tree "^0.1.27"
+ regjsparser "^0.12.0"
+ semver "^7.7.2"
+ strip-indent "^4.0.0"
+
+eslint-plugin-vue@^10.4.0:
+ version "10.5.1"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-10.5.1.tgz#b172bab0b78100484e21726af138debb998a369f"
+ integrity sha512-SbR9ZBUFKgvWAbq3RrdCtWaW0IKm6wwUiApxf3BVTNfqUIo4IQQmreMg2iHFJJ6C/0wss3LXURBJ1OwS/MhFcQ==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.4.0"
+ natural-compare "^1.4.0"
+ nth-check "^2.1.1"
+ postcss-selector-parser "^6.0.15"
+ semver "^7.6.3"
+ xml-name-validator "^4.0.0"
+
+eslint-processor-vue-blocks@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/eslint-processor-vue-blocks/-/eslint-processor-vue-blocks-2.0.0.tgz#b06a2e2bdefda75792e9fc9f00a9de305e657472"
+ integrity sha512-u4W0CJwGoWY3bjXAuFpc/b6eK3NQEI8MoeW7ritKj3G3z/WtHrKjkqf+wk8mPEy5rlMGS+k6AZYOw2XBoN/02Q==
+
+eslint-scope@^8.2.0, eslint-scope@^8.4.0:
+ version "8.4.0"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.4.0.tgz#88e646a207fad61436ffa39eb505147200655c82"
+ integrity sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==
+ dependencies:
+ esrecurse "^4.3.0"
+ estraverse "^5.2.0"
+
+eslint-typegen@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/eslint-typegen/-/eslint-typegen-2.3.0.tgz#abc45b3d34bab723a0b8af5384aeacc5b92ec1c9"
+ integrity sha512-azYgAvhlz1AyTpeLfVSKcrNJInuIsRrcUrOcHmEl8T9oMKesePVUPrF8gRgE6azV8CAlFzxJDTyaXAAbA/BYiA==
+ dependencies:
+ json-schema-to-typescript-lite "^15.0.0"
+ ohash "^2.0.11"
+
+eslint-visitor-keys@^3.4.3:
+ version "3.4.3"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
+ integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
+
+eslint-visitor-keys@^4.2.0, eslint-visitor-keys@^4.2.1:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz#4cfea60fe7dd0ad8e816e1ed026c1d5251b512c1"
+ integrity sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==
+
+eslint@^9.37.0:
+ version "9.38.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.38.0.tgz#3957d2af804e5cf6cc503c618f60acc71acb2e7e"
+ integrity sha512-t5aPOpmtJcZcz5UJyY2GbvpDlsK5E8JqRqoKtfiKE3cNh437KIqfJr3A3AKf5k64NPx6d0G3dno6XDY05PqPtw==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.8.0"
+ "@eslint-community/regexpp" "^4.12.1"
+ "@eslint/config-array" "^0.21.1"
+ "@eslint/config-helpers" "^0.4.1"
+ "@eslint/core" "^0.16.0"
+ "@eslint/eslintrc" "^3.3.1"
+ "@eslint/js" "9.38.0"
+ "@eslint/plugin-kit" "^0.4.0"
+ "@humanfs/node" "^0.16.6"
+ "@humanwhocodes/module-importer" "^1.0.1"
+ "@humanwhocodes/retry" "^0.4.2"
+ "@types/estree" "^1.0.6"
+ ajv "^6.12.4"
+ chalk "^4.0.0"
+ cross-spawn "^7.0.6"
+ debug "^4.3.2"
+ escape-string-regexp "^4.0.0"
+ eslint-scope "^8.4.0"
+ eslint-visitor-keys "^4.2.1"
+ espree "^10.4.0"
+ esquery "^1.5.0"
+ esutils "^2.0.2"
+ fast-deep-equal "^3.1.3"
+ file-entry-cache "^8.0.0"
+ find-up "^5.0.0"
+ glob-parent "^6.0.2"
+ ignore "^5.2.0"
+ imurmurhash "^0.1.4"
+ is-glob "^4.0.0"
+ json-stable-stringify-without-jsonify "^1.0.1"
+ lodash.merge "^4.6.2"
+ minimatch "^3.1.2"
+ natural-compare "^1.4.0"
+ optionator "^0.9.3"
+
+espree@^10.0.1, espree@^10.3.0, espree@^10.4.0:
+ version "10.4.0"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-10.4.0.tgz#d54f4949d4629005a1fa168d937c3ff1f7e2a837"
+ integrity sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==
+ dependencies:
+ acorn "^8.15.0"
+ acorn-jsx "^5.3.2"
+ eslint-visitor-keys "^4.2.1"
+
+esquery@^1.5.0, esquery@^1.6.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7"
+ integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==
+ dependencies:
+ estraverse "^5.1.0"
+
+esrecurse@^4.3.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
+ integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
+ dependencies:
+ estraverse "^5.2.0"
+
+estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
+ integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
+
+estree-walker@2.0.2, estree-walker@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
@@ -3594,63 +4554,37 @@ estree-walker@^3.0.3:
dependencies:
"@types/estree" "^1.0.0"
-etag@^1.8.1, etag@~1.8.1:
+esutils@^2.0.2:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
+ integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
+
+etag@^1.8.1:
version "1.8.1"
resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==
-event-stream@=3.3.4:
- version "3.3.4"
- resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571"
- integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==
- dependencies:
- duplexer "~0.1.1"
- from "~0"
- map-stream "~0.1.0"
- pause-stream "0.0.11"
- split "0.3"
- stream-combiner "~0.0.4"
- through "~2.3.1"
-
event-target-shim@^5.0.0:
version "5.0.1"
resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789"
integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==
-events@^3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
- integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
-
-execa@^5.1.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
- integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
- dependencies:
- cross-spawn "^7.0.3"
- get-stream "^6.0.0"
- human-signals "^2.1.0"
- is-stream "^2.0.0"
- merge-stream "^2.0.0"
- npm-run-path "^4.0.1"
- onetime "^5.1.2"
- signal-exit "^3.0.3"
- strip-final-newline "^2.0.0"
-
-execa@^7.2.0:
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-7.2.0.tgz#657e75ba984f42a70f38928cedc87d6f2d4fe4e9"
- integrity sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==
- dependencies:
- cross-spawn "^7.0.3"
- get-stream "^6.0.1"
- human-signals "^4.3.0"
- is-stream "^3.0.0"
- merge-stream "^2.0.0"
- npm-run-path "^5.1.0"
- onetime "^6.0.0"
- signal-exit "^3.0.7"
- strip-final-newline "^3.0.0"
+events-universal@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/events-universal/-/events-universal-1.0.1.tgz#b56a84fd611b6610e0a2d0f09f80fdf931e2dfe6"
+ integrity sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==
+ dependencies:
+ bare-events "^2.7.0"
+
+events@^3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
+ integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
+
+eventsource-parser@^3.0.5:
+ version "3.0.6"
+ resolved "https://registry.yarnpkg.com/eventsource-parser/-/eventsource-parser-3.0.6.tgz#292e165e34cacbc936c3c92719ef326d4aeb4e90"
+ integrity sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==
execa@^8.0.1:
version "8.0.1"
@@ -3667,102 +4601,130 @@ execa@^8.0.1:
signal-exit "^4.1.0"
strip-final-newline "^3.0.0"
-exponential-backoff@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6"
- integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==
+execa@^9.6.0:
+ version "9.6.0"
+ resolved "https://registry.yarnpkg.com/execa/-/execa-9.6.0.tgz#38665530e54e2e018384108322f37f35ae74f3bc"
+ integrity sha512-jpWzZ1ZhwUmeWRhS7Qv3mhpOhLfwI+uAX4e5fOcXqwMR7EcJ0pj2kV1CVzHVMX/LphnKWD3LObjZCoJ71lKpHw==
+ dependencies:
+ "@sindresorhus/merge-streams" "^4.0.0"
+ cross-spawn "^7.0.6"
+ figures "^6.1.0"
+ get-stream "^9.0.0"
+ human-signals "^8.0.1"
+ is-plain-obj "^4.1.0"
+ is-stream "^4.0.1"
+ npm-run-path "^6.0.0"
+ pretty-ms "^9.2.0"
+ signal-exit "^4.1.0"
+ strip-final-newline "^4.0.0"
+ yoctocolors "^2.1.1"
+
+expand-template@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c"
+ integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==
+
+exsolve@^1.0.5, exsolve@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/exsolve/-/exsolve-1.0.7.tgz#3b74e4c7ca5c5f9a19c3626ca857309fa99f9e9e"
+ integrity sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==
-extend@^3.0.0, extend@~3.0.2:
+extend@^3.0.0:
version "3.0.2"
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
-external-editor@^3.0.3:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
- integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==
- dependencies:
- chardet "^0.7.0"
- iconv-lite "^0.4.24"
- tmp "^0.0.33"
-
-externality@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/externality/-/externality-1.0.2.tgz#a027f8cfd995c42fd35a8d794cfc224d4a5840c0"
- integrity sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==
- dependencies:
- enhanced-resolve "^5.14.1"
- mlly "^1.3.0"
- pathe "^1.1.1"
- ufo "^1.1.2"
-
-extsprintf@1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
- integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==
-
-extsprintf@^1.2.0:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07"
- integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==
-
-fast-deep-equal@^3.1.1:
+fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
version "3.1.3"
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
-fast-fifo@^1.1.0, fast-fifo@^1.2.0:
+fast-fifo@^1.2.0, fast-fifo@^1.3.2:
version "1.3.2"
resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c"
integrity sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==
-fast-glob@^3.2.7, fast-glob@^3.3.0, fast-glob@^3.3.1, fast-glob@^3.3.2:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129"
- integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
+fast-glob@^3.3.2, fast-glob@^3.3.3:
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz#d06d585ce8dba90a16b0505c543c3ccfb3aeb818"
+ integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==
dependencies:
"@nodelib/fs.stat" "^2.0.2"
"@nodelib/fs.walk" "^1.2.3"
glob-parent "^5.1.2"
merge2 "^1.3.0"
- micromatch "^4.0.4"
+ micromatch "^4.0.8"
fast-json-stable-stringify@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
-fastq@^1.6.0:
- version "1.17.1"
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47"
- integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==
+fast-levenshtein@^2.0.6:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
+ integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
+
+fast-npm-meta@^0.4.6:
+ version "0.4.7"
+ resolved "https://registry.yarnpkg.com/fast-npm-meta/-/fast-npm-meta-0.4.7.tgz#c5f3d60cac2b0f1d186a8dd252ae85dddd60e5d8"
+ integrity sha512-aZU3i3eRcSb2NCq8i6N6IlyiTyF6vqAqzBGl2NBF6ngNx/GIqfYbkLDIKZ4z4P0o/RmtsFnVqHwdrSm13o4tnQ==
+
+fast-xml-parser@^5.2.5:
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-5.3.0.tgz#ae388d5a0f6ed31c8ce9e413c1ac89c8e57e7b07"
+ integrity sha512-gkWGshjYcQCF+6qtlrqBqELqNqnt4CxruY6UVAWWnqb3DQ6qaNFEIKqzYep1XzHLM/QtrHVCxyPOtTk4LTQ7Aw==
+ dependencies:
+ strnum "^2.1.0"
+
+fastq@^1.15.0, fastq@^1.6.0:
+ version "1.19.1"
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.19.1.tgz#d50eaba803c8846a883c16492821ebcd2cda55f5"
+ integrity sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==
dependencies:
reusify "^1.0.4"
+fdir@^6.2.0, fdir@^6.5.0:
+ version "6.5.0"
+ resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz#ed2ab967a331ade62f18d077dae192684d50d350"
+ integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==
+
fflate@^0.7.3:
version "0.7.4"
resolved "https://registry.yarnpkg.com/fflate/-/fflate-0.7.4.tgz#61587e5d958fdabb5a9368a302c25363f4f69f50"
integrity sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==
-figures@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
- integrity sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==
+figures@^6.1.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/figures/-/figures-6.1.0.tgz#935479f51865fa7479f6fa94fc6fc7ac14e62c4a"
+ integrity sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==
dependencies:
- escape-string-regexp "^1.0.5"
+ is-unicode-supported "^2.0.0"
+
+file-entry-cache@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f"
+ integrity sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==
+ dependencies:
+ flat-cache "^4.0.0"
file-uri-to-path@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
-fill-range@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
- integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
+fill-range@^7.1.1:
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
+ integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
dependencies:
to-regex-range "^5.0.1"
+find-up-simple@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/find-up-simple/-/find-up-simple-1.0.1.tgz#18fb90ad49e45252c4d7fca56baade04fa3fca1e"
+ integrity sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==
+
find-up@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
@@ -3771,141 +4733,108 @@ find-up@^5.0.0:
locate-path "^6.0.0"
path-exists "^4.0.0"
+find-up@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-7.0.0.tgz#e8dec1455f74f78d888ad65bf7ca13dd2b4e66fb"
+ integrity sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==
+ dependencies:
+ locate-path "^7.2.0"
+ path-exists "^5.0.0"
+ unicorn-magic "^0.1.0"
+
+flat-cache@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-4.0.1.tgz#0ece39fcb14ee012f4b0410bd33dd9c1f011127c"
+ integrity sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==
+ dependencies:
+ flatted "^3.2.9"
+ keyv "^4.5.4"
+
flat@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/flat/-/flat-6.0.1.tgz#09070cf918293b401577f20843edeadf4d3e8755"
integrity sha512-/3FfIa8mbrg3xE7+wAhWeV+bd7L2Mof+xtZb5dRDKZ+wDvYJK4WDYeIOuOhre5Yv5aQObZrlbRmk3RTSiuQBtw==
-flatted@^3.2.9, flatted@^3.3.1:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a"
- integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==
+flatted@^3.2.9:
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.3.tgz#67c8fad95454a7c7abebf74bb78ee74a44023358"
+ integrity sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==
-focus-trap@^7.5.4:
- version "7.5.4"
- resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.5.4.tgz#6c4e342fe1dae6add9c2aa332a6e7a0bbd495ba2"
- integrity sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==
- dependencies:
- tabbable "^6.2.0"
+fontaine@^0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/fontaine/-/fontaine-0.6.0.tgz#ce90d22119935f841390b5d8d9795d9dd0e749bf"
+ integrity sha512-cfKqzB62GmztJhwJ0YXtzNsmpqKAcFzTqsakJ//5COTzbou90LU7So18U+4D8z+lDXr4uztaAUZBonSoPDcj1w==
+ dependencies:
+ "@capsizecss/metrics" "^3.5.0"
+ "@capsizecss/unpack" "^2.4.0"
+ css-tree "^3.1.0"
+ magic-regexp "^0.10.0"
+ magic-string "^0.30.17"
+ pathe "^2.0.3"
+ ufo "^1.6.1"
+ unplugin "^2.3.2"
+
+fontkit@^2.0.2:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/fontkit/-/fontkit-2.0.4.tgz#4765d664c68b49b5d6feb6bd1051ee49d8ec5ab0"
+ integrity sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==
+ dependencies:
+ "@swc/helpers" "^0.5.12"
+ brotli "^1.3.2"
+ clone "^2.1.2"
+ dfa "^1.2.0"
+ fast-deep-equal "^3.1.3"
+ restructure "^3.0.0"
+ tiny-inflate "^1.0.3"
+ unicode-properties "^1.4.0"
+ unicode-trie "^2.0.0"
foreground-child@^3.1.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d"
- integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz#32e8e9ed1b68a3497befb9ac2b6adf92a638576f"
+ integrity sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==
dependencies:
- cross-spawn "^7.0.0"
+ cross-spawn "^7.0.6"
signal-exit "^4.0.1"
-forever-agent@~0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
- integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==
-
-form-data@~2.3.2:
- version "2.3.3"
- resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
- integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
- dependencies:
- asynckit "^0.4.0"
- combined-stream "^1.0.6"
- mime-types "^2.1.12"
-
fraction.js@^4.3.7:
version "4.3.7"
resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7"
integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==
-fresh@0.5.2, fresh@~0.5.2:
- version "0.5.2"
- resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
- integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==
-
-from@~0:
- version "0.1.7"
- resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe"
- integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==
-
-fs-extra@^11.1.0, fs-extra@^11.1.1, fs-extra@^11.2.0:
- version "11.2.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b"
- integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==
- dependencies:
- graceful-fs "^4.2.0"
- jsonfile "^6.0.1"
- universalify "^2.0.0"
-
-fs-extra@^8.0.1:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
- integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
- dependencies:
- graceful-fs "^4.2.0"
- jsonfile "^4.0.0"
- universalify "^0.1.0"
-
-fs-extra@^9.0.1:
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d"
- integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==
- dependencies:
- at-least-node "^1.0.0"
- graceful-fs "^4.2.0"
- jsonfile "^6.0.1"
- universalify "^2.0.0"
-
-fs-minipass@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
- integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
+framer-motion@12.23.12:
+ version "12.23.12"
+ resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-12.23.12.tgz#80cf6fd7c111073a0c558e336c85ca36cca80d3d"
+ integrity sha512-6e78rdVtnBvlEVgu6eFEAgG9v3wLnYEboM8I5O5EXvfKC8gxGQB8wXJdhkMy10iVcn05jl6CNw7/HTsTCfwcWg==
dependencies:
- minipass "^3.0.0"
+ motion-dom "^12.23.12"
+ motion-utils "^12.23.6"
+ tslib "^2.4.0"
-fs-minipass@^3.0.0:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54"
- integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==
- dependencies:
- minipass "^7.0.3"
+fresh@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/fresh/-/fresh-2.0.0.tgz#8dd7df6a1b3a1b3a5cf186c05a5dd267622635a4"
+ integrity sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==
-fs.realpath@^1.0.0:
+fs-constants@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
- integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
+ resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad"
+ integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==
fsevents@~2.3.2, fsevents@~2.3.3:
version "2.3.3"
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
-fstream@>=1.0.12:
- version "1.0.12"
- resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045"
- integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==
- dependencies:
- graceful-fs "^4.1.2"
- inherits "~2.0.0"
- mkdirp ">=0.5 0"
- rimraf "2"
-
function-bind@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
-gauge@^3.0.0:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395"
- integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==
- dependencies:
- aproba "^1.0.3 || ^2.0.0"
- color-support "^1.1.2"
- console-control-strings "^1.0.0"
- has-unicode "^2.0.1"
- object-assign "^4.1.1"
- signal-exit "^3.0.0"
- string-width "^4.2.3"
- strip-ansi "^6.0.1"
- wide-align "^1.1.2"
+fuse.js@^7.1.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-7.1.0.tgz#306228b4befeee11e05b027087c2744158527d09"
+ integrity sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==
gensync@^1.0.0-beta.2:
version "1.0.0-beta.2"
@@ -3917,61 +4846,62 @@ get-caller-file@^2.0.5:
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
-get-port-please@^3.1.2:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/get-port-please/-/get-port-please-3.1.2.tgz#502795e56217128e4183025c89a48c71652f4e49"
- integrity sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==
-
-get-stream@^6.0.0, get-stream@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
- integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
+get-port-please@^3.1.2, get-port-please@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/get-port-please/-/get-port-please-3.2.0.tgz#0ce3cee194c448ac640ec39dc357a500f5d7d2bb"
+ integrity sha512-I9QVvBw5U/hw3RmWpYKRumUeaDgxTPd401x364rLmWBJcOQ753eov1eTgzDqRG9bqFIfDc7gfzcQEWrUri3o1A==
get-stream@^8.0.1:
version "8.0.1"
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2"
integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==
-getpass@^0.1.1:
- version "0.1.7"
- resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
- integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==
+get-stream@^9.0.0:
+ version "9.0.1"
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-9.0.1.tgz#95157d21df8eb90d1647102b63039b1df60ebd27"
+ integrity sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==
dependencies:
- assert-plus "^1.0.0"
+ "@sec-ant/readable-stream" "^0.4.1"
+ is-stream "^4.0.1"
-giget@^1.2.1:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/giget/-/giget-1.2.3.tgz#ef6845d1140e89adad595f7f3bb60aa31c672cb6"
- integrity sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==
+get-tsconfig@^4.10.1:
+ version "4.13.0"
+ resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.13.0.tgz#fcdd991e6d22ab9a600f00e91c318707a5d9a0d7"
+ integrity sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==
dependencies:
- citty "^0.1.6"
- consola "^3.2.3"
- defu "^6.1.4"
- node-fetch-native "^1.6.3"
- nypm "^0.3.8"
- ohash "^1.1.3"
- pathe "^1.1.2"
- tar "^6.2.0"
+ resolve-pkg-maps "^1.0.0"
-git-config-path@^2.0.0:
+giget@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/git-config-path/-/git-config-path-2.0.0.tgz#62633d61af63af4405a5024efd325762f58a181b"
- integrity sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==
+ resolved "https://registry.yarnpkg.com/giget/-/giget-2.0.0.tgz#395fc934a43f9a7a29a29d55b99f23e30c14f195"
+ integrity sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==
+ dependencies:
+ citty "^0.1.6"
+ consola "^3.4.0"
+ defu "^6.1.4"
+ node-fetch-native "^1.6.6"
+ nypm "^0.6.0"
+ pathe "^2.0.3"
-git-up@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/git-up/-/git-up-7.0.0.tgz#bace30786e36f56ea341b6f69adfd83286337467"
- integrity sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==
+git-up@^8.1.0:
+ version "8.1.1"
+ resolved "https://registry.yarnpkg.com/git-up/-/git-up-8.1.1.tgz#06262adadb89a4a614d2922d803a0eda054be8c5"
+ integrity sha512-FDenSF3fVqBYSaJoYy1KSc2wosx0gCvKP+c+PRBht7cAaiCeQlBtfBDX9vgnNOHmdePlSFITVcn4pFfcgNvx3g==
dependencies:
is-ssh "^1.4.0"
- parse-url "^8.1.0"
+ parse-url "^9.2.0"
-git-url-parse@^14.0.0:
- version "14.0.0"
- resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-14.0.0.tgz#18ce834726d5fbca0c25a4555101aa277017418f"
- integrity sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==
+git-url-parse@^16.0.1, git-url-parse@^16.1.0:
+ version "16.1.0"
+ resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-16.1.0.tgz#3bb6f378a2ba2903c4d8b1cdec004aa85a7ab66f"
+ integrity sha512-cPLz4HuK86wClEW7iDdeAKcCVlWXmrLpb2L+G9goW0Z1dtpNS6BXXSOckUTlJT/LDQViE1QZKstNORzHsLnobw==
dependencies:
- git-up "^7.0.0"
+ git-up "^8.1.0"
+
+github-from-package@0.0.0:
+ version "0.0.0"
+ resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce"
+ integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==
github-slugger@^2.0.0:
version "2.0.0"
@@ -3992,39 +4922,17 @@ glob-parent@^6.0.2:
dependencies:
is-glob "^4.0.3"
-glob@^10.0.0, glob@^10.2.2, glob@^10.3.10:
- version "10.3.12"
- resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.12.tgz#3a65c363c2e9998d220338e88a5f6ac97302960b"
- integrity sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==
+glob@^10.0.0, glob@^10.4.5:
+ version "10.4.5"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956"
+ integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==
dependencies:
foreground-child "^3.1.0"
- jackspeak "^2.3.6"
- minimatch "^9.0.1"
- minipass "^7.0.4"
- path-scurry "^1.10.2"
-
-glob@^7.1.3, glob@^7.2.0:
- version "7.2.3"
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
- integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
- dependencies:
- fs.realpath "^1.0.0"
- inflight "^1.0.4"
- inherits "2"
- minimatch "^3.1.1"
- once "^1.3.0"
- path-is-absolute "^1.0.0"
-
-glob@^8.0.3:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e"
- integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==
- dependencies:
- fs.realpath "^1.0.0"
- inflight "^1.0.4"
- inherits "2"
- minimatch "^5.0.1"
- once "^1.3.0"
+ jackspeak "^3.1.2"
+ minimatch "^9.0.4"
+ minipass "^7.1.2"
+ package-json-from-dist "^1.0.0"
+ path-scurry "^1.11.1"
global-directory@^4.0.1:
version "4.0.1"
@@ -4033,45 +4941,42 @@ global-directory@^4.0.1:
dependencies:
ini "4.1.1"
-globals@^11.1.0:
- version "11.12.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
- integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-
-globby@^13.2.2:
- version "13.2.2"
- resolved "https://registry.yarnpkg.com/globby/-/globby-13.2.2.tgz#63b90b1bf68619c2135475cbd4e71e66aa090592"
- integrity sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==
- dependencies:
- dir-glob "^3.0.1"
- fast-glob "^3.3.0"
- ignore "^5.2.4"
- merge2 "^1.4.1"
- slash "^4.0.0"
-
-globby@^14.0.1:
- version "14.0.1"
- resolved "https://registry.yarnpkg.com/globby/-/globby-14.0.1.tgz#a1b44841aa7f4c6d8af2bc39951109d77301959b"
- integrity sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==
- dependencies:
- "@sindresorhus/merge-streams" "^2.1.0"
- fast-glob "^3.3.2"
- ignore "^5.2.4"
- path-type "^5.0.0"
+globals@^14.0.0:
+ version "14.0.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-14.0.0.tgz#898d7413c29babcf6bafe56fcadded858ada724e"
+ integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==
+
+globals@^15.15.0:
+ version "15.15.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-15.15.0.tgz#7c4761299d41c32b075715a4ce1ede7897ff72a8"
+ integrity sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==
+
+globals@^16.3.0:
+ version "16.4.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-16.4.0.tgz#574bc7e72993d40cf27cf6c241f324ee77808e51"
+ integrity sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==
+
+globby@^15.0.0:
+ version "15.0.0"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-15.0.0.tgz#5dece8d6c38b34f21f710056bbc4103acec125f9"
+ integrity sha512-oB4vkQGqlMl682wL1IlWd02tXCbquGWM4voPEI85QmNKCaw8zGTm1f1rubFgkg3Eli2PtKlFgrnmUqasbQWlkw==
+ dependencies:
+ "@sindresorhus/merge-streams" "^4.0.0"
+ fast-glob "^3.3.3"
+ ignore "^7.0.5"
+ path-type "^6.0.0"
slash "^5.1.0"
- unicorn-magic "^0.1.0"
+ unicorn-magic "^0.3.0"
-graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9:
+graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
version "4.2.11"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
-gzip-size@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz#065367fd50c239c0671cbcbad5be3e2eeb10e462"
- integrity sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==
- dependencies:
- duplexer "^0.1.2"
+graphemer@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
+ integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
gzip-size@^7.0.0:
version "7.0.0"
@@ -4080,88 +4985,80 @@ gzip-size@^7.0.0:
dependencies:
duplexer "^0.1.2"
-h3@^1.10.2, h3@^1.11.1:
- version "1.11.1"
- resolved "https://registry.yarnpkg.com/h3/-/h3-1.11.1.tgz#e9414ae6f2a076a345ea07256b320edb29bab9f7"
- integrity sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A==
+h3-compression@^0.3.2:
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/h3-compression/-/h3-compression-0.3.2.tgz#2d5e803a0a51fabf32deb34fa82e108577f6922b"
+ integrity sha512-B+yCKyDRnO0BXSfjAP4tCXJgJwmnKp3GyH5Yh66mY9KuOCrrGQSPk/gBFG2TgH7OyB/6mvqNZ1X0XNVuy0qRsw==
+
+h3@^1.10.0, h3@^1.12.0, h3@^1.15.3, h3@^1.15.4:
+ version "1.15.4"
+ resolved "https://registry.yarnpkg.com/h3/-/h3-1.15.4.tgz#022ab3563bbaf2108c25375c40460f3e54a5fe02"
+ integrity sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==
dependencies:
- cookie-es "^1.0.0"
- crossws "^0.2.2"
+ cookie-es "^1.2.2"
+ crossws "^0.3.5"
defu "^6.1.4"
- destr "^2.0.3"
- iron-webcrypto "^1.0.0"
- ohash "^1.1.3"
- radix3 "^1.1.0"
- ufo "^1.4.0"
+ destr "^2.0.5"
+ iron-webcrypto "^1.2.1"
+ node-mock-http "^1.0.2"
+ radix3 "^1.1.2"
+ ufo "^1.6.1"
uncrypto "^0.1.3"
- unenv "^1.9.0"
-
-har-schema@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
- integrity sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==
-
-har-validator@~5.1.3:
- version "5.1.5"
- resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd"
- integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==
- dependencies:
- ajv "^6.12.3"
- har-schema "^2.0.0"
-
-has-flag@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
- integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
has-flag@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
-has-symbols@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
- integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
-
-has-tostringtag@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc"
- integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==
- dependencies:
- has-symbols "^1.0.3"
-
-has-unicode@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
- integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==
-
-hash-sum@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a"
- integrity sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==
-
-hasown@^2.0.0:
+hasown@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003"
integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==
dependencies:
function-bind "^1.1.2"
+hast-util-embedded@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/hast-util-embedded/-/hast-util-embedded-3.0.0.tgz#be4477780fbbe079cdba22982e357a0de4ba853e"
+ integrity sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-is-element "^3.0.0"
+
+hast-util-format@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/hast-util-format/-/hast-util-format-1.1.0.tgz#373e77382e07deb04f6676f1b4437e7d8549d985"
+ integrity sha512-yY1UDz6bC9rDvCWHpx12aIBGRG7krurX0p0Fm6pT547LwDIZZiNr8a+IHDogorAdreULSEzP82Nlv5SZkHZcjA==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-embedded "^3.0.0"
+ hast-util-minify-whitespace "^1.0.0"
+ hast-util-phrasing "^3.0.0"
+ hast-util-whitespace "^3.0.0"
+ html-whitespace-sensitive-tag-names "^3.0.0"
+ unist-util-visit-parents "^6.0.0"
+
hast-util-from-parse5@^8.0.0:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-8.0.1.tgz#654a5676a41211e14ee80d1b1758c399a0327651"
- integrity sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==
+ version "8.0.3"
+ resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz#830a35022fff28c3fea3697a98c2f4cc6b835a2e"
+ integrity sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==
dependencies:
"@types/hast" "^3.0.0"
"@types/unist" "^3.0.0"
devlop "^1.0.0"
- hastscript "^8.0.0"
- property-information "^6.0.0"
+ hastscript "^9.0.0"
+ property-information "^7.0.0"
vfile "^6.0.0"
vfile-location "^5.0.0"
web-namespaces "^2.0.0"
+hast-util-has-property@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/hast-util-has-property/-/hast-util-has-property-3.0.0.tgz#4e595e3cddb8ce530ea92f6fc4111a818d8e7f93"
+ integrity sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==
+ dependencies:
+ "@types/hast" "^3.0.0"
+
hast-util-heading-rank@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/hast-util-heading-rank/-/hast-util-heading-rank-3.0.0.tgz#2d5c6f2807a7af5c45f74e623498dd6054d2aba8"
@@ -4169,6 +5066,13 @@ hast-util-heading-rank@^3.0.0:
dependencies:
"@types/hast" "^3.0.0"
+hast-util-is-body-ok-link@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/hast-util-is-body-ok-link/-/hast-util-is-body-ok-link-3.0.1.tgz#ef63cb2f14f04ecf775139cd92bda5026380d8b4"
+ integrity sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==
+ dependencies:
+ "@types/hast" "^3.0.0"
+
hast-util-is-element@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz#6e31a6532c217e5b533848c7e52c9d9369ca0932"
@@ -4176,6 +5080,17 @@ hast-util-is-element@^3.0.0:
dependencies:
"@types/hast" "^3.0.0"
+hast-util-minify-whitespace@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/hast-util-minify-whitespace/-/hast-util-minify-whitespace-1.0.1.tgz#7588fd1a53f48f1d30406b81959dffc3650daf55"
+ integrity sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-embedded "^3.0.0"
+ hast-util-is-element "^3.0.0"
+ hast-util-whitespace "^3.0.0"
+ unist-util-is "^6.0.0"
+
hast-util-parse-selector@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz#352879fa86e25616036037dd8931fb5f34cb4a27"
@@ -4183,10 +5098,21 @@ hast-util-parse-selector@^4.0.0:
dependencies:
"@types/hast" "^3.0.0"
+hast-util-phrasing@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/hast-util-phrasing/-/hast-util-phrasing-3.0.1.tgz#fa284c0cd4a82a0dd6020de8300a7b1ebffa1690"
+ integrity sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-embedded "^3.0.0"
+ hast-util-has-property "^3.0.0"
+ hast-util-is-body-ok-link "^3.0.0"
+ hast-util-is-element "^3.0.0"
+
hast-util-raw@^9.0.0:
- version "9.0.2"
- resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-9.0.2.tgz#39b4a4886bd9f0a5dd42e86d02c966c2c152884c"
- integrity sha512-PldBy71wO9Uq1kyaMch9AHIghtQvIwxBUkv823pKmkTM3oV1JxtsTNYdevMxvUHqcnOAuO65JKU2+0NOxc2ksA==
+ version "9.1.0"
+ resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-9.1.0.tgz#79b66b26f6f68fb50dfb4716b2cdca90d92adf2e"
+ integrity sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==
dependencies:
"@types/hast" "^3.0.0"
"@types/unist" "^3.0.0"
@@ -4202,6 +5128,43 @@ hast-util-raw@^9.0.0:
web-namespaces "^2.0.0"
zwitch "^2.0.0"
+hast-util-to-html@^9.0.0, hast-util-to-html@^9.0.5:
+ version "9.0.5"
+ resolved "https://registry.yarnpkg.com/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz#ccc673a55bb8e85775b08ac28380f72d47167005"
+ integrity sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@types/unist" "^3.0.0"
+ ccount "^2.0.0"
+ comma-separated-tokens "^2.0.0"
+ hast-util-whitespace "^3.0.0"
+ html-void-elements "^3.0.0"
+ mdast-util-to-hast "^13.0.0"
+ property-information "^7.0.0"
+ space-separated-tokens "^2.0.0"
+ stringify-entities "^4.0.0"
+ zwitch "^2.0.4"
+
+hast-util-to-mdast@^10.0.0, hast-util-to-mdast@^10.1.2:
+ version "10.1.2"
+ resolved "https://registry.yarnpkg.com/hast-util-to-mdast/-/hast-util-to-mdast-10.1.2.tgz#bc76f7f5f72f2cde4d6a66ad4cd0aba82bb79909"
+ integrity sha512-FiCRI7NmOvM4y+f5w32jPRzcxDIz+PUqDwEqn1A+1q2cdp3B8Gx7aVrXORdOKjMNDQsD1ogOr896+0jJHW1EFQ==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@types/mdast" "^4.0.0"
+ "@ungap/structured-clone" "^1.0.0"
+ hast-util-phrasing "^3.0.0"
+ hast-util-to-html "^9.0.0"
+ hast-util-to-text "^4.0.0"
+ hast-util-whitespace "^3.0.0"
+ mdast-util-phrasing "^4.0.0"
+ mdast-util-to-hast "^13.0.0"
+ mdast-util-to-string "^4.0.0"
+ rehype-minify-whitespace "^6.0.0"
+ trim-trailing-lines "^2.0.0"
+ unist-util-position "^5.0.0"
+ unist-util-visit "^5.0.0"
+
hast-util-to-parse5@^8.0.0:
version "8.0.0"
resolved "https://registry.yarnpkg.com/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz#477cd42d278d4f036bc2ea58586130f6f39ee6ed"
@@ -4215,22 +5178,39 @@ hast-util-to-parse5@^8.0.0:
web-namespaces "^2.0.0"
zwitch "^2.0.0"
-hast-util-to-string@^3.0.0:
+hast-util-to-string@^3.0.0, hast-util-to-string@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/hast-util-to-string/-/hast-util-to-string-3.0.1.tgz#a4f15e682849326dd211c97129c94b0c3e76527c"
+ integrity sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==
+ dependencies:
+ "@types/hast" "^3.0.0"
+
+hast-util-to-text@^4.0.0:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz#57b676931e71bf9cb852453678495b3080bfae3e"
+ integrity sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@types/unist" "^3.0.0"
+ hast-util-is-element "^3.0.0"
+ unist-util-find-after "^5.0.0"
+
+hast-util-whitespace@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/hast-util-to-string/-/hast-util-to-string-3.0.0.tgz#2a131948b4b1b26461a2c8ac876e2c88d02946bd"
- integrity sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==
+ resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz#7778ed9d3c92dd9e8c5c8f648a49c21fc51cb621"
+ integrity sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==
dependencies:
"@types/hast" "^3.0.0"
-hastscript@^8.0.0:
- version "8.0.0"
- resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-8.0.0.tgz#4ef795ec8dee867101b9f23cc830d4baf4fd781a"
- integrity sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==
+hastscript@^9.0.0:
+ version "9.0.1"
+ resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-9.0.1.tgz#dbc84bef6051d40084342c229c451cd9dc567dff"
+ integrity sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==
dependencies:
"@types/hast" "^3.0.0"
comma-separated-tokens "^2.0.0"
hast-util-parse-selector "^4.0.0"
- property-information "^6.0.0"
+ property-information "^7.0.0"
space-separated-tokens "^2.0.0"
hex-rgb@^4.1.0:
@@ -4238,42 +5218,27 @@ hex-rgb@^4.1.0:
resolved "https://registry.yarnpkg.com/hex-rgb/-/hex-rgb-4.3.0.tgz#af5e974e83bb2fefe44d55182b004ec818c07776"
integrity sha512-Ox1pJVrDCyGHMG9CFg1tmrRUMRPRsAWYc/PinY0XzJU4K7y7vjNoLKIQ7BR5UJMCxNN8EM1MNDmHWA/B3aZUuw==
+hey-listen@^1.0.8:
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/hey-listen/-/hey-listen-1.0.8.tgz#8e59561ff724908de1aa924ed6ecc84a56a9aa68"
+ integrity sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==
+
hookable@^5.5.3:
version "5.5.3"
resolved "https://registry.yarnpkg.com/hookable/-/hookable-5.5.3.tgz#6cfc358984a1ef991e2518cb9ed4a778bbd3215d"
integrity sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==
-hosted-git-info@^7.0.0:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-7.0.1.tgz#9985fcb2700467fecf7f33a4d4874e30680b5322"
- integrity sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==
- dependencies:
- lru-cache "^10.0.1"
-
-html-tags@^3.3.1:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.3.1.tgz#a04026a18c882e4bba8a01a3d39cfe465d40b5ce"
- integrity sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==
-
html-void-elements@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-3.0.0.tgz#fc9dbd84af9e747249034d4d62602def6517f1d7"
integrity sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==
-http-assert@^1.3.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/http-assert/-/http-assert-1.5.0.tgz#c389ccd87ac16ed2dfa6246fd73b926aa00e6b8f"
- integrity sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==
- dependencies:
- deep-equal "~1.0.1"
- http-errors "~1.8.0"
-
-http-cache-semantics@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a"
- integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==
+html-whitespace-sensitive-tag-names@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/html-whitespace-sensitive-tag-names/-/html-whitespace-sensitive-tag-names-3.0.1.tgz#c35edd28205f3bf8c1fd03274608d60b923de5b2"
+ integrity sha512-q+310vW8zmymYHALr1da4HyXUQ0zgiIwIicEfotYPWGN0OJVEN/58IJ3A4GBYcEq3LGAZqKb+ugvP0GNB9CEAA==
-http-errors@2.0.0, http-errors@^2.0.0:
+http-errors@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3"
integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==
@@ -4284,191 +5249,109 @@ http-errors@2.0.0, http-errors@^2.0.0:
statuses "2.0.1"
toidentifier "1.0.1"
-http-errors@^1.6.3, http-errors@^1.7.3, http-errors@~1.8.0:
- version "1.8.1"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.1.tgz#7c3f28577cbc8a207388455dbd62295ed07bd68c"
- integrity sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==
- dependencies:
- depd "~1.1.2"
- inherits "2.0.4"
- setprototypeof "1.2.0"
- statuses ">= 1.5.0 < 2"
- toidentifier "1.0.1"
-
-http-errors@~1.6.2:
- version "1.6.3"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"
- integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==
- dependencies:
- depd "~1.1.2"
- inherits "2.0.3"
- setprototypeof "1.1.0"
- statuses ">= 1.4.0 < 2"
-
-http-proxy-agent@^7.0.0:
- version "7.0.2"
- resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e"
- integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==
- dependencies:
- agent-base "^7.1.0"
- debug "^4.3.4"
-
http-shutdown@^1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/http-shutdown/-/http-shutdown-1.2.2.tgz#41bc78fc767637c4c95179bc492f312c0ae64c5f"
integrity sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==
-http-signature@~1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
- integrity sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==
- dependencies:
- assert-plus "^1.0.0"
- jsprim "^1.2.2"
- sshpk "^1.7.0"
-
-https-proxy-agent@^5.0.0:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6"
- integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==
- dependencies:
- agent-base "6"
- debug "4"
-
-https-proxy-agent@^7.0.1:
- version "7.0.4"
- resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz#8e97b841a029ad8ddc8731f26595bad868cb4168"
- integrity sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==
+https-proxy-agent@^7.0.5:
+ version "7.0.6"
+ resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9"
+ integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==
dependencies:
- agent-base "^7.0.2"
+ agent-base "^7.1.2"
debug "4"
-httpxy@^0.1.5:
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/httpxy/-/httpxy-0.1.5.tgz#fd2401206e0b5d919aeda25e967ece0f1a6c8569"
- integrity sha512-hqLDO+rfststuyEUTWObQK6zHEEmZ/kaIP2/zclGGZn6X8h/ESTWg+WKecQ/e5k4nPswjzZD+q2VqZIbr15CoQ==
-
-human-signals@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
- integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
-
-human-signals@^4.3.0:
- version "4.3.1"
- resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2"
- integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==
+httpxy@^0.1.7:
+ version "0.1.7"
+ resolved "https://registry.yarnpkg.com/httpxy/-/httpxy-0.1.7.tgz#02d02e57eda10e8b5c0e3f9f10860e3d7a5991a4"
+ integrity sha512-pXNx8gnANKAndgga5ahefxc++tJvNL87CXoRwxn1cJE2ZkWEojF3tNfQIEhZX/vfpt+wzeAzpUI4qkediX1MLQ==
human-signals@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28"
integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==
-iconv-lite@^0.4.24:
- version "0.4.24"
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
- integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
- dependencies:
- safer-buffer ">= 2.1.2 < 3"
-
-iconv-lite@^0.6.2:
- version "0.6.3"
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
- integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
- dependencies:
- safer-buffer ">= 2.1.2 < 3.0.0"
+human-signals@^8.0.1:
+ version "8.0.1"
+ resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-8.0.1.tgz#f08bb593b6d1db353933d06156cedec90abe51fb"
+ integrity sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==
-ieee754@^1.2.1:
+ieee754@^1.1.13, ieee754@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
-ignore-walk@^6.0.4:
- version "6.0.4"
- resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.4.tgz#89950be94b4f522225eb63a13c56badb639190e9"
- integrity sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==
- dependencies:
- minimatch "^9.0.0"
+ignore@^5.2.0:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5"
+ integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==
-ignore@^5.2.4, ignore@^5.3.1:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef"
- integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
+ignore@^7.0.0, ignore@^7.0.5:
+ version "7.0.5"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz#4cb5f6cd7d4c7ab0365738c7aea888baa6d7efd9"
+ integrity sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==
-image-meta@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/image-meta/-/image-meta-0.2.0.tgz#ea28d05d52f5ad35f75b14f46278a44d626f48bc"
- integrity sha512-ZBGjl0ZMEMeOC3Ns0wUF/5UdUmr3qQhBSCniT0LxOgGGIRHiNFOkMtIHB7EOznRU47V2AxPgiVP+s+0/UCU0Hg==
+image-meta@^0.2.0, image-meta@^0.2.1:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/image-meta/-/image-meta-0.2.2.tgz#a88dbdf1983d7c23a80c3e71d3b8acdb5379f5e0"
+ integrity sha512-3MOLanc3sb3LNGWQl1RlQlNWURE5g32aUphrDyFeCsxBTk08iE3VNe4CwsUZ0Qs1X+EfX0+r29Sxdpza4B+yRA==
+
+image-size@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/image-size/-/image-size-2.0.2.tgz#84a7b43704db5736f364bf0d1b029821299b4bdc"
+ integrity sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==
+
+import-fresh@^3.2.1:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.1.tgz#9cecb56503c0ada1f2741dbbd6546e4b13b57ccf"
+ integrity sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==
+ dependencies:
+ parent-module "^1.0.0"
+ resolve-from "^4.0.0"
-image-size@^1.0.2:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.1.1.tgz#ddd67d4dc340e52ac29ce5f546a09f4e29e840ac"
- integrity sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==
+impound@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/impound/-/impound-1.0.0.tgz#42a011b33ddcce550c801210eb36b24a691ac941"
+ integrity sha512-8lAJ+1Arw2sMaZ9HE2ZmL5zOcMnt18s6+7Xqgq2aUVy4P1nlzAyPtzCDxsk51KVFwHEEdc6OWvUyqwHwhRYaug==
dependencies:
- queue "6.0.2"
+ exsolve "^1.0.5"
+ mocked-exports "^0.1.1"
+ pathe "^2.0.3"
+ unplugin "^2.3.2"
+ unplugin-utils "^0.2.4"
imurmurhash@^0.1.4:
version "0.1.4"
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
-indent-string@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
- integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
-
-inflight@^1.0.4:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
- integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
- dependencies:
- once "^1.3.0"
- wrappy "1"
+indent-string@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-5.0.0.tgz#4fd2980fccaf8622d14c64d694f4cf33c81951a5"
+ integrity sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==
-inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3:
+inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3:
version "2.0.4"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-inherits@2.0.3:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
- integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==
-
ini@4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.1.tgz#d95b3d843b1e906e56d6747d5447904ff50ce7a1"
integrity sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==
-ini@^1.3.5:
+ini@~1.3.0:
version "1.3.8"
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
-inquirer@^6.2.2:
- version "6.5.2"
- resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca"
- integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==
- dependencies:
- ansi-escapes "^3.2.0"
- chalk "^2.4.2"
- cli-cursor "^2.1.0"
- cli-width "^2.0.0"
- external-editor "^3.0.3"
- figures "^2.0.0"
- lodash "^4.17.12"
- mute-stream "0.0.7"
- run-async "^2.2.0"
- rxjs "^6.4.0"
- string-width "^2.1.0"
- strip-ansi "^5.1.0"
- through "^2.3.6"
-
-ioredis@^5.3.2:
- version "5.4.1"
- resolved "https://registry.yarnpkg.com/ioredis/-/ioredis-5.4.1.tgz#1c56b70b759f01465913887375ed809134296f40"
- integrity sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==
- dependencies:
- "@ioredis/commands" "^1.1.1"
+ioredis@^5.8.1:
+ version "5.8.2"
+ resolved "https://registry.yarnpkg.com/ioredis/-/ioredis-5.8.2.tgz#c7a228a26cf36f17a5a8011148836877780e2e14"
+ integrity sha512-C6uC+kleiIMmjViJINWk80sOQw5lEzse1ZmvD+S/s8p8CWapftSaC+kocGTx6xrbrJ4WmYQGC08ffHLr6ToR6Q==
+ dependencies:
+ "@ioredis/commands" "1.4.0"
cluster-key-slot "^1.1.0"
debug "^4.3.4"
denque "^2.1.0"
@@ -4478,18 +5361,32 @@ ioredis@^5.3.2:
redis-parser "^3.0.0"
standard-as-callback "^2.1.0"
-ip-address@^9.0.5:
- version "9.0.5"
- resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a"
- integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==
+ipx@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/ipx/-/ipx-2.1.1.tgz#3c309a3ae364f2c56ddb152cb6d14ba7c5767567"
+ integrity sha512-XuM9FEGOT+/45mfAWZ5ykwkZ/oE7vWpd1iWjRffMWlwAYIRzb/xD6wZhQ4BzmPMX6Ov5dqK0wUyD0OEN9oWT6g==
dependencies:
- jsbn "1.1.0"
- sprintf-js "^1.1.3"
+ "@fastify/accept-negotiator" "^1.1.0"
+ citty "^0.1.5"
+ consola "^3.2.3"
+ defu "^6.1.4"
+ destr "^2.0.2"
+ etag "^1.8.1"
+ h3 "^1.10.0"
+ image-meta "^0.2.0"
+ listhen "^1.5.6"
+ ofetch "^1.3.3"
+ pathe "^1.1.2"
+ sharp "^0.32.6"
+ svgo "^3.2.0"
+ ufo "^1.3.2"
+ unstorage "^1.10.1"
+ xss "^1.0.14"
-iron-webcrypto@^1.0.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/iron-webcrypto/-/iron-webcrypto-1.1.1.tgz#245c9d467075ee810343ddfa53dd4909616aaf33"
- integrity sha512-5xGwQUWHQSy039rFr+5q/zOmj7GP0Ypzvo34Ep+61bPIhaLduEDp/PvLGlU3awD2mzWUR0weN2vJ1mILydFPEg==
+iron-webcrypto@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz#aa60ff2aa10550630f4c0b11fd2442becdb35a6f"
+ integrity sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==
is-absolute-url@^4.0.0:
version "4.0.1"
@@ -4509,6 +5406,11 @@ is-alphanumerical@^2.0.0:
is-alphabetical "^2.0.0"
is-decimal "^2.0.0"
+is-arrayish@^0.3.1:
+ version "0.3.4"
+ resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.4.tgz#1ee5553818511915685d33bb13d31bf854e5059d"
+ integrity sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==
+
is-binary-path@~2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
@@ -4516,19 +5418,19 @@ is-binary-path@~2.1.0:
dependencies:
binary-extensions "^2.0.0"
-is-builtin-module@^3.2.1:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz#f03271717d8654cfcaf07ab0463faa3571581169"
- integrity sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==
+is-builtin-module@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-5.0.0.tgz#19df4b9c7451149b68176b0e06d18646db6308dd"
+ integrity sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA==
dependencies:
- builtin-modules "^3.3.0"
+ builtin-modules "^5.0.0"
-is-core-module@^2.13.0, is-core-module@^2.8.1:
- version "2.13.1"
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384"
- integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==
+is-core-module@^2.16.1:
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4"
+ integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==
dependencies:
- hasown "^2.0.0"
+ hasown "^2.0.2"
is-decimal@^2.0.0:
version "2.0.1"
@@ -4545,34 +5447,17 @@ is-docker@^3.0.0:
resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-3.0.0.tgz#90093aa3106277d8a77a5910dbae71747e15a200"
integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==
-is-domain@0.0.1:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/is-domain/-/is-domain-0.0.1.tgz#7ffb288d5cced6b07c4f2df91c9be9153511348e"
- integrity sha512-hLm9uZUDm/sk0+xZgxyJluSf4B37sg3ivzv4ndTxNCAMnWFUUsHh1u4eh2maEcEvQl3mc65a9pJ/KURGItbLIg==
-
is-extglob@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
-is-fullwidth-code-point@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
- integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==
-
is-fullwidth-code-point@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
-is-generator-function@^1.0.7:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72"
- integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==
- dependencies:
- has-tostringtag "^1.0.0"
-
-is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
+is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
version "4.0.3"
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
@@ -4599,11 +5484,6 @@ is-installed-globally@^1.0.0:
global-directory "^4.0.1"
is-path-inside "^4.0.0"
-is-lambda@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5"
- integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==
-
is-module@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
@@ -4619,16 +5499,11 @@ is-path-inside@^4.0.0:
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-4.0.0.tgz#805aeb62c47c1b12fc3fd13bfb3ed1e7430071db"
integrity sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==
-is-plain-obj@^4.0.0:
+is-plain-obj@^4.0.0, is-plain-obj@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0"
integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==
-is-primitive@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-3.0.1.tgz#98c4db1abff185485a657fc2905052b940524d05"
- integrity sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==
-
is-reference@1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7"
@@ -4637,13 +5512,13 @@ is-reference@1.2.1:
"@types/estree" "*"
is-ssh@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.0.tgz#4f8220601d2839d8fa624b3106f8e8884f01b8b2"
- integrity sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.1.tgz#76de1cdbe8f92a8b905d1a172b6bc09704c20396"
+ integrity sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==
dependencies:
protocols "^2.0.1"
-is-stream@^2.0.0, is-stream@^2.0.1:
+is-stream@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
@@ -4653,12 +5528,27 @@ is-stream@^3.0.0:
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac"
integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==
-is-typedarray@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
- integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==
+is-stream@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-4.0.1.tgz#375cf891e16d2e4baec250b85926cffc14720d9b"
+ integrity sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==
+
+is-unicode-supported@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz#09f0ab0de6d3744d48d265ebb98f65d11f2a9b3a"
+ integrity sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==
+
+is-wayland@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/is-wayland/-/is-wayland-0.1.0.tgz#ed966c54a608af5ba3c407922589859a0d424fe5"
+ integrity sha512-QkbMsWkIfkrzOPxenwye0h56iAXirZYHG9eHVPb22fO9y+wPbaX/CHacOWBa/I++4ohTcByimhM1/nyCsH8KNA==
-is-wsl@^2.1.1, is-wsl@^2.2.0:
+is-what@^5.2.0:
+ version "5.5.0"
+ resolved "https://registry.yarnpkg.com/is-what/-/is-what-5.5.0.tgz#a3031815757cfe1f03fed990bf6355a2d3f628c4"
+ integrity sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==
+
+is-wsl@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
@@ -4694,34 +5584,29 @@ isexe@^3.1.1:
resolved "https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz#4a407e2bd78ddfb14bea0c27c6f7072dde775f0d"
integrity sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==
-isstream@~0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
- integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==
-
-jackspeak@^2.3.6:
- version "2.3.6"
- resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8"
- integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==
+jackspeak@^3.1.2:
+ version "3.4.3"
+ resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a"
+ integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==
dependencies:
"@isaacs/cliui" "^8.0.2"
optionalDependencies:
"@pkgjs/parseargs" "^0.11.0"
-jiti@^1.21.0:
- version "1.21.0"
- resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d"
- integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==
+jiti@^2.1.2, jiti@^2.4.2, jiti@^2.5.1, jiti@^2.6.0, jiti@^2.6.1:
+ version "2.6.1"
+ resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.6.1.tgz#178ef2fc9a1a594248c20627cd820187a4d78d92"
+ integrity sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==
js-tokens@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
-js-tokens@^9.0.0:
- version "9.0.0"
- resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-9.0.0.tgz#0f893996d6f3ed46df7f0a3b12a03f5fd84223c1"
- integrity sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==
+js-tokens@^9.0.1:
+ version "9.0.1"
+ resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-9.0.1.tgz#2ec43964658435296f6761b34e10671c2d9527f4"
+ integrity sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==
js-yaml@^4.1.0:
version "4.1.0"
@@ -4730,179 +5615,118 @@ js-yaml@^4.1.0:
dependencies:
argparse "^2.0.1"
-jsbn@1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040"
- integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==
+jsdoc-type-pratt-parser@^4.0.0:
+ version "4.8.0"
+ resolved "https://registry.yarnpkg.com/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.8.0.tgz#f2a649747278cbf9f2957d15cf772a841b16f003"
+ integrity sha512-iZ8Bdb84lWRuGHamRXFyML07r21pcwBrLkHEuHgEY5UbCouBwv7ECknDRKzsQIXMiqpPymqtIf8TC/shYKB5rw==
-jsbn@~0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
- integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==
+jsdoc-type-pratt-parser@~5.1.0:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-5.1.1.tgz#2657625f071daa822e51b6aa6fdc8eb667c1ff64"
+ integrity sha512-DYYlVP1fe4QBMh2xTIs20/YeTz2GYVbWAEZweHSZD+qQ/Cx2d5RShuhhsdk64eTjNq0FeVnteP/qVOgaywSRbg==
+
+jsesc@^3.0.2, jsesc@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d"
+ integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==
-jsesc@^2.5.1:
- version "2.5.2"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
- integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
+jsesc@~3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e"
+ integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==
-json-parse-even-better-errors@^3.0.0:
+json-buffer@3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz#02bb29fb5da90b5444581749c22cedd3597c6cb0"
- integrity sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==
+ resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13"
+ integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
+
+json-schema-to-typescript-lite@^15.0.0:
+ version "15.0.0"
+ resolved "https://registry.yarnpkg.com/json-schema-to-typescript-lite/-/json-schema-to-typescript-lite-15.0.0.tgz#94b0bdc301f479fc7eca6d02ddaca16394e9356d"
+ integrity sha512-5mMORSQm9oTLyjM4mWnyNBi2T042Fhg1/0gCIB6X8U/LVpM2A+Nmj2yEyArqVouDmFThDxpEXcnTgSrjkGJRFA==
+ dependencies:
+ "@apidevtools/json-schema-ref-parser" "^14.1.1"
+ "@types/json-schema" "^7.0.15"
+
+json-schema-to-typescript@^15.0.4:
+ version "15.0.4"
+ resolved "https://registry.yarnpkg.com/json-schema-to-typescript/-/json-schema-to-typescript-15.0.4.tgz#a530c7f17312503b262ae12233749732171840f3"
+ integrity sha512-Su9oK8DR4xCmDsLlyvadkXzX6+GGXJpbhwoLtOGArAG61dvbW4YQmSEno2y66ahpIdmLMg6YUf/QHLgiwvkrHQ==
+ dependencies:
+ "@apidevtools/json-schema-ref-parser" "^11.5.5"
+ "@types/json-schema" "^7.0.15"
+ "@types/lodash" "^4.17.7"
+ is-glob "^4.0.3"
+ js-yaml "^4.1.0"
+ lodash "^4.17.21"
+ minimist "^1.2.8"
+ prettier "^3.2.5"
+ tinyglobby "^0.2.9"
+
+json-schema-to-zod@^2.6.1:
+ version "2.6.1"
+ resolved "https://registry.yarnpkg.com/json-schema-to-zod/-/json-schema-to-zod-2.6.1.tgz#47ce1c2656e8452f86f06f76c2abf5abcfc64a38"
+ integrity sha512-uiHmWH21h9FjKJkRBntfVGTLpYlCZ1n98D0izIlByqQLqpmkQpNTBtfbdP04Na6+43lgsvrShFh2uWLkQDKJuQ==
json-schema-traverse@^0.4.1:
version "0.4.1"
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
-json-schema@0.4.0:
+json-schema@^0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5"
integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==
-json-stringify-safe@~5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
- integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==
+json-stable-stringify-without-jsonify@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
+ integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
json5@^2.2.3:
version "2.2.3"
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
-jsonfile@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
- integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==
- optionalDependencies:
- graceful-fs "^4.1.6"
-
-jsonfile@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-5.0.0.tgz#e6b718f73da420d612823996fdf14a03f6ff6922"
- integrity sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==
- dependencies:
- universalify "^0.1.2"
- optionalDependencies:
- graceful-fs "^4.1.6"
-
-jsonfile@^6.0.1:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
- integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==
- dependencies:
- universalify "^2.0.0"
- optionalDependencies:
- graceful-fs "^4.1.6"
-
-jsonparse@^1.3.1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
- integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==
-
-jsprim@^1.2.2:
- version "1.4.2"
- resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.2.tgz#712c65533a15c878ba59e9ed5f0e26d5b77c5feb"
- integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==
- dependencies:
- assert-plus "1.0.0"
- extsprintf "1.3.0"
- json-schema "0.4.0"
- verror "1.10.0"
-
-keygrip@~1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/keygrip/-/keygrip-1.1.0.tgz#871b1681d5e159c62a445b0c74b615e0917e7226"
- integrity sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==
+keyv@^4.5.4:
+ version "4.5.4"
+ resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93"
+ integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==
dependencies:
- tsscmp "1.0.6"
+ json-buffer "3.0.1"
kleur@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
+kleur@^4.1.5:
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780"
+ integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==
+
klona@^2.0.6:
version "2.0.6"
resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22"
integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==
-knitwork@^1.0.0, knitwork@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/knitwork/-/knitwork-1.1.0.tgz#d8c9feafadd7ee744ff64340b216a52c7199c417"
- integrity sha512-oHnmiBUVHz1V+URE77PNot2lv3QiYU2zQf1JjOVkMt3YDKGbu8NAFr+c4mcNOhdsGrB/VpVbRwPwhiXrPhxQbw==
-
-koa-compose@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/koa-compose/-/koa-compose-4.1.0.tgz#507306b9371901db41121c812e923d0d67d3e877"
- integrity sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==
-
-koa-convert@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/koa-convert/-/koa-convert-2.0.0.tgz#86a0c44d81d40551bae22fee6709904573eea4f5"
- integrity sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==
- dependencies:
- co "^4.6.0"
- koa-compose "^4.1.0"
-
-koa-send@^5.0.0:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/koa-send/-/koa-send-5.0.1.tgz#39dceebfafb395d0d60beaffba3a70b4f543fe79"
- integrity sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==
- dependencies:
- debug "^4.1.1"
- http-errors "^1.7.3"
- resolve-path "^1.4.0"
-
-koa-static@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/koa-static/-/koa-static-5.0.0.tgz#5e92fc96b537ad5219f425319c95b64772776943"
- integrity sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==
- dependencies:
- debug "^3.1.0"
- koa-send "^5.0.0"
-
-koa@^2.14.2:
- version "2.15.3"
- resolved "https://registry.yarnpkg.com/koa/-/koa-2.15.3.tgz#062809266ee75ce0c75f6510a005b0e38f8c519a"
- integrity sha512-j/8tY9j5t+GVMLeioLaxweJiKUayFhlGqNTzf2ZGwL0ZCQijd2RLHK0SLW5Tsko8YyyqCZC2cojIb0/s62qTAg==
- dependencies:
- accepts "^1.3.5"
- cache-content-type "^1.0.0"
- content-disposition "~0.5.2"
- content-type "^1.0.4"
- cookies "~0.9.0"
- debug "^4.3.2"
- delegates "^1.0.0"
- depd "^2.0.0"
- destroy "^1.0.4"
- encodeurl "^1.0.2"
- escape-html "^1.0.3"
- fresh "~0.5.2"
- http-assert "^1.3.0"
- http-errors "^1.6.3"
- is-generator-function "^1.0.7"
- koa-compose "^4.1.0"
- koa-convert "^2.0.0"
- on-finished "^2.3.0"
- only "~0.0.2"
- parseurl "^1.3.2"
- statuses "^1.5.0"
- type-is "^1.6.16"
- vary "^1.1.2"
+knitwork@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/knitwork/-/knitwork-1.2.0.tgz#3cc92e76249aeb35449cfbed3f31c6df8444db3f"
+ integrity sha512-xYSH7AvuQ6nXkq42x0v5S8/Iry+cfulBz/DJQzhIyESdLD7425jXsPy4vn5cCXU+HhRN2kVw51Vd1K6/By4BQg==
kolorist@^1.8.0:
version "1.8.0"
resolved "https://registry.yarnpkg.com/kolorist/-/kolorist-1.8.0.tgz#edddbbbc7894bc13302cdf740af6374d4a04743c"
integrity sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==
-launch-editor@^2.6.1:
- version "2.6.1"
- resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.1.tgz#f259c9ef95cbc9425620bbbd14b468fcdb4ffe3c"
- integrity sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==
+launch-editor@^2.11.1:
+ version "2.11.1"
+ resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.11.1.tgz#61a0b7314a42fd84a6cbb564573d9e9ffcf3d72b"
+ integrity sha512-SEET7oNfgSaB6Ym0jufAdCeo3meJVeCaaDyzRygy0xsp2BFKCprcfHljTq4QkzTLUxEKkFK6OK4811YM2oSrRg==
dependencies:
- picocolors "^1.0.0"
- shell-quote "^1.8.1"
+ picocolors "^1.1.1"
+ shell-quote "^1.8.3"
lazystream@^1.0.0:
version "1.0.1"
@@ -4911,23 +5735,100 @@ lazystream@^1.0.0:
dependencies:
readable-stream "^2.0.5"
+levn@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
+ integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
+ dependencies:
+ prelude-ls "^1.2.1"
+ type-check "~0.4.0"
+
lighthouse-logger@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/lighthouse-logger/-/lighthouse-logger-2.0.1.tgz#48895f639b61cca89346bb6f47f7403a3895fa02"
- integrity sha512-ioBrW3s2i97noEmnXxmUq7cjIcVRjT5HBpAYy8zE11CxU9HqlWHHeRxfeN1tn8F7OEMVPIC9x1f8t3Z7US9ehQ==
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/lighthouse-logger/-/lighthouse-logger-2.0.2.tgz#c0b39daee22035ce28551f3503c5935d0b5e1bf3"
+ integrity sha512-vWl2+u5jgOQuZR55Z1WM0XDdrJT6mzMP8zHUct7xTlWhuQs+eV0g+QL0RQdFjT54zVmbhLCP8vIVpy1wGn/gCg==
dependencies:
- debug "^2.6.9"
+ debug "^4.4.1"
marky "^1.2.2"
-lilconfig@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52"
- integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==
-
-lilconfig@^3.0.0, lilconfig@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.1.tgz#9d8a246fa753106cfc205fd2d77042faca56e5e3"
- integrity sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==
+lightningcss-android-arm64@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz#6966b7024d39c94994008b548b71ab360eb3a307"
+ integrity sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==
+
+lightningcss-darwin-arm64@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz#a5fa946d27c029e48c7ff929e6e724a7de46eb2c"
+ integrity sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==
+
+lightningcss-darwin-x64@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz#5ce87e9cd7c4f2dcc1b713f5e8ee185c88d9b7cd"
+ integrity sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==
+
+lightningcss-freebsd-x64@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz#6ae1d5e773c97961df5cff57b851807ef33692a5"
+ integrity sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==
+
+lightningcss-linux-arm-gnueabihf@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz#62c489610c0424151a6121fa99d77731536cdaeb"
+ integrity sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==
+
+lightningcss-linux-arm64-gnu@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz#2a3661b56fe95a0cafae90be026fe0590d089298"
+ integrity sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==
+
+lightningcss-linux-arm64-musl@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz#d7ddd6b26959245e026bc1ad9eb6aa983aa90e6b"
+ integrity sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==
+
+lightningcss-linux-x64-gnu@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz#5a89814c8e63213a5965c3d166dff83c36152b1a"
+ integrity sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==
+
+lightningcss-linux-x64-musl@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz#808c2e91ce0bf5d0af0e867c6152e5378c049728"
+ integrity sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==
+
+lightningcss-win32-arm64-msvc@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz#ab4a8a8a2e6a82a4531e8bbb6bf0ff161ee6625a"
+ integrity sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==
+
+lightningcss-win32-x64-msvc@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz#f01f382c8e0a27e1c018b0bee316d210eac43b6e"
+ integrity sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==
+
+lightningcss@1.30.2:
+ version "1.30.2"
+ resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.30.2.tgz#4ade295f25d140f487d37256f4cd40dc607696d0"
+ integrity sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==
+ dependencies:
+ detect-libc "^2.0.3"
+ optionalDependencies:
+ lightningcss-android-arm64 "1.30.2"
+ lightningcss-darwin-arm64 "1.30.2"
+ lightningcss-darwin-x64 "1.30.2"
+ lightningcss-freebsd-x64 "1.30.2"
+ lightningcss-linux-arm-gnueabihf "1.30.2"
+ lightningcss-linux-arm64-gnu "1.30.2"
+ lightningcss-linux-arm64-musl "1.30.2"
+ lightningcss-linux-x64-gnu "1.30.2"
+ lightningcss-linux-x64-musl "1.30.2"
+ lightningcss-win32-arm64-msvc "1.30.2"
+ lightningcss-win32-x64-msvc "1.30.2"
+
+lilconfig@^3.1.3:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.3.tgz#a1bcfd6257f9585bf5ae14ceeebb7b559025e4c4"
+ integrity sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==
linebreak@^1.1.0:
version "1.1.0"
@@ -4937,47 +5838,43 @@ linebreak@^1.1.0:
base64-js "0.0.8"
unicode-trie "^2.0.0"
-lines-and-columns@^1.1.6:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
- integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
-
-listhen@^1.7.2:
- version "1.7.2"
- resolved "https://registry.yarnpkg.com/listhen/-/listhen-1.7.2.tgz#66b81740692269d5d8cafdc475020f2fc51afbae"
- integrity sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==
+listhen@^1.5.6, listhen@^1.9.0:
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/listhen/-/listhen-1.9.0.tgz#59355f7e4fc1eefda6bc494ae7e9ed13aa7658ef"
+ integrity sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==
dependencies:
"@parcel/watcher" "^2.4.1"
"@parcel/watcher-wasm" "^2.4.1"
citty "^0.1.6"
clipboardy "^4.0.0"
consola "^3.2.3"
- crossws "^0.2.0"
+ crossws ">=0.2.0 <0.4.0"
defu "^6.1.4"
get-port-please "^3.1.2"
- h3 "^1.10.2"
+ h3 "^1.12.0"
http-shutdown "^1.2.2"
- jiti "^1.21.0"
- mlly "^1.6.1"
+ jiti "^2.1.2"
+ mlly "^1.7.1"
node-forge "^1.3.1"
pathe "^1.1.2"
std-env "^3.7.0"
- ufo "^1.4.0"
+ ufo "^1.5.4"
untun "^0.1.3"
uqr "^0.1.2"
-local-pkg@^0.4.3:
- version "0.4.3"
- resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.4.3.tgz#0ff361ab3ae7f1c19113d9bb97b98b905dbc4963"
- integrity sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==
+load-tsconfig@^0.2.3:
+ version "0.2.5"
+ resolved "https://registry.yarnpkg.com/load-tsconfig/-/load-tsconfig-0.2.5.tgz#453b8cd8961bfb912dea77eb6c168fe8cca3d3a1"
+ integrity sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==
-local-pkg@^0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.5.0.tgz#093d25a346bae59a99f80e75f6e9d36d7e8c925c"
- integrity sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==
+local-pkg@^1.0.0, local-pkg@^1.1.1, local-pkg@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-1.1.2.tgz#c03d208787126445303f8161619dc701afa4abb5"
+ integrity sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==
dependencies:
- mlly "^1.4.2"
- pkg-types "^1.0.3"
+ mlly "^1.7.4"
+ pkg-types "^2.3.0"
+ quansync "^0.2.11"
locate-path@^6.0.0:
version "6.0.0"
@@ -4986,15 +5883,12 @@ locate-path@^6.0.0:
dependencies:
p-locate "^5.0.0"
-lodash-es@^4.17.21:
- version "4.17.21"
- resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee"
- integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==
-
-lodash.castarray@^4.4.0:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/lodash.castarray/-/lodash.castarray-4.4.0.tgz#c02513515e309daddd4c24c60cfddcf5976d9115"
- integrity sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==
+locate-path@^7.2.0:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a"
+ integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==
+ dependencies:
+ p-locate "^6.0.0"
lodash.defaults@^4.2.0:
version "4.2.0"
@@ -5006,11 +5900,6 @@ lodash.isarguments@^3.1.0:
resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a"
integrity sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==
-lodash.isplainobject@^4.0.6:
- version "4.0.6"
- resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
- integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==
-
lodash.memoize@^4.1.2:
version "4.1.2"
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
@@ -5026,7 +5915,7 @@ lodash.uniq@^4.5.0:
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==
-lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15:
+lodash@^4.17.15, lodash@^4.17.21:
version "4.17.21"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
@@ -5036,10 +5925,10 @@ longest-streak@^3.0.0:
resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.1.0.tgz#62fa67cd958742a1574af9f39866364102d90cd4"
integrity sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==
-lru-cache@^10.0.1, lru-cache@^10.2.0:
- version "10.2.2"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.2.tgz#48206bc114c1252940c41b25b41af5b545aca878"
- integrity sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==
+lru-cache@^10.2.0, lru-cache@^10.4.3:
+ version "10.4.3"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119"
+ integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==
lru-cache@^5.1.1:
version "5.1.1"
@@ -5048,89 +5937,66 @@ lru-cache@^5.1.1:
dependencies:
yallist "^3.0.2"
-lru-cache@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
- integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
+magic-regexp@^0.10.0:
+ version "0.10.0"
+ resolved "https://registry.yarnpkg.com/magic-regexp/-/magic-regexp-0.10.0.tgz#78b4421a50d2b7a67129bf2c424a333927c3a0e5"
+ integrity sha512-Uly1Bu4lO1hwHUW0CQeSWuRtzCMNO00CmXtS8N6fyvB3B979GOEEeAkiTUDsmbYLAbvpUS/Kt5c4ibosAzVyVg==
dependencies:
- yallist "^4.0.0"
-
-magic-string-ast@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/magic-string-ast/-/magic-string-ast-0.3.0.tgz#8fc83ac6d084c5a342645a30354184a6e0ab4382"
- integrity sha512-0shqecEPgdFpnI3AP90epXyxZy9g6CRZ+SZ7BcqFwYmtFEnZ1jpevcV5HoyVnlDS9gCnc1UIg3Rsvp3Ci7r8OA==
+ estree-walker "^3.0.3"
+ magic-string "^0.30.12"
+ mlly "^1.7.2"
+ regexp-tree "^0.1.27"
+ type-level-regexp "~0.1.17"
+ ufo "^1.5.4"
+ unplugin "^2.0.0"
+
+magic-string-ast@^1.0.0:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/magic-string-ast/-/magic-string-ast-1.0.3.tgz#51ef7832fd5c70a0188fb94627caa3b8c74ff9bf"
+ integrity sha512-CvkkH1i81zl7mmb94DsRiFeG9V2fR2JeuK8yDgS8oiZSFa++wWLEgZ5ufEOyLHbvSbD1gTRKv9NdX69Rnvr9JA==
dependencies:
- magic-string "^0.30.2"
+ magic-string "^0.30.19"
-magic-string@^0.30.0, magic-string@^0.30.10, magic-string@^0.30.2, magic-string@^0.30.3, magic-string@^0.30.4, magic-string@^0.30.5, magic-string@^0.30.8, magic-string@^0.30.9:
- version "0.30.10"
- resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.10.tgz#123d9c41a0cb5640c892b041d4cfb3bd0aa4b39e"
- integrity sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==
+magic-string@^0.30.12, magic-string@^0.30.17, magic-string@^0.30.19, magic-string@^0.30.3:
+ version "0.30.19"
+ resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.19.tgz#cebe9f104e565602e5d2098c5f2e79a77cc86da9"
+ integrity sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==
dependencies:
- "@jridgewell/sourcemap-codec" "^1.4.15"
+ "@jridgewell/sourcemap-codec" "^1.5.5"
-magicast@^0.3.4:
- version "0.3.4"
- resolved "https://registry.yarnpkg.com/magicast/-/magicast-0.3.4.tgz#bbda1791d03190a24b00ff3dd18151e7fd381d19"
- integrity sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==
+magicast@^0.3.5:
+ version "0.3.5"
+ resolved "https://registry.yarnpkg.com/magicast/-/magicast-0.3.5.tgz#8301c3c7d66704a0771eb1bad74274f0ec036739"
+ integrity sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==
dependencies:
- "@babel/parser" "^7.24.4"
- "@babel/types" "^7.24.0"
+ "@babel/parser" "^7.25.4"
+ "@babel/types" "^7.25.4"
source-map-js "^1.2.0"
-make-dir@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
- integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
- dependencies:
- semver "^6.0.0"
-
-make-fetch-happen@^13.0.0:
- version "13.0.0"
- resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz#705d6f6cbd7faecb8eac2432f551e49475bfedf0"
- integrity sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==
- dependencies:
- "@npmcli/agent" "^2.0.0"
- cacache "^18.0.0"
- http-cache-semantics "^4.1.1"
- is-lambda "^1.0.1"
- minipass "^7.0.2"
- minipass-fetch "^3.0.0"
- minipass-flush "^1.0.5"
- minipass-pipeline "^1.2.4"
- negotiator "^0.6.3"
- promise-retry "^2.0.1"
- ssri "^10.0.0"
-
-map-stream@~0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194"
- integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==
-
markdown-table@^3.0.0:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-3.0.3.tgz#e6331d30e493127e031dd385488b5bd326e4a6bd"
- integrity sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-3.0.4.tgz#fe44d6d410ff9d6f2ea1797a3f60aa4d2b631c2a"
+ integrity sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==
marky@^1.2.2:
- version "1.2.5"
- resolved "https://registry.yarnpkg.com/marky/-/marky-1.2.5.tgz#55796b688cbd72390d2d399eaaf1832c9413e3c0"
- integrity sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/marky/-/marky-1.3.0.tgz#422b63b0baf65022f02eda61a238eccdbbc14997"
+ integrity sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==
mdast-util-find-and-replace@^3.0.0, mdast-util-find-and-replace@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.1.tgz#a6fc7b62f0994e973490e45262e4bc07607b04e0"
- integrity sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz#70a3174c894e14df722abf43bc250cbae44b11df"
+ integrity sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==
dependencies:
"@types/mdast" "^4.0.0"
escape-string-regexp "^5.0.0"
unist-util-is "^6.0.0"
unist-util-visit-parents "^6.0.0"
-mdast-util-from-markdown@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.0.tgz#52f14815ec291ed061f2922fd14d6689c810cb88"
- integrity sha512-n7MTOr/z+8NAX/wmhhDji8O3bRvPTV/U0oTCaZJkjhPSKTPhS3xufVhKGF8s1pJ7Ox4QgoIU7KHseh09S+9rTA==
+mdast-util-from-markdown@^2.0.0, mdast-util-from-markdown@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz#4850390ca7cf17413a9b9a0fbefcd1bc0eb4160a"
+ integrity sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==
dependencies:
"@types/mdast" "^4.0.0"
"@types/unist" "^3.0.0"
@@ -5146,9 +6012,9 @@ mdast-util-from-markdown@^2.0.0:
unist-util-stringify-position "^4.0.0"
mdast-util-gfm-autolink-literal@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.0.tgz#5baf35407421310a08e68c15e5d8821e8898ba2a"
- integrity sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz#abd557630337bd30a6d5a4bd8252e1c2dc0875d5"
+ integrity sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==
dependencies:
"@types/mdast" "^4.0.0"
ccount "^2.0.0"
@@ -5157,9 +6023,9 @@ mdast-util-gfm-autolink-literal@^2.0.0:
micromark-util-character "^2.0.0"
mdast-util-gfm-footnote@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.0.0.tgz#25a1753c7d16db8bfd53cd84fe50562bd1e6d6a9"
- integrity sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz#7778e9d9ca3df7238cc2bd3fa2b1bf6a65b19403"
+ integrity sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==
dependencies:
"@types/mdast" "^4.0.0"
devlop "^1.1.0"
@@ -5198,9 +6064,9 @@ mdast-util-gfm-task-list-item@^2.0.0:
mdast-util-to-markdown "^2.0.0"
mdast-util-gfm@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/mdast-util-gfm/-/mdast-util-gfm-3.0.0.tgz#3f2aecc879785c3cb6a81ff3a243dc11eca61095"
- integrity sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz#2cdf63b92c2a331406b0fb0db4c077c1b0331751"
+ integrity sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==
dependencies:
mdast-util-from-markdown "^2.0.0"
mdast-util-gfm-autolink-literal "^2.0.0"
@@ -5218,10 +6084,10 @@ mdast-util-phrasing@^4.0.0:
"@types/mdast" "^4.0.0"
unist-util-is "^6.0.0"
-mdast-util-to-hast@^13.0.0, mdast-util-to-hast@^13.1.0:
- version "13.1.0"
- resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-13.1.0.tgz#1ae54d903150a10fe04d59f03b2b95fd210b2124"
- integrity sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==
+mdast-util-to-hast@^13.0.0, mdast-util-to-hast@^13.2.0:
+ version "13.2.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz#5ca58e5b921cc0a3ded1bc02eed79a4fe4fe41f4"
+ integrity sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==
dependencies:
"@types/hast" "^3.0.0"
"@types/mdast" "^4.0.0"
@@ -5233,16 +6099,17 @@ mdast-util-to-hast@^13.0.0, mdast-util-to-hast@^13.1.0:
unist-util-visit "^5.0.0"
vfile "^6.0.0"
-mdast-util-to-markdown@^2.0.0, mdast-util-to-markdown@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.0.tgz#9813f1d6e0cdaac7c244ec8c6dabfdb2102ea2b4"
- integrity sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==
+mdast-util-to-markdown@^2.0.0, mdast-util-to-markdown@^2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz#f910ffe60897f04bb4b7e7ee434486f76288361b"
+ integrity sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==
dependencies:
"@types/mdast" "^4.0.0"
"@types/unist" "^3.0.0"
longest-streak "^3.0.0"
mdast-util-phrasing "^4.0.0"
mdast-util-to-string "^4.0.0"
+ micromark-util-classify-character "^2.0.0"
micromark-util-decode-string "^2.0.0"
unist-util-visit "^5.0.0"
zwitch "^2.0.0"
@@ -5264,35 +6131,25 @@ mdn-data@2.0.30:
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.30.tgz#ce4df6f80af6cfbe218ecd5c552ba13c4dfa08cc"
integrity sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==
-mdurl@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-2.0.0.tgz#80676ec0433025dd3e17ee983d0fe8de5a2237e0"
- integrity sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==
-
-media-typer@0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
- integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==
+mdn-data@2.12.2:
+ version "2.12.2"
+ resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.12.2.tgz#9ae6c41a9e65adf61318b32bff7b64fbfb13f8cf"
+ integrity sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==
merge-stream@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
-merge2@^1.3.0, merge2@^1.4.1:
+merge2@^1.3.0:
version "1.4.1"
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
-methods@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
- integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==
-
-micromark-core-commonmark@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz#9a45510557d068605c6e9a80f282b2bb8581e43d"
- integrity sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==
+micromark-core-commonmark@^2.0.0, micromark-core-commonmark@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz#c691630e485021a68cf28dbc2b2ca27ebf678cd4"
+ integrity sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==
dependencies:
decode-named-character-reference "^1.0.0"
devlop "^1.0.0"
@@ -5312,9 +6169,9 @@ micromark-core-commonmark@^2.0.0:
micromark-util-types "^2.0.0"
micromark-extension-gfm-autolink-literal@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.0.0.tgz#f1e50b42e67d441528f39a67133eddde2bbabfd9"
- integrity sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz#6286aee9686c4462c1e3552a9d505feddceeb935"
+ integrity sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==
dependencies:
micromark-util-character "^2.0.0"
micromark-util-sanitize-uri "^2.0.0"
@@ -5322,9 +6179,9 @@ micromark-extension-gfm-autolink-literal@^2.0.0:
micromark-util-types "^2.0.0"
micromark-extension-gfm-footnote@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.0.0.tgz#91afad310065a94b636ab1e9dab2c60d1aab953c"
- integrity sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz#4dab56d4e398b9853f6fe4efac4fc9361f3e0750"
+ integrity sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==
dependencies:
devlop "^1.0.0"
micromark-core-commonmark "^2.0.0"
@@ -5336,9 +6193,9 @@ micromark-extension-gfm-footnote@^2.0.0:
micromark-util-types "^2.0.0"
micromark-extension-gfm-strikethrough@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.0.0.tgz#6917db8e320da70e39ffbf97abdbff83e6783e61"
- integrity sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz#86106df8b3a692b5f6a92280d3879be6be46d923"
+ integrity sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==
dependencies:
devlop "^1.0.0"
micromark-util-chunked "^2.0.0"
@@ -5348,9 +6205,9 @@ micromark-extension-gfm-strikethrough@^2.0.0:
micromark-util-types "^2.0.0"
micromark-extension-gfm-table@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.0.0.tgz#2cf3fe352d9e089b7ef5fff003bdfe0da29649b7"
- integrity sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw==
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz#fac70bcbf51fe65f5f44033118d39be8a9b5940b"
+ integrity sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==
dependencies:
devlop "^1.0.0"
micromark-factory-space "^2.0.0"
@@ -5366,9 +6223,9 @@ micromark-extension-gfm-tagfilter@^2.0.0:
micromark-util-types "^2.0.0"
micromark-extension-gfm-task-list-item@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.0.1.tgz#ee8b208f1ced1eb9fb11c19a23666e59d86d4838"
- integrity sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz#bcc34d805639829990ec175c3eea12bb5b781f2c"
+ integrity sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==
dependencies:
devlop "^1.0.0"
micromark-factory-space "^2.0.0"
@@ -5391,95 +6248,95 @@ micromark-extension-gfm@^3.0.0:
micromark-util-types "^2.0.0"
micromark-factory-destination@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz#857c94debd2c873cba34e0445ab26b74f6a6ec07"
- integrity sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz#8fef8e0f7081f0474fbdd92deb50c990a0264639"
+ integrity sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==
dependencies:
micromark-util-character "^2.0.0"
micromark-util-symbol "^2.0.0"
micromark-util-types "^2.0.0"
micromark-factory-label@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz#17c5c2e66ce39ad6f4fc4cbf40d972f9096f726a"
- integrity sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz#5267efa97f1e5254efc7f20b459a38cb21058ba1"
+ integrity sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==
dependencies:
devlop "^1.0.0"
micromark-util-character "^2.0.0"
micromark-util-symbol "^2.0.0"
micromark-util-types "^2.0.0"
-micromark-factory-space@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz#5e7afd5929c23b96566d0e1ae018ae4fcf81d030"
- integrity sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==
+micromark-factory-space@^2.0.0, micromark-factory-space@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz#36d0212e962b2b3121f8525fc7a3c7c029f334fc"
+ integrity sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==
dependencies:
micromark-util-character "^2.0.0"
micromark-util-types "^2.0.0"
micromark-factory-title@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz#726140fc77892af524705d689e1cf06c8a83ea95"
- integrity sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz#237e4aa5d58a95863f01032d9ee9b090f1de6e94"
+ integrity sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==
dependencies:
micromark-factory-space "^2.0.0"
micromark-util-character "^2.0.0"
micromark-util-symbol "^2.0.0"
micromark-util-types "^2.0.0"
-micromark-factory-whitespace@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz#9e92eb0f5468083381f923d9653632b3cfb5f763"
- integrity sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==
+micromark-factory-whitespace@^2.0.0, micromark-factory-whitespace@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz#06b26b2983c4d27bfcc657b33e25134d4868b0b1"
+ integrity sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==
dependencies:
micromark-factory-space "^2.0.0"
micromark-util-character "^2.0.0"
micromark-util-symbol "^2.0.0"
micromark-util-types "^2.0.0"
-micromark-util-character@^2.0.0, micromark-util-character@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-2.1.0.tgz#31320ace16b4644316f6bf057531689c71e2aee1"
- integrity sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==
+micromark-util-character@^2.0.0, micromark-util-character@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-2.1.1.tgz#2f987831a40d4c510ac261e89852c4e9703ccda6"
+ integrity sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==
dependencies:
micromark-util-symbol "^2.0.0"
micromark-util-types "^2.0.0"
-micromark-util-chunked@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz#e51f4db85fb203a79dbfef23fd41b2f03dc2ef89"
- integrity sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==
+micromark-util-chunked@^2.0.0, micromark-util-chunked@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz#47fbcd93471a3fccab86cff03847fc3552db1051"
+ integrity sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==
dependencies:
micromark-util-symbol "^2.0.0"
micromark-util-classify-character@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz#8c7537c20d0750b12df31f86e976d1d951165f34"
- integrity sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz#d399faf9c45ca14c8b4be98b1ea481bced87b629"
+ integrity sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==
dependencies:
micromark-util-character "^2.0.0"
micromark-util-symbol "^2.0.0"
micromark-util-types "^2.0.0"
micromark-util-combine-extensions@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz#75d6ab65c58b7403616db8d6b31315013bfb7ee5"
- integrity sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz#2a0f490ab08bff5cc2fd5eec6dd0ca04f89b30a9"
+ integrity sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==
dependencies:
micromark-util-chunked "^2.0.0"
micromark-util-types "^2.0.0"
micromark-util-decode-numeric-character-reference@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz#2698bbb38f2a9ba6310e359f99fcb2b35a0d2bd5"
- integrity sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz#fcf15b660979388e6f118cdb6bf7d79d73d26fe5"
+ integrity sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==
dependencies:
micromark-util-symbol "^2.0.0"
micromark-util-decode-string@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz#7dfa3a63c45aecaa17824e656bcdb01f9737154a"
- integrity sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz#6cb99582e5d271e84efca8e61a807994d7161eb2"
+ integrity sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==
dependencies:
decode-named-character-reference "^1.0.0"
micromark-util-character "^2.0.0"
@@ -5487,42 +6344,42 @@ micromark-util-decode-string@^2.0.0:
micromark-util-symbol "^2.0.0"
micromark-util-encode@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz#0921ac7953dc3f1fd281e3d1932decfdb9382ab1"
- integrity sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz#0d51d1c095551cfaac368326963cf55f15f540b8"
+ integrity sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==
micromark-util-html-tag-name@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz#ae34b01cbe063363847670284c6255bb12138ec4"
- integrity sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz#e40403096481986b41c106627f98f72d4d10b825"
+ integrity sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==
micromark-util-normalize-identifier@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz#91f9a4e65fe66cc80c53b35b0254ad67aa431d8b"
- integrity sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz#c30d77b2e832acf6526f8bf1aa47bc9c9438c16d"
+ integrity sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==
dependencies:
micromark-util-symbol "^2.0.0"
-micromark-util-resolve-all@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz#189656e7e1a53d0c86a38a652b284a252389f364"
- integrity sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==
+micromark-util-resolve-all@^2.0.0, micromark-util-resolve-all@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz#e1a2d62cdd237230a2ae11839027b19381e31e8b"
+ integrity sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==
dependencies:
micromark-util-types "^2.0.0"
-micromark-util-sanitize-uri@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz#ec8fbf0258e9e6d8f13d9e4770f9be64342673de"
- integrity sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==
+micromark-util-sanitize-uri@^2.0.0, micromark-util-sanitize-uri@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz#ab89789b818a58752b73d6b55238621b7faa8fd7"
+ integrity sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==
dependencies:
micromark-util-character "^2.0.0"
micromark-util-encode "^2.0.0"
micromark-util-symbol "^2.0.0"
micromark-util-subtokenize@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz#76129c49ac65da6e479c09d0ec4b5f29ec6eace5"
- integrity sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz#d8ade5ba0f3197a1cf6a2999fbbfe6357a1a19ee"
+ integrity sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==
dependencies:
devlop "^1.0.0"
micromark-util-chunked "^2.0.0"
@@ -5530,19 +6387,19 @@ micromark-util-subtokenize@^2.0.0:
micromark-util-types "^2.0.0"
micromark-util-symbol@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz#12225c8f95edf8b17254e47080ce0862d5db8044"
- integrity sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz#e5da494e8eb2b071a0d08fb34f6cefec6c0a19b8"
+ integrity sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==
-micromark-util-types@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-2.0.0.tgz#63b4b7ffeb35d3ecf50d1ca20e68fc7caa36d95e"
- integrity sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==
+micromark-util-types@^2.0.0, micromark-util-types@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-2.0.2.tgz#f00225f5f5a0ebc3254f96c36b6605c4b393908e"
+ integrity sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==
-micromark@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/micromark/-/micromark-4.0.0.tgz#84746a249ebd904d9658cfabc1e8e5f32cbc6249"
- integrity sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==
+micromark@^4.0.0, micromark@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/micromark/-/micromark-4.0.2.tgz#91395a3e1884a198e62116e33c9c568e39936fdb"
+ integrity sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==
dependencies:
"@types/debug" "^4.0.0"
debug "^4.0.0"
@@ -5562,364 +6419,308 @@ micromark@^4.0.0:
micromark-util-symbol "^2.0.0"
micromark-util-types "^2.0.0"
-micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5:
- version "4.0.5"
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
- integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
+micromatch@^4.0.5, micromatch@^4.0.8:
+ version "4.0.8"
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
+ integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
dependencies:
- braces "^3.0.2"
+ braces "^3.0.3"
picomatch "^2.3.1"
-mime-db@1.52.0:
- version "1.52.0"
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
- integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
+mime-db@^1.54.0:
+ version "1.54.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.54.0.tgz#cddb3ee4f9c64530dff640236661d42cb6a314f5"
+ integrity sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==
-mime-types@^2.1.12, mime-types@^2.1.18, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34:
- version "2.1.35"
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
- integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
+mime-types@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-3.0.1.tgz#b1d94d6997a9b32fd69ebaed0db73de8acb519ce"
+ integrity sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==
dependencies:
- mime-db "1.52.0"
-
-mime@1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
- integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
+ mime-db "^1.54.0"
mime@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7"
integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==
-mime@^4.0.1:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/mime/-/mime-4.0.3.tgz#cd4a1aa052fc980dfc34f111fe1be9e8b878c5d2"
- integrity sha512-KgUb15Oorc0NEKPbvfa0wRU+PItIEZmiv+pyAO2i0oTIVTJhlzMclU7w4RXWQrSOVH5ax/p/CkIO7KI4OyFJTQ==
-
-mimic-fn@^1.0.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
- integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
-
-mimic-fn@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
- integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
+mime@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/mime/-/mime-4.1.0.tgz#ec55df7aa21832a36d44f0bbee5c04639b27802f"
+ integrity sha512-X5ju04+cAzsojXKes0B/S4tcYtFAJ6tTMuSPBEn9CPGlrWr8Fiw7qYeLT0XyH80HSoAoqWCaz+MWKh22P7G1cw==
mimic-fn@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc"
integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==
-minimatch@^3.0.0, minimatch@^3.0.4, minimatch@^3.1.1:
+mimic-response@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9"
+ integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==
+
+minimark@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/minimark/-/minimark-0.2.0.tgz#bb18fb25cfaf1c9cceccf1633c07852c17b427f9"
+ integrity sha512-AmtWU9pO0C2/3AM2pikaVhJ//8E5rOpJ7+ioFQfjIq+wCsBeuZoxPd97hBFZ9qrI7DMHZudwGH3r8A7BMnsIew==
+
+minimatch@^10.0.3, "minimatch@^9.0.3 || ^10.0.1":
+ version "10.0.3"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.3.tgz#cf7a0314a16c4d9ab73a7730a0e8e3c3502d47aa"
+ integrity sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==
+ dependencies:
+ "@isaacs/brace-expansion" "^5.0.0"
+
+minimatch@^3.1.2:
version "3.1.2"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
dependencies:
brace-expansion "^1.1.7"
-minimatch@^5.0.1, minimatch@^5.1.0:
+minimatch@^5.1.0:
version "5.1.6"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
dependencies:
brace-expansion "^2.0.1"
-minimatch@^9.0.0, minimatch@^9.0.1, minimatch@^9.0.3:
- version "9.0.4"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.4.tgz#8e49c731d1749cbec05050ee5145147b32496a51"
- integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==
+minimatch@^9.0.4:
+ version "9.0.5"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5"
+ integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==
dependencies:
brace-expansion "^2.0.1"
-minimist@1.2.3:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.3.tgz#3db5c0765545ab8637be71f333a104a965a9ca3f"
- integrity sha512-+bMdgqjMN/Z77a6NlY/I3U5LlRDbnmaAk6lDveAPKwSpcPM4tKAuYsvYF8xjhOPXhOYGe/73vVLVez5PW+jqhw==
-
-minimist@^1.2.6:
- version "1.2.8"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
- integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
-
-minipass-collect@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863"
- integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==
- dependencies:
- minipass "^7.0.3"
-
-minipass-fetch@^3.0.0:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.4.tgz#4d4d9b9f34053af6c6e597a64be8e66e42bf45b7"
- integrity sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==
- dependencies:
- minipass "^7.0.3"
- minipass-sized "^1.0.3"
- minizlib "^2.1.2"
- optionalDependencies:
- encoding "^0.1.13"
-
-minipass-flush@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
- integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
- dependencies:
- minipass "^3.0.0"
-
-minipass-json-stream@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz#7edbb92588fbfc2ff1db2fc10397acb7b6b44aa7"
- integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==
- dependencies:
- jsonparse "^1.3.1"
- minipass "^3.0.0"
-
-minipass-pipeline@^1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
- integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
- dependencies:
- minipass "^3.0.0"
-
-minipass-sized@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70"
- integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==
- dependencies:
- minipass "^3.0.0"
-
-minipass@^3.0.0:
- version "3.3.6"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a"
- integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==
- dependencies:
- yallist "^4.0.0"
-
-minipass@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d"
- integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==
-
-"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3, minipass@^7.0.4:
- version "7.0.4"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c"
- integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==
+minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.8:
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
+ integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
-minisearch@^6.3.0:
- version "6.3.0"
- resolved "https://registry.yarnpkg.com/minisearch/-/minisearch-6.3.0.tgz#985a2f1ca3c73c2d65af94f0616bfe57164b0b6b"
- integrity sha512-ihFnidEeU8iXzcVHy74dhkxh/dn8Dc08ERl0xwoMMGqp4+LvRSCgicb+zGqWthVokQKvCSxITlh3P08OzdTYCQ==
+"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.4, minipass@^7.1.2:
+ version "7.1.2"
+ resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707"
+ integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==
-minizlib@^2.1.1, minizlib@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
- integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
+minizlib@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz#6ad76c3a8f10227c9b51d1c9ac8e30b27f5a251c"
+ integrity sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==
dependencies:
- minipass "^3.0.0"
- yallist "^4.0.0"
-
-mitt@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/mitt/-/mitt-2.1.0.tgz#f740577c23176c6205b121b2973514eade1b2230"
- integrity sha512-ILj2TpLiysu2wkBbWjAmww7TkZb65aiQO+DkVdUTBpBXq+MHYiETENkKFMtsJZX1Lf4pe4QOrTSjIfUwN5lRdg==
+ minipass "^7.1.2"
mitt@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1"
integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==
-"mkdirp@>=0.5 0", mkdirp@^0.5.6:
- version "0.5.6"
- resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
- integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
+mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3:
+ version "0.5.3"
+ resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113"
+ integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==
+
+mlly@^1.7.1, mlly@^1.7.2, mlly@^1.7.4, mlly@^1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.8.0.tgz#e074612b938af8eba1eaf43299cbc89cb72d824e"
+ integrity sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==
dependencies:
- minimist "^1.2.6"
+ acorn "^8.15.0"
+ pathe "^2.0.3"
+ pkg-types "^1.3.1"
+ ufo "^1.6.1"
-mkdirp@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
- integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
+mocked-exports@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/mocked-exports/-/mocked-exports-0.1.1.tgz#6916efea9a9dd0f4abd6a0a72526f56a76c966ea"
+ integrity sha512-aF7yRQr/Q0O2/4pIXm6PZ5G+jAd7QS4Yu8m+WEeEHGnbo+7mE36CbLSDQiXYV8bVL3NfmdeqPJct0tUlnjVSnA==
-mlly@^1.3.0, mlly@^1.4.2, mlly@^1.6.1:
- version "1.6.1"
- resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.6.1.tgz#0983067dc3366d6314fc5e12712884e6978d028f"
- integrity sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA==
+motion-dom@12.23.12:
+ version "12.23.12"
+ resolved "https://registry.yarnpkg.com/motion-dom/-/motion-dom-12.23.12.tgz#87974046e7e61bc4932f36d35e8eab6bb6f3e434"
+ integrity sha512-RcR4fvMCTESQBD/uKQe49D5RUeDOokkGRmz4ceaJKDBgHYtZtntC/s2vLvY38gqGaytinij/yi3hMcWVcEF5Kw==
dependencies:
- acorn "^8.11.3"
- pathe "^1.1.2"
- pkg-types "^1.0.3"
- ufo "^1.3.2"
+ motion-utils "^12.23.6"
-moniker@0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/moniker/-/moniker-0.1.2.tgz#872dfba575dcea8fa04a5135b13d5f24beccc97e"
- integrity sha512-Uj9iV0QYr6281G+o0TvqhKwHHWB2Q/qUTT4LPQ3qDGc0r8cbMuqQjRXPZuVZ+gcL7APx+iQgE8lcfWPrj1LsLA==
-
-mri@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b"
- integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==
+motion-dom@^12.23.12:
+ version "12.23.23"
+ resolved "https://registry.yarnpkg.com/motion-dom/-/motion-dom-12.23.23.tgz#8f874333ea1a04ee3a89eb928f518b463d589e0e"
+ integrity sha512-n5yolOs0TQQBRUFImrRfs/+6X4p3Q4n1dUEqt/H58Vx7OW6RF+foWEgmTVDhIWJIMXOuNNL0apKH2S16en9eiA==
+ dependencies:
+ motion-utils "^12.23.6"
-mrmime@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-2.0.0.tgz#151082a6e06e59a9a39b46b3e14d5cfe92b3abb4"
- integrity sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==
+motion-utils@^12.23.6:
+ version "12.23.6"
+ resolved "https://registry.yarnpkg.com/motion-utils/-/motion-utils-12.23.6.tgz#fafef80b4ea85122dd0d6c599a0c63d72881f312"
+ integrity sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==
-ms@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
- integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
+motion-v@^1.7.2:
+ version "1.7.3"
+ resolved "https://registry.yarnpkg.com/motion-v/-/motion-v-1.7.3.tgz#2dc491559f66b3ccb02f46d0d2e2e8958ddb0dd9"
+ integrity sha512-lwgrge7Y7FF9LxBxZ//MsSLPPjh4z1yYE9ie236Pa89mRCsBlONXbLcseln6G6LyAG8pt3PpzUxWt2grwMcBAA==
+ dependencies:
+ framer-motion "12.23.12"
+ hey-listen "^1.0.8"
+ motion-dom "12.23.12"
-ms@2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
- integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+mrmime@^2.0.0, mrmime@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-2.0.1.tgz#bc3e87f7987853a54c9850eeb1f1078cd44adddc"
+ integrity sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==
-ms@2.1.3, ms@^2.1.1:
+ms@^2.1.3:
version "2.1.3"
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
-mute-stream@0.0.7:
- version "0.0.7"
- resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
- integrity sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==
+muggle-string@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/muggle-string/-/muggle-string-0.4.1.tgz#3b366bd43b32f809dc20659534dd30e7c8a0d328"
+ integrity sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==
-mute-stream@~0.0.4:
- version "0.0.8"
- resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
- integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
+nanoid@^3.3.11:
+ version "3.3.11"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b"
+ integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==
-mz@^2.7.0:
- version "2.7.0"
- resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32"
- integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==
- dependencies:
- any-promise "^1.0.0"
- object-assign "^4.0.1"
- thenify-all "^1.0.0"
+nanoid@^5.1.0:
+ version "5.1.6"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.1.6.tgz#30363f664797e7d40429f6c16946d6bd7a3f26c9"
+ integrity sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==
+
+nanotar@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/nanotar/-/nanotar-0.2.0.tgz#763afd4e41974d033011f588e9157dff726c296b"
+ integrity sha512-9ca1h0Xjvo9bEkE4UOxgAzLV0jHKe6LMaxo37ND2DAhhAtd0j8pR1Wxz+/goMrZO8AEZTWCmyaOsFI/W5AdpCQ==
-nanoid@^3.3.4, nanoid@^3.3.7:
- version "3.3.7"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
- integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
+napi-build-utils@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-2.0.0.tgz#13c22c0187fcfccce1461844136372a47ddc027e"
+ integrity sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==
-nanoid@^5.0.7:
- version "5.0.7"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.0.7.tgz#6452e8c5a816861fd9d2b898399f7e5fd6944cc6"
- integrity sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==
+napi-postinstall@^0.3.0:
+ version "0.3.4"
+ resolved "https://registry.yarnpkg.com/napi-postinstall/-/napi-postinstall-0.3.4.tgz#7af256d6588b5f8e952b9190965d6b019653bbb9"
+ integrity sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==
napi-wasm@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/napi-wasm/-/napi-wasm-1.1.0.tgz#bbe617823765ae9c1bc12ff5942370eae7b2ba4e"
- integrity sha512-lHwIAJbmLSjF9VDRm9GoVOy9AGp3aIvkjv+Kvz9h16QR3uSVYH78PNQUnT2U4X53mhlnV2M7wrhibQ3GHicDmg==
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/napi-wasm/-/napi-wasm-1.1.3.tgz#7bb95c88e6561f84880bb67195437b1cfbe99224"
+ integrity sha512-h/4nMGsHjZDCYmQVNODIrYACVJ+I9KItbG+0si6W/jSjdA9JbWDoU4LLeMXVcEQGHjttI2tuXqDrbGF7qkUHHg==
-negotiator@0.6.3, negotiator@^0.6.3:
- version "0.6.3"
- resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
- integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
+natural-compare@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
+ integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
-netrc@0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/netrc/-/netrc-0.1.4.tgz#6be94fcaca8d77ade0a9670dc460914c94472444"
- integrity sha512-ye8AIYWQcP9MvoM1i0Z2jV0qed31Z8EWXYnyGNkiUAd+Fo8J+7uy90xTV8g/oAbhtjkY7iZbNTizQaXdKUuwpQ==
-
-nitropack@^2.9.6:
- version "2.9.6"
- resolved "https://registry.yarnpkg.com/nitropack/-/nitropack-2.9.6.tgz#90af114b796872f34e125e780e6148525149769f"
- integrity sha512-HP2PE0dREcDIBVkL8Zm6eVyrDd10/GI9hTL00PHvjUM8I9Y/2cv73wRDmxNyInfrx/CJKHATb2U/pQrqpzJyXA==
- dependencies:
- "@cloudflare/kv-asset-handler" "^0.3.1"
- "@netlify/functions" "^2.6.0"
- "@rollup/plugin-alias" "^5.1.0"
- "@rollup/plugin-commonjs" "^25.0.7"
+nitropack@^2.12.6:
+ version "2.12.7"
+ resolved "https://registry.yarnpkg.com/nitropack/-/nitropack-2.12.7.tgz#8c6dac6c9896c6f41374f805f077bdf6e100f93f"
+ integrity sha512-HWyzMBj2d8b14J6Cfnxv97ztnuHIgXNcrGiWCruLfb2ZfKsp6OCbZYJm5T9sv/ZKl8LedhatrMKG66HWJux9Rg==
+ dependencies:
+ "@cloudflare/kv-asset-handler" "^0.4.0"
+ "@rollup/plugin-alias" "^5.1.1"
+ "@rollup/plugin-commonjs" "^28.0.6"
"@rollup/plugin-inject" "^5.0.5"
"@rollup/plugin-json" "^6.1.0"
- "@rollup/plugin-node-resolve" "^15.2.3"
- "@rollup/plugin-replace" "^5.0.5"
+ "@rollup/plugin-node-resolve" "^16.0.2"
+ "@rollup/plugin-replace" "^6.0.2"
"@rollup/plugin-terser" "^0.4.4"
- "@rollup/pluginutils" "^5.1.0"
- "@types/http-proxy" "^1.17.14"
- "@vercel/nft" "^0.26.4"
+ "@vercel/nft" "^0.30.2"
archiver "^7.0.1"
- c12 "^1.10.0"
- chalk "^5.3.0"
- chokidar "^3.6.0"
+ c12 "^3.3.0"
+ chokidar "^4.0.3"
citty "^0.1.6"
- consola "^3.2.3"
- cookie-es "^1.1.0"
- croner "^8.0.1"
- crossws "^0.2.4"
- db0 "^0.1.4"
+ compatx "^0.2.0"
+ confbox "^0.2.2"
+ consola "^3.4.2"
+ cookie-es "^2.0.0"
+ croner "^9.1.0"
+ crossws "^0.3.5"
+ db0 "^0.3.4"
defu "^6.1.4"
- destr "^2.0.3"
- dot-prop "^8.0.2"
- esbuild "^0.20.2"
+ destr "^2.0.5"
+ dot-prop "^10.1.0"
+ esbuild "^0.25.10"
escape-string-regexp "^5.0.0"
etag "^1.8.1"
- fs-extra "^11.2.0"
- globby "^14.0.1"
+ exsolve "^1.0.7"
+ globby "^15.0.0"
gzip-size "^7.0.0"
- h3 "^1.11.1"
+ h3 "^1.15.4"
hookable "^5.5.3"
- httpxy "^0.1.5"
- ioredis "^5.3.2"
- is-primitive "^3.0.1"
- jiti "^1.21.0"
+ httpxy "^0.1.7"
+ ioredis "^5.8.1"
+ jiti "^2.6.1"
klona "^2.0.6"
- knitwork "^1.1.0"
- listhen "^1.7.2"
- magic-string "^0.30.8"
- mime "^4.0.1"
- mlly "^1.6.1"
- mri "^1.2.0"
- node-fetch-native "^1.6.4"
- ofetch "^1.3.4"
- ohash "^1.1.3"
- openapi-typescript "^6.7.5"
- pathe "^1.1.2"
- perfect-debounce "^1.0.0"
- pkg-types "^1.0.3"
- pretty-bytes "^6.1.1"
+ knitwork "^1.2.0"
+ listhen "^1.9.0"
+ magic-string "^0.30.19"
+ magicast "^0.3.5"
+ mime "^4.1.0"
+ mlly "^1.8.0"
+ node-fetch-native "^1.6.7"
+ node-mock-http "^1.0.3"
+ ofetch "^1.4.1"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
+ perfect-debounce "^2.0.0"
+ pkg-types "^2.3.0"
+ pretty-bytes "^7.1.0"
radix3 "^1.1.2"
- rollup "^4.13.2"
- rollup-plugin-visualizer "^5.12.0"
+ rollup "^4.52.4"
+ rollup-plugin-visualizer "^6.0.4"
scule "^1.3.0"
- semver "^7.6.0"
- serve-placeholder "^2.0.1"
- serve-static "^1.15.0"
- std-env "^3.7.0"
- ufo "^1.5.3"
+ semver "^7.7.2"
+ serve-placeholder "^2.0.2"
+ serve-static "^2.2.0"
+ source-map "^0.7.6"
+ std-env "^3.9.0"
+ ufo "^1.6.1"
+ ultrahtml "^1.6.0"
uncrypto "^0.1.3"
- unctx "^2.3.1"
- unenv "^1.9.0"
- unimport "^3.7.1"
- unstorage "^1.10.2"
- unwasm "^0.3.9"
+ unctx "^2.4.1"
+ unenv "^2.0.0-rc.21"
+ unimport "^5.4.1"
+ unplugin-utils "^0.3.1"
+ unstorage "^1.17.1"
+ untyped "^2.0.0"
+ unwasm "^0.3.11"
+ youch "4.1.0-beta.11"
+ youch-core "^0.3.3"
+
+node-abi@^3.3.0:
+ version "3.78.0"
+ resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.78.0.tgz#fd0ecbd0aa89857b98da06bd3909194abb0821ba"
+ integrity sha512-E2wEyrgX/CqvicaQYU3Ze1PFGjc4QYPGsjUrlYkqAE0WjHEZwgOsGMPMzkMse4LjJbDmaEuDX3CM036j5K2DSQ==
+ dependencies:
+ semver "^7.3.5"
+
+node-addon-api@^6.1.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-6.1.0.tgz#ac8470034e58e67d0c6f1204a18ae6995d9c0d76"
+ integrity sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==
node-addon-api@^7.0.0:
- version "7.1.0"
- resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.0.tgz#71f609369379c08e251c558527a107107b5e0fdb"
- integrity sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.1.tgz#1aba6693b0f255258a049d621329329322aad558"
+ integrity sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==
-node-emoji@^2.1.0:
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-2.1.3.tgz#93cfabb5cc7c3653aa52f29d6ffb7927d8047c06"
- integrity sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==
+node-emoji@^2.1.3:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-2.2.0.tgz#1d000e3c76e462577895be1b436f4aa2d6760eb0"
+ integrity sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==
dependencies:
"@sindresorhus/is" "^4.6.0"
char-regex "^1.0.2"
emojilib "^2.4.0"
skin-tone "^2.0.0"
-node-fetch-native@^1.6.1, node-fetch-native@^1.6.2, node-fetch-native@^1.6.3, node-fetch-native@^1.6.4:
- version "1.6.4"
- resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.6.4.tgz#679fc8fd8111266d47d7e72c379f1bed9acff06e"
- integrity sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==
+node-fetch-native@^1.6.4, node-fetch-native@^1.6.6, node-fetch-native@^1.6.7:
+ version "1.6.7"
+ resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.6.7.tgz#9d09ca63066cc48423211ed4caf5d70075d76a71"
+ integrity sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==
-node-fetch@^2.6.7:
+node-fetch@^2.6.7, node-fetch@^2.7.0:
version "2.7.0"
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d"
integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==
@@ -5932,54 +6733,26 @@ node-forge@^1.3.1:
integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==
node-gyp-build@^4.2.2:
- version "4.8.0"
- resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.0.tgz#3fee9c1731df4581a3f9ead74664369ff00d26dd"
- integrity sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==
-
-node-gyp@^10.0.0:
- version "10.1.0"
- resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-10.1.0.tgz#75e6f223f2acb4026866c26a2ead6aab75a8ca7e"
- integrity sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==
- dependencies:
- env-paths "^2.2.0"
- exponential-backoff "^3.1.1"
- glob "^10.3.10"
- graceful-fs "^4.2.6"
- make-fetch-happen "^13.0.0"
- nopt "^7.0.0"
- proc-log "^3.0.0"
- semver "^7.3.5"
- tar "^6.1.2"
- which "^4.0.0"
-
-node-releases@^2.0.14:
- version "2.0.14"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b"
- integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
+ version "4.8.4"
+ resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.4.tgz#8a70ee85464ae52327772a90d66c6077a900cfc8"
+ integrity sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==
-nopt@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88"
- integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==
- dependencies:
- abbrev "1"
+node-mock-http@^1.0.2, node-mock-http@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/node-mock-http/-/node-mock-http-1.0.3.tgz#4e55e093267a3b910cded7354389ce2d02c89e77"
+ integrity sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==
-nopt@^7.0.0:
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/nopt/-/nopt-7.2.0.tgz#067378c68116f602f552876194fd11f1292503d7"
- integrity sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==
- dependencies:
- abbrev "^2.0.0"
+node-releases@^2.0.26:
+ version "2.0.26"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.26.tgz#fdfa272f2718a1309489d18aef4ef5ba7f5dfb52"
+ integrity sha512-S2M9YimhSjBSvYnlr5/+umAnPHE++ODwt5e2Ij6FoX45HA/s4vHdkDx1eax2pAPeAOqu4s9b7ppahsyEFdVqQA==
-normalize-package-data@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-6.0.0.tgz#68a96b3c11edd462af7189c837b6b1064a484196"
- integrity sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==
+nopt@^8.0.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz#b11d38caf0f8643ce885818518064127f602eae3"
+ integrity sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==
dependencies:
- hosted-git-info "^7.0.0"
- is-core-module "^2.8.1"
- semver "^7.3.5"
- validate-npm-package-license "^3.0.4"
+ abbrev "^3.0.0"
normalize-path@^3.0.0, normalize-path@~3.0.0:
version "3.0.0"
@@ -5991,73 +6764,6 @@ normalize-range@^0.1.2:
resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==
-npm-bundled@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-3.0.0.tgz#7e8e2f8bb26b794265028491be60321a25a39db7"
- integrity sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==
- dependencies:
- npm-normalize-package-bin "^3.0.0"
-
-npm-install-checks@^6.0.0:
- version "6.3.0"
- resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.3.0.tgz#046552d8920e801fa9f919cad569545d60e826fe"
- integrity sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==
- dependencies:
- semver "^7.1.1"
-
-npm-normalize-package-bin@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832"
- integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==
-
-npm-package-arg@^11.0.0:
- version "11.0.2"
- resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-11.0.2.tgz#1ef8006c4a9e9204ddde403035f7ff7d718251ca"
- integrity sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==
- dependencies:
- hosted-git-info "^7.0.0"
- proc-log "^4.0.0"
- semver "^7.3.5"
- validate-npm-package-name "^5.0.0"
-
-npm-packlist@^8.0.0:
- version "8.0.2"
- resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-8.0.2.tgz#5b8d1d906d96d21c85ebbeed2cf54147477c8478"
- integrity sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==
- dependencies:
- ignore-walk "^6.0.4"
-
-npm-pick-manifest@^9.0.0:
- version "9.0.0"
- resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz#f87a4c134504a2c7931f2bb8733126e3c3bb7e8f"
- integrity sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==
- dependencies:
- npm-install-checks "^6.0.0"
- npm-normalize-package-bin "^3.0.0"
- npm-package-arg "^11.0.0"
- semver "^7.3.5"
-
-npm-registry-fetch@^16.0.0:
- version "16.2.1"
- resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-16.2.1.tgz#c367df2d770f915da069ff19fd31762f4bca3ef1"
- integrity sha512-8l+7jxhim55S85fjiDGJ1rZXBWGtRLi1OSb4Z3BPLObPuIaeKRlPRiYMSHU4/81ck3t71Z+UwDDl47gcpmfQQA==
- dependencies:
- "@npmcli/redact" "^1.1.0"
- make-fetch-happen "^13.0.0"
- minipass "^7.0.2"
- minipass-fetch "^3.0.0"
- minipass-json-stream "^1.0.1"
- minizlib "^2.1.2"
- npm-package-arg "^11.0.0"
- proc-log "^4.0.0"
-
-npm-run-path@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
- integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
- dependencies:
- path-key "^3.0.0"
-
npm-run-path@^5.1.0:
version "5.3.0"
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.3.0.tgz#e23353d0ebb9317f174e93417e4a4d82d0249e9f"
@@ -6065,230 +6771,229 @@ npm-run-path@^5.1.0:
dependencies:
path-key "^4.0.0"
-npmlog@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0"
- integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==
+npm-run-path@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-6.0.0.tgz#25cfdc4eae04976f3349c0b1afc089052c362537"
+ integrity sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==
dependencies:
- are-we-there-yet "^2.0.0"
- console-control-strings "^1.1.0"
- gauge "^3.0.0"
- set-blocking "^2.0.0"
+ path-key "^4.0.0"
+ unicorn-magic "^0.3.0"
-nth-check@^2.0.1:
+nth-check@^2.0.1, nth-check@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d"
integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==
dependencies:
boolbase "^1.0.0"
-nuxi@^3.11.1:
- version "3.11.1"
- resolved "https://registry.yarnpkg.com/nuxi/-/nuxi-3.11.1.tgz#a9c03333fde2200fd9f7d2965c33e93d3edeb378"
- integrity sha512-AW71TpxRHNg8MplQVju9tEFvXPvX42e0wPYknutSStDuAjV99vWTWYed4jxr/grk2FtKAuv2KvdJxcn2W59qyg==
- optionalDependencies:
- fsevents "~2.3.3"
+nuxt-component-meta@^0.14.0:
+ version "0.14.1"
+ resolved "https://registry.yarnpkg.com/nuxt-component-meta/-/nuxt-component-meta-0.14.1.tgz#9ccf05b4ae1c3c1a390220c47aa9cb05b2476bf1"
+ integrity sha512-Q8NuynMJleiutBx4cD33TLp5HCGGmGfz/dE+PNOsAScSAG54hmpPk2beeIwh2VZJoMzPAyPPAqbsdIKpMcOHbA==
+ dependencies:
+ "@nuxt/kit" "^4.1.1"
+ citty "^0.1.6"
+ json-schema-to-zod "^2.6.1"
+ mlly "^1.8.0"
+ ohash "^2.0.11"
+ scule "^1.3.0"
+ typescript "^5.9.2"
+ ufo "^1.6.1"
+ vue-component-meta "^3.0.6"
-nuxt-og-image@^2.2.4:
- version "2.2.4"
- resolved "https://registry.yarnpkg.com/nuxt-og-image/-/nuxt-og-image-2.2.4.tgz#7252f8950572dd8a697fc4112dc8a2a689c2d83a"
- integrity sha512-A7QNMi+/DueEOPgxIWCvUJU8UxgxyUtRrLd7QB6YVeXrBEFFhWD8/2wLbcSdZyAzpVmuE6cA7bSU3z3U/e7K/w==
- dependencies:
- "@nuxt/kit" "^3.8.1"
- "@resvg/resvg-js" "^2.6.0"
- "@resvg/resvg-wasm" "^2.6.0"
- "@twemoji/api" "^14.1.2"
- "@types/fs-extra" "^11.0.3"
- birpc "0.2.14"
- chalk "^5.3.0"
- chrome-launcher "^1.1.0"
- css-inline "^0.11.0"
- defu "^6.1.3"
- execa "^8.0.1"
- fast-glob "^3.3.2"
- flatted "^3.2.9"
- fs-extra "^11.1.1"
- globby "^13.2.2"
- image-size "^1.0.2"
- launch-editor "^2.6.1"
- nuxt-site-config "^1.5.5"
- nuxt-site-config-kit "^1.5.5"
- nypm "^0.3.3"
- ofetch "^1.3.3"
- ohash "^1.1.3"
- pathe "^1.1.1"
- playwright-core "^1.39.0"
- radix3 "^1.1.0"
- satori "0.10.9"
+nuxt-llms@0.1.3:
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/nuxt-llms/-/nuxt-llms-0.1.3.tgz#1f42e47ae974ebcc576eda829d294114cc97d047"
+ integrity sha512-+LaySko5UnlZw37GoTbsRX6KBFccSAzh6ENAYjV+xlVwsG8lSMz+IWnE7z5rstyVxHiX3Rx62M9JVut4jotJ3w==
+ dependencies:
+ "@nuxt/kit" "^3.17.5"
+
+nuxt-og-image@^5.1.11:
+ version "5.1.12"
+ resolved "https://registry.yarnpkg.com/nuxt-og-image/-/nuxt-og-image-5.1.12.tgz#f7bb996ca94be73bca88c1dfd145f39cb441fad8"
+ integrity sha512-BrQI7+g8Jqa7QtN+dDUPCs5WBCQM93YlnMJvyCtCOL0M5WKP7JMHyj51dvi9SxQklVvXpfc8FhUDm290K/OuYw==
+ dependencies:
+ "@nuxt/devtools-kit" "^2.6.5"
+ "@nuxt/kit" "^4.1.3"
+ "@resvg/resvg-js" "^2.6.2"
+ "@resvg/resvg-wasm" "^2.6.2"
+ "@unocss/core" "^66.5.3"
+ "@unocss/preset-wind3" "^66.5.3"
+ chrome-launcher "^1.2.1"
+ consola "^3.4.2"
+ defu "^6.1.4"
+ execa "^9.6.0"
+ image-size "^2.0.2"
+ magic-string "^0.30.19"
+ mocked-exports "^0.1.1"
+ nuxt-site-config "^3.2.9"
+ nypm "^0.6.2"
+ ofetch "^1.4.1"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
+ pkg-types "^2.3.0"
+ playwright-core "^1.56.0"
+ radix3 "^1.1.2"
+ satori "^0.15.2"
satori-html "^0.3.2"
- sirv "^2.0.3"
- std-env "^3.4.3"
- svg2png-wasm "^1.4.1"
- terminate "^2.6.1"
- tinyws "^0.1.0"
- twemoji "^14.0.2"
- ufo "^1.3.1"
- ws "^8.14.2"
+ sirv "^3.0.2"
+ std-env "^3.10.0"
+ strip-literal "^3.1.0"
+ ufo "^1.6.1"
+ unplugin "^2.3.10"
+ unwasm "^0.3.11"
yoga-wasm-web "^0.3.3"
-nuxt-site-config-kit@1.6.7, nuxt-site-config-kit@^1.5.5, nuxt-site-config-kit@^1.6.6:
- version "1.6.7"
- resolved "https://registry.yarnpkg.com/nuxt-site-config-kit/-/nuxt-site-config-kit-1.6.7.tgz#eaeacfd94e352237b56a35ce64e54f2c30d56a44"
- integrity sha512-dq7W5ra1KRRi8gW/v8j3e7rNCN8jEZHXnGZ9Ao4r7JZvyHpJyntQYcftcI2N7VViT+6xWdIE7ge4oma7+gvjVQ==
- dependencies:
- "@nuxt/kit" "^3.8.2"
- "@nuxt/schema" "^3.8.2"
- pkg-types "^1.0.3"
- site-config-stack "1.6.7"
- std-env "^3.6.0"
- ufo "^1.3.2"
-
-nuxt-site-config@^1.5.5, nuxt-site-config@^1.6.6:
- version "1.6.7"
- resolved "https://registry.yarnpkg.com/nuxt-site-config/-/nuxt-site-config-1.6.7.tgz#d6870dbb31243a511c623f0a552f4013491acea4"
- integrity sha512-X9HPq0ldfFf9vatXcOLt1Fl9xPydhC+fZw5KVxACcOyNK92KwJgvzrHAooURdoQhohaVgPbK+xnfVP8S6GCkQA==
- dependencies:
- "@nuxt/devtools-kit" "^1.0.5"
- "@nuxt/devtools-ui-kit" "^1.0.5"
- "@nuxt/kit" "^3.8.2"
- "@nuxt/schema" "^3.8.2"
- nuxt-site-config-kit "1.6.7"
- pathe "^1.1.1"
- shiki-es "^0.14.0"
- sirv "^2.0.3"
- site-config-stack "1.6.7"
- ufo "^1.3.2"
-
-nuxt@^3.11.2:
- version "3.11.2"
- resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-3.11.2.tgz#38e14b96ff5669b1fbae7fc99e8d79042dce658d"
- integrity sha512-Be1d4oyFo60pdF+diBolYDcfNemoMYM3R8PDjhnGrs/w3xJoDH1YMUVWHXXY8WhSmYZI7dyBehx/6kTfGFliVA==
+nuxt-schema-org@^5.0.9:
+ version "5.0.9"
+ resolved "https://registry.yarnpkg.com/nuxt-schema-org/-/nuxt-schema-org-5.0.9.tgz#cea4e2bf0993d5d0f8eb2a98b073fd096a045ad0"
+ integrity sha512-k0i3h9WJYz0ikLtxLky0Ip0Cbr+P98I2tV7zWu7kZNUSi47PagM/Qd7/RA2jf0sq4VC9JwQUDtjDp7r3u4S8kw==
dependencies:
+ "@nuxt/kit" "^4.1.2"
+ "@unhead/schema-org" "^2.0.14"
+ defu "^6.1.4"
+ nuxt-site-config "^3.2.5"
+ pathe "^2.0.3"
+ pkg-types "^2.3.0"
+ sirv "^3.0.2"
+
+nuxt-site-config-kit@3.2.11:
+ version "3.2.11"
+ resolved "https://registry.yarnpkg.com/nuxt-site-config-kit/-/nuxt-site-config-kit-3.2.11.tgz#0ef33cd4dc4f9347d5bf10eb4ad8c72a970f4d20"
+ integrity sha512-Um9/JiJpskAC8H18pHs3D/c7ikKj37/OsM1rvTqDgdzShSzOAxGGN+8qBVtGaqp1V+9BuPFSXhr1+TV7+RRsRA==
+ dependencies:
+ "@nuxt/kit" "^4.1.3"
+ pkg-types "^2.3.0"
+ site-config-stack "3.2.11"
+ std-env "^3.10.0"
+ ufo "^1.6.1"
+
+nuxt-site-config@^3.2.5, nuxt-site-config@^3.2.9:
+ version "3.2.11"
+ resolved "https://registry.yarnpkg.com/nuxt-site-config/-/nuxt-site-config-3.2.11.tgz#a0883e54cdd58eacca0d59a63a8773e07b022437"
+ integrity sha512-hU78O5f0/n1LOIorDe6iKbW3xw19bao8YbQ7RCiUtVM+1XbD11JWzUXWygX7atV+KtzGhZUbTbhjxmfbnlF//A==
+ dependencies:
+ "@nuxt/kit" "^4.1.3"
+ nuxt-site-config-kit "3.2.11"
+ pathe "^2.0.3"
+ pkg-types "^2.3.0"
+ sirv "^3.0.2"
+ site-config-stack "3.2.11"
+ ufo "^1.6.1"
+
+nuxt@^4.1.3:
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/nuxt/-/nuxt-4.1.3.tgz#1b55e2bbe9d55a605b12e160daec3d88229bf8dd"
+ integrity sha512-FPl+4HNIOTRYWQXtsZe5KJAr/eddFesuXABvcSTnFLYckIfnxcistwmbtPlkJhkW6vr/Jdhef5QqqYYkBsowGg==
+ dependencies:
+ "@nuxt/cli" "^3.29.0"
"@nuxt/devalue" "^2.0.2"
- "@nuxt/devtools" "^1.1.5"
- "@nuxt/kit" "3.11.2"
- "@nuxt/schema" "3.11.2"
- "@nuxt/telemetry" "^2.5.3"
- "@nuxt/ui-templates" "^1.3.2"
- "@nuxt/vite-builder" "3.11.2"
- "@unhead/dom" "^1.9.4"
- "@unhead/ssr" "^1.9.4"
- "@unhead/vue" "^1.9.4"
- "@vue/shared" "^3.4.21"
- acorn "8.11.3"
- c12 "^1.10.0"
- chokidar "^3.6.0"
- cookie-es "^1.1.0"
+ "@nuxt/devtools" "^2.6.5"
+ "@nuxt/kit" "4.1.3"
+ "@nuxt/schema" "4.1.3"
+ "@nuxt/telemetry" "^2.6.6"
+ "@nuxt/vite-builder" "4.1.3"
+ "@unhead/vue" "^2.0.14"
+ "@vue/shared" "^3.5.22"
+ c12 "^3.3.0"
+ chokidar "^4.0.3"
+ compatx "^0.2.0"
+ consola "^3.4.2"
+ cookie-es "^2.0.0"
defu "^6.1.4"
- destr "^2.0.3"
- devalue "^4.3.2"
- esbuild "^0.20.2"
+ destr "^2.0.5"
+ devalue "^5.3.2"
+ errx "^0.1.0"
+ esbuild "^0.25.10"
escape-string-regexp "^5.0.0"
estree-walker "^3.0.3"
- fs-extra "^11.2.0"
- globby "^14.0.1"
- h3 "^1.11.1"
+ exsolve "^1.0.7"
+ h3 "^1.15.4"
hookable "^5.5.3"
- jiti "^1.21.0"
+ ignore "^7.0.5"
+ impound "^1.0.0"
+ jiti "^2.6.1"
klona "^2.0.6"
- knitwork "^1.1.0"
- magic-string "^0.30.9"
- mlly "^1.6.1"
- nitropack "^2.9.6"
- nuxi "^3.11.1"
- nypm "^0.3.8"
- ofetch "^1.3.4"
- ohash "^1.1.3"
- pathe "^1.1.2"
- perfect-debounce "^1.0.0"
- pkg-types "^1.0.3"
+ knitwork "^1.2.0"
+ magic-string "^0.30.19"
+ mlly "^1.8.0"
+ mocked-exports "^0.1.1"
+ nanotar "^0.2.0"
+ nitropack "^2.12.6"
+ nypm "^0.6.2"
+ ofetch "^1.4.1"
+ ohash "^2.0.11"
+ on-change "^6.0.0"
+ oxc-minify "^0.94.0"
+ oxc-parser "^0.94.0"
+ oxc-transform "^0.94.0"
+ oxc-walker "^0.5.2"
+ pathe "^2.0.3"
+ perfect-debounce "^2.0.0"
+ pkg-types "^2.3.0"
radix3 "^1.1.2"
scule "^1.3.0"
- std-env "^3.7.0"
- strip-literal "^2.1.0"
- ufo "^1.5.3"
- ultrahtml "^1.5.3"
+ semver "^7.7.2"
+ std-env "^3.9.0"
+ tinyglobby "^0.2.15"
+ ufo "^1.6.1"
+ ultrahtml "^1.6.0"
uncrypto "^0.1.3"
- unctx "^2.3.1"
- unenv "^1.9.0"
- unimport "^3.7.1"
- unplugin "^1.10.1"
- unplugin-vue-router "^0.7.0"
- unstorage "^1.10.2"
- untyped "^1.4.2"
- vue "^3.4.21"
- vue-bundle-renderer "^2.0.0"
+ unctx "^2.4.1"
+ unimport "^5.4.1"
+ unplugin "^2.3.10"
+ unplugin-vue-router "^0.15.0"
+ unstorage "^1.17.1"
+ untyped "^2.0.0"
+ vue "^3.5.22"
+ vue-bundle-renderer "^2.2.0"
vue-devtools-stub "^0.1.0"
- vue-router "^4.3.0"
+ vue-router "^4.5.1"
-nypm@^0.3.3, nypm@^0.3.8:
- version "0.3.8"
- resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.3.8.tgz#a16b078b161be5885351e72cf0b97326973722bf"
- integrity sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==
+nypm@^0.6.0, nypm@^0.6.1, nypm@^0.6.2:
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.6.2.tgz#467512024948398fafa73cea30a3ed9efc5af071"
+ integrity sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g==
dependencies:
citty "^0.1.6"
- consola "^3.2.3"
- execa "^8.0.1"
- pathe "^1.1.2"
- ufo "^1.4.0"
-
-oauth-sign@~0.9.0:
- version "0.9.0"
- resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
- integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
-
-object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
- integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
-
-object-hash@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9"
- integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==
+ consola "^3.4.2"
+ pathe "^2.0.3"
+ pkg-types "^2.3.0"
+ tinyexec "^1.0.1"
-ofetch@^1.3.3, ofetch@^1.3.4:
- version "1.3.4"
- resolved "https://registry.yarnpkg.com/ofetch/-/ofetch-1.3.4.tgz#7ea65ced3c592ec2b9906975ae3fe1d26a56f635"
- integrity sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==
+ofetch@^1.3.3, ofetch@^1.4.1:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/ofetch/-/ofetch-1.4.1.tgz#b6bf6b0d75ba616cef6519dd8b6385a8bae480ec"
+ integrity sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==
dependencies:
destr "^2.0.3"
- node-fetch-native "^1.6.3"
- ufo "^1.5.3"
+ node-fetch-native "^1.6.4"
+ ufo "^1.5.4"
-ohash@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/ohash/-/ohash-1.1.3.tgz#f12c3c50bfe7271ce3fd1097d42568122ccdcf07"
- integrity sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==
+ohash@^2.0.0, ohash@^2.0.11:
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/ohash/-/ohash-2.0.11.tgz#60b11e8cff62ca9dee88d13747a5baa145f5900b"
+ integrity sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==
+
+on-change@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/on-change/-/on-change-6.0.0.tgz#bb1c0e0cd4f76a4839da152e36b6b11d24fa87d9"
+ integrity sha512-J7kocOS+ZNyjmW6tUUTtA7jLt8GjQlrOdz9z3yLNTvdsswO+b5lYSdMVzDczWnooyFAkkQiKyap5g/Zba+cFRA==
-on-finished@2.4.1, on-finished@^2.3.0:
+on-finished@^2.4.1:
version "2.4.1"
resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f"
integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==
dependencies:
ee-first "1.1.1"
-once@^1.3.0:
+once@^1.3.1, once@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
dependencies:
wrappy "1"
-onetime@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
- integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==
- dependencies:
- mimic-fn "^1.0.0"
-
-onetime@^5.1.2:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
- integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
- dependencies:
- mimic-fn "^2.1.0"
-
onetime@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4"
@@ -6296,30 +7001,31 @@ onetime@^6.0.0:
dependencies:
mimic-fn "^4.0.0"
-only@~0.0.2:
- version "0.0.2"
- resolved "https://registry.yarnpkg.com/only/-/only-0.0.2.tgz#2afde84d03e50b9a8edc444e30610a70295edfb4"
- integrity sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==
+oniguruma-parser@^0.12.1:
+ version "0.12.1"
+ resolved "https://registry.yarnpkg.com/oniguruma-parser/-/oniguruma-parser-0.12.1.tgz#82ba2208d7a2b69ee344b7efe0ae930c627dcc4a"
+ integrity sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==
-open@^10.1.0:
- version "10.1.0"
- resolved "https://registry.yarnpkg.com/open/-/open-10.1.0.tgz#a7795e6e5d519abe4286d9937bb24b51122598e1"
- integrity sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==
+oniguruma-to-es@^4.3.3:
+ version "4.3.3"
+ resolved "https://registry.yarnpkg.com/oniguruma-to-es/-/oniguruma-to-es-4.3.3.tgz#50db2c1e28ec365e102c1863dfd3d1d1ad18613e"
+ integrity sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==
+ dependencies:
+ oniguruma-parser "^0.12.1"
+ regex "^6.0.1"
+ regex-recursion "^6.0.2"
+
+open@^10.2.0:
+ version "10.2.0"
+ resolved "https://registry.yarnpkg.com/open/-/open-10.2.0.tgz#b9d855be007620e80b6fb05fac98141fe62db73c"
+ integrity sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==
dependencies:
default-browser "^5.2.1"
define-lazy-prop "^3.0.0"
is-inside-container "^1.0.0"
- is-wsl "^3.1.0"
-
-open@^7.0.4:
- version "7.4.2"
- resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321"
- integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==
- dependencies:
- is-docker "^2.0.0"
- is-wsl "^2.1.1"
+ wsl-utils "^0.1.0"
-open@^8.4.0:
+open@^8.0.0:
version "8.4.2"
resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9"
integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==
@@ -6328,22 +7034,89 @@ open@^8.4.0:
is-docker "^2.1.1"
is-wsl "^2.2.0"
-openapi-typescript@^6.7.5:
- version "6.7.5"
- resolved "https://registry.yarnpkg.com/openapi-typescript/-/openapi-typescript-6.7.5.tgz#3e7f0d080d540396ef8db3df4ed07e1a4a5bb1d8"
- integrity sha512-ZD6dgSZi0u1QCP55g8/2yS5hNJfIpgqsSGHLxxdOjvY7eIrXzj271FJEQw33VwsZ6RCtO/NOuhxa7GBWmEudyA==
+optionator@^0.9.3:
+ version "0.9.4"
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734"
+ integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==
+ dependencies:
+ deep-is "^0.1.3"
+ fast-levenshtein "^2.0.6"
+ levn "^0.4.1"
+ prelude-ls "^1.2.1"
+ type-check "^0.4.0"
+ word-wrap "^1.2.5"
+
+oxc-minify@^0.94.0:
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/oxc-minify/-/oxc-minify-0.94.0.tgz#fa1ed395b520ead21b001732c42e589e5031a34e"
+ integrity sha512-7+9iyxwpzfjuiEnSqNJYzTsC1Oud742PPkr/4S1bGY930U4tApdLEK8zmgbT57c1/56cfNOndqZaeQZiAfnJ5A==
+ optionalDependencies:
+ "@oxc-minify/binding-android-arm64" "0.94.0"
+ "@oxc-minify/binding-darwin-arm64" "0.94.0"
+ "@oxc-minify/binding-darwin-x64" "0.94.0"
+ "@oxc-minify/binding-freebsd-x64" "0.94.0"
+ "@oxc-minify/binding-linux-arm-gnueabihf" "0.94.0"
+ "@oxc-minify/binding-linux-arm-musleabihf" "0.94.0"
+ "@oxc-minify/binding-linux-arm64-gnu" "0.94.0"
+ "@oxc-minify/binding-linux-arm64-musl" "0.94.0"
+ "@oxc-minify/binding-linux-riscv64-gnu" "0.94.0"
+ "@oxc-minify/binding-linux-s390x-gnu" "0.94.0"
+ "@oxc-minify/binding-linux-x64-gnu" "0.94.0"
+ "@oxc-minify/binding-linux-x64-musl" "0.94.0"
+ "@oxc-minify/binding-wasm32-wasi" "0.94.0"
+ "@oxc-minify/binding-win32-arm64-msvc" "0.94.0"
+ "@oxc-minify/binding-win32-x64-msvc" "0.94.0"
+
+oxc-parser@^0.94.0:
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/oxc-parser/-/oxc-parser-0.94.0.tgz#173433104f234177ee691dba94d3e0e027cc8099"
+ integrity sha512-refms9HQoAlTYIazONYkuX5A3rFGPddbD6Otyc+A0/pj1WTttR8TsZRlMzQxCfhexxfrbinqd7ebkEoYNuCmLQ==
+ dependencies:
+ "@oxc-project/types" "^0.94.0"
+ optionalDependencies:
+ "@oxc-parser/binding-android-arm64" "0.94.0"
+ "@oxc-parser/binding-darwin-arm64" "0.94.0"
+ "@oxc-parser/binding-darwin-x64" "0.94.0"
+ "@oxc-parser/binding-freebsd-x64" "0.94.0"
+ "@oxc-parser/binding-linux-arm-gnueabihf" "0.94.0"
+ "@oxc-parser/binding-linux-arm-musleabihf" "0.94.0"
+ "@oxc-parser/binding-linux-arm64-gnu" "0.94.0"
+ "@oxc-parser/binding-linux-arm64-musl" "0.94.0"
+ "@oxc-parser/binding-linux-riscv64-gnu" "0.94.0"
+ "@oxc-parser/binding-linux-s390x-gnu" "0.94.0"
+ "@oxc-parser/binding-linux-x64-gnu" "0.94.0"
+ "@oxc-parser/binding-linux-x64-musl" "0.94.0"
+ "@oxc-parser/binding-wasm32-wasi" "0.94.0"
+ "@oxc-parser/binding-win32-arm64-msvc" "0.94.0"
+ "@oxc-parser/binding-win32-x64-msvc" "0.94.0"
+
+oxc-transform@^0.94.0:
+ version "0.94.0"
+ resolved "https://registry.yarnpkg.com/oxc-transform/-/oxc-transform-0.94.0.tgz#1cbb63580e513bec48a82df03c7926bcc75fb944"
+ integrity sha512-nHFFyPVWNNe7WLsAiQ6iwfsuTW/1esT+BJg+9rlvcSa0mfcZTpNo3TlBfj9IerLdDmYHJnSYsx8jjFZhoGfZ1w==
+ optionalDependencies:
+ "@oxc-transform/binding-android-arm64" "0.94.0"
+ "@oxc-transform/binding-darwin-arm64" "0.94.0"
+ "@oxc-transform/binding-darwin-x64" "0.94.0"
+ "@oxc-transform/binding-freebsd-x64" "0.94.0"
+ "@oxc-transform/binding-linux-arm-gnueabihf" "0.94.0"
+ "@oxc-transform/binding-linux-arm-musleabihf" "0.94.0"
+ "@oxc-transform/binding-linux-arm64-gnu" "0.94.0"
+ "@oxc-transform/binding-linux-arm64-musl" "0.94.0"
+ "@oxc-transform/binding-linux-riscv64-gnu" "0.94.0"
+ "@oxc-transform/binding-linux-s390x-gnu" "0.94.0"
+ "@oxc-transform/binding-linux-x64-gnu" "0.94.0"
+ "@oxc-transform/binding-linux-x64-musl" "0.94.0"
+ "@oxc-transform/binding-wasm32-wasi" "0.94.0"
+ "@oxc-transform/binding-win32-arm64-msvc" "0.94.0"
+ "@oxc-transform/binding-win32-x64-msvc" "0.94.0"
+
+oxc-walker@^0.5.2:
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/oxc-walker/-/oxc-walker-0.5.2.tgz#ebc81bbcb3138b70bd454754365e118ac0616522"
+ integrity sha512-XYoZqWwApSKUmSDEFeOKdy3Cdh95cOcSU8f7yskFWE4Rl3cfL5uwyY+EV7Brk9mdNLy+t5SseJajd6g7KncvlA==
dependencies:
- ansi-colors "^4.1.3"
- fast-glob "^3.3.2"
- js-yaml "^4.1.0"
- supports-color "^9.4.0"
- undici "^5.28.2"
- yargs-parser "^21.1.1"
-
-os-tmpdir@~1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
- integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==
+ magic-regexp "^0.10.0"
p-limit@^3.0.2:
version "3.1.0"
@@ -6352,6 +7125,13 @@ p-limit@^3.0.2:
dependencies:
yocto-queue "^0.1.0"
+p-limit@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644"
+ integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==
+ dependencies:
+ yocto-queue "^1.0.0"
+
p-locate@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
@@ -6359,41 +7139,35 @@ p-locate@^5.0.0:
dependencies:
p-limit "^3.0.2"
-p-map@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
- integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
- dependencies:
- aggregate-error "^3.0.0"
-
-pacote@^18.0.0:
- version "18.0.2"
- resolved "https://registry.yarnpkg.com/pacote/-/pacote-18.0.2.tgz#ac78b9d6a441788f024c14179e193e170a8af964"
- integrity sha512-oMxnZQCOZqFZyEh5oJtpMepoub4hoI6EfMUCdbwkBqkFuJ1Dwfz5IMQD344dKbwPPBNZWKwGL/kNvmDubZyvug==
- dependencies:
- "@npmcli/git" "^5.0.0"
- "@npmcli/installed-package-contents" "^2.0.1"
- "@npmcli/package-json" "^5.1.0"
- "@npmcli/promise-spawn" "^7.0.0"
- "@npmcli/run-script" "^8.0.0"
- cacache "^18.0.0"
- fs-minipass "^3.0.0"
- minipass "^7.0.2"
- npm-package-arg "^11.0.0"
- npm-packlist "^8.0.0"
- npm-pick-manifest "^9.0.0"
- npm-registry-fetch "^16.0.0"
- proc-log "^4.0.0"
- promise-retry "^2.0.1"
- sigstore "^2.2.0"
- ssri "^10.0.0"
- tar "^6.1.11"
+p-locate@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f"
+ integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==
+ dependencies:
+ p-limit "^4.0.0"
+
+package-json-from-dist@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505"
+ integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==
+
+package-manager-detector@^1.1.0, package-manager-detector@^1.3.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/package-manager-detector/-/package-manager-detector-1.5.0.tgz#8dcf7b78554047ddf5da453e6ba07ebc915c507e"
+ integrity sha512-uBj69dVlYe/+wxj8JOpr97XfsxH/eumMt6HqjNTmJDf/6NO9s+0uxeOneIz3AsPt2m6y9PqzDzd3ATcU17MNfw==
pako@^0.2.5:
version "0.2.9"
resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
integrity sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==
+parent-module@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
+ integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
+ dependencies:
+ callsites "^3.0.0"
+
parse-css-color@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/parse-css-color/-/parse-css-color-0.2.1.tgz#b687a583f2e42e66ffdfce80a570706966e807c9"
@@ -6402,13 +7176,12 @@ parse-css-color@^0.2.1:
color-name "^1.1.4"
hex-rgb "^4.1.0"
-parse-entities@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.1.tgz#4e2a01111fb1c986549b944af39eeda258fc9e4e"
- integrity sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==
+parse-entities@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.2.tgz#61d46f5ed28e4ee62e9ddc43d6b010188443f159"
+ integrity sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==
dependencies:
"@types/unist" "^2.0.0"
- character-entities "^2.0.0"
character-entities-legacy "^3.0.0"
character-reference-invalid "^2.0.0"
decode-named-character-reference "^1.0.0"
@@ -6416,51 +7189,73 @@ parse-entities@^4.0.1:
is-decimal "^2.0.0"
is-hexadecimal "^2.0.0"
-parse-git-config@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/parse-git-config/-/parse-git-config-3.0.0.tgz#4a2de08c7b74a2555efa5ae94d40cd44302a6132"
- integrity sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==
+parse-imports-exports@^0.2.4:
+ version "0.2.4"
+ resolved "https://registry.yarnpkg.com/parse-imports-exports/-/parse-imports-exports-0.2.4.tgz#e3fb3b5e264cfb55c25b5dfcbe7f410f8dc4e7af"
+ integrity sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ==
dependencies:
- git-config-path "^2.0.0"
- ini "^1.3.5"
+ parse-statements "1.0.11"
-parse-path@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.0.0.tgz#605a2d58d0a749c8594405d8cc3a2bf76d16099b"
- integrity sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==
+parse-ms@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-4.0.0.tgz#c0c058edd47c2a590151a718990533fd62803df4"
+ integrity sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==
+
+parse-path@*, parse-path@^7.0.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.1.0.tgz#41fb513cb122831807a4c7b29c8727947a09d8c6"
+ integrity sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw==
dependencies:
protocols "^2.0.0"
-parse-url@^8.1.0:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-8.1.0.tgz#972e0827ed4b57fc85f0ea6b0d839f0d8a57a57d"
- integrity sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==
+parse-statements@1.0.11:
+ version "1.0.11"
+ resolved "https://registry.yarnpkg.com/parse-statements/-/parse-statements-1.0.11.tgz#8787c5d383ae5746568571614be72b0689584344"
+ integrity sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA==
+
+parse-url@^9.2.0:
+ version "9.2.0"
+ resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-9.2.0.tgz#d75da32b3bbade66e4eb0763fb4851d27526b97b"
+ integrity sha512-bCgsFI+GeGWPAvAiUv63ZorMeif3/U0zaXABGJbOWt5OH2KCaPHF6S+0ok4aqM9RuIPGyZdx9tR9l13PsW4AYQ==
dependencies:
+ "@types/parse-path" "^7.0.0"
parse-path "^7.0.0"
-parse5@^7.0.0, parse5@^7.1.2:
- version "7.1.2"
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32"
- integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==
+parse5@^7.0.0:
+ version "7.3.0"
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.3.0.tgz#d7e224fa72399c7a175099f45fc2ad024b05ec05"
+ integrity sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==
dependencies:
- entities "^4.4.0"
+ entities "^6.0.0"
-parseurl@^1.3.2, parseurl@~1.3.3:
+parse5@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-8.0.0.tgz#aceb267f6b15f9b6e6ba9e35bfdd481fc2167b12"
+ integrity sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==
+ dependencies:
+ entities "^6.0.0"
+
+parseurl@^1.3.3:
version "1.3.3"
resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
+path-browserify@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd"
+ integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==
+
path-exists@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
-path-is-absolute@1.0.1, path-is-absolute@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
- integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
+path-exists@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7"
+ integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==
-path-key@^3.0.0, path-key@^3.1.0:
+path-key@^3.1.0:
version "3.1.1"
resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
@@ -6475,379 +7270,350 @@ path-parse@^1.0.7:
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
-path-scurry@^1.10.2:
- version "1.10.2"
- resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.2.tgz#8f6357eb1239d5fa1da8b9f70e9c080675458ba7"
- integrity sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==
+path-scurry@^1.11.1:
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2"
+ integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==
dependencies:
lru-cache "^10.2.0"
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
-path-to-regexp@^6.2.1:
- version "6.2.2"
- resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.2.tgz#324377a83e5049cbecadc5554d6a63a9a4866b36"
- integrity sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==
-
-path-type@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
- integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
-
-path-type@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-5.0.0.tgz#14b01ed7aea7ddf9c7c3f46181d4d04f9c785bb8"
- integrity sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==
+path-type@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-6.0.0.tgz#2f1bb6791a91ce99194caede5d6c5920ed81eb51"
+ integrity sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==
pathe@^1.1.1, pathe@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.2.tgz#6c4cb47a945692e48a1ddd6e4094d170516437ec"
integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==
-pause-stream@0.0.11:
- version "0.0.11"
- resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445"
- integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==
- dependencies:
- through "~2.3"
+pathe@^2.0.1, pathe@^2.0.2, pathe@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/pathe/-/pathe-2.0.3.tgz#3ecbec55421685b70a9da872b2cff3e1cbed1716"
+ integrity sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==
perfect-debounce@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz#9c2e8bc30b169cc984a58b7d5b28049839591d2a"
integrity sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==
-performance-now@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
- integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==
+perfect-debounce@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/perfect-debounce/-/perfect-debounce-2.0.0.tgz#0ff94f1ecbe0a6bca4b1703a2ed08bbe43739aa7"
+ integrity sha512-fkEH/OBiKrqqI/yIgjR92lMfs2K8105zt/VT6+7eTjNwisrsh47CeIED9z58zI7DfKdH3uHAn25ziRZn3kgAow==
-picocolors@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
- integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
+picocolors@^1.0.0, picocolors@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b"
+ integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
-picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.3.1:
+picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
version "2.3.1"
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
-pify@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
- integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==
-
-pirates@^4.0.1:
- version "4.0.6"
- resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9"
- integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==
+picomatch@^4.0.2, picomatch@^4.0.3:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz#796c76136d1eead715db1e7bad785dedd695a042"
+ integrity sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==
-pkg-types@^1.0.3, pkg-types@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.1.0.tgz#3ec1bf33379030fd0a34c227b6c650e8ea7ca271"
- integrity sha512-/RpmvKdxKf8uILTtoOhAgf30wYbP2Qw+L9p3Rvshx1JZVX+XQNZQFjlbmGHEGIm4CkVPlSn+NXmIM8+9oWQaSA==
+pkg-types@^1.2.1, pkg-types@^1.3.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.3.1.tgz#bd7cc70881192777eef5326c19deb46e890917df"
+ integrity sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==
dependencies:
- confbox "^0.1.7"
- mlly "^1.6.1"
- pathe "^1.1.2"
+ confbox "^0.1.8"
+ mlly "^1.7.4"
+ pathe "^2.0.1"
-plausible-tracker@^0.3.8:
- version "0.3.8"
- resolved "https://registry.yarnpkg.com/plausible-tracker/-/plausible-tracker-0.3.8.tgz#9b8b322cc41e0e1d6473869ef234deea365a5a40"
- integrity sha512-lmOWYQ7s9KOUJ1R+YTOR3HrjdbxIS2Z4de0P/Jx2dQPteznJl2eX3tXxKClpvbfyGP59B5bbhW8ftN59HbbFSg==
+pkg-types@^2.2.0, pkg-types@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-2.3.0.tgz#037f2c19bd5402966ff6810e32706558cb5b5726"
+ integrity sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==
+ dependencies:
+ confbox "^0.2.2"
+ exsolve "^1.0.7"
+ pathe "^2.0.3"
-playwright-core@^1.39.0:
- version "1.43.1"
- resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.43.1.tgz#0eafef9994c69c02a1a3825a4343e56c99c03b02"
- integrity sha512-EI36Mto2Vrx6VF7rm708qSnesVQKbxEWvPrfA1IPY6HgczBplDx7ENtx+K2n4kJ41sLLkuGfmb0ZLSSXlDhqPg==
+playwright-core@^1.56.0:
+ version "1.56.1"
+ resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.56.1.tgz#24a66481e5cd33a045632230aa2c4f0cb6b1db3d"
+ integrity sha512-hutraynyn31F+Bifme+Ps9Vq59hKuUCz7H1kDOcBs+2oGguKkWTU50bBWrtz34OUWmIwpBTWDxaRPXrIXkgvmQ==
-portfinder@^1.0.26:
- version "1.0.32"
- resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.32.tgz#2fe1b9e58389712429dc2bea5beb2146146c7f81"
- integrity sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==
- dependencies:
- async "^2.6.4"
- debug "^3.2.7"
- mkdirp "^0.5.6"
+pluralize@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1"
+ integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==
-postcss-calc@^9.0.1:
- version "9.0.1"
- resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-9.0.1.tgz#a744fd592438a93d6de0f1434c572670361eb6c6"
- integrity sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==
+postcss-calc@^10.1.1:
+ version "10.1.1"
+ resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-10.1.1.tgz#52b385f2e628239686eb6e3a16207a43f36064ca"
+ integrity sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==
dependencies:
- postcss-selector-parser "^6.0.11"
+ postcss-selector-parser "^7.0.0"
postcss-value-parser "^4.2.0"
-postcss-colormin@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-6.1.0.tgz#076e8d3fb291fbff7b10e6b063be9da42ff6488d"
- integrity sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==
+postcss-colormin@^7.0.4:
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-7.0.4.tgz#12b5ed701bc860d58e5267a51679415939563bdb"
+ integrity sha512-ziQuVzQZBROpKpfeDwmrG+Vvlr0YWmY/ZAk99XD+mGEBuEojoFekL41NCsdhyNUtZI7DPOoIWIR7vQQK9xwluw==
dependencies:
- browserslist "^4.23.0"
+ browserslist "^4.25.1"
caniuse-api "^3.0.0"
colord "^2.9.3"
postcss-value-parser "^4.2.0"
-postcss-convert-values@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz#3498387f8efedb817cbc63901d45bd1ceaa40f48"
- integrity sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==
+postcss-convert-values@^7.0.7:
+ version "7.0.7"
+ resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-7.0.7.tgz#e24f8118d8f5cb3830dd8841c8a01537b7535293"
+ integrity sha512-HR9DZLN04Xbe6xugRH6lS4ZQH2zm/bFh/ZyRkpedZozhvh+awAfbA0P36InO4fZfDhvYfNJeNvlTf1sjwGbw/A==
dependencies:
- browserslist "^4.23.0"
+ browserslist "^4.25.1"
postcss-value-parser "^4.2.0"
-postcss-discard-comments@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz#e768dcfdc33e0216380623652b0a4f69f4678b6c"
- integrity sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==
-
-postcss-discard-duplicates@^6.0.3:
- version "6.0.3"
- resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz#d121e893c38dc58a67277f75bb58ba43fce4c3eb"
- integrity sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==
-
-postcss-discard-empty@^6.0.3:
- version "6.0.3"
- resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz#ee39c327219bb70473a066f772621f81435a79d9"
- integrity sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==
-
-postcss-discard-overridden@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz#4e9f9c62ecd2df46e8fdb44dc17e189776572e2d"
- integrity sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==
-
-postcss-import@^15.1.0:
- version "15.1.0"
- resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70"
- integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==
+postcss-discard-comments@^7.0.4:
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-7.0.4.tgz#9aded15cf437d14ee02b7589ee911b780cd73ffb"
+ integrity sha512-6tCUoql/ipWwKtVP/xYiFf1U9QgJ0PUvxN7pTcsQ8Ns3Fnwq1pU5D5s1MhT/XySeLq6GXNvn37U46Ded0TckWg==
dependencies:
- postcss-value-parser "^4.0.0"
- read-cache "^1.0.0"
- resolve "^1.1.7"
+ postcss-selector-parser "^7.1.0"
-postcss-js@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2"
- integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==
- dependencies:
- camelcase-css "^2.0.1"
+postcss-discard-duplicates@^7.0.2:
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.2.tgz#9cf3e659d4f94b046eef6f93679490c0250a8e4e"
+ integrity sha512-eTonaQvPZ/3i1ASDHOKkYwAybiM45zFIc7KXils4mQmHLqIswXD9XNOKEVxtTFnsmwYzF66u4LMgSr0abDlh5w==
-postcss-load-config@^4.0.1:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3"
- integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==
- dependencies:
- lilconfig "^3.0.0"
- yaml "^2.3.4"
+postcss-discard-empty@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-7.0.1.tgz#b6c57e8b5c69023169abea30dceb93f98a2ffd9f"
+ integrity sha512-cFrJKZvcg/uxB6Ijr4l6qmn3pXQBna9zyrPC+sK0zjbkDUZew+6xDltSF7OeB7rAtzaaMVYSdbod+sZOCWnMOg==
-postcss-merge-longhand@^6.0.5:
- version "6.0.5"
- resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz#ba8a8d473617c34a36abbea8dda2b215750a065a"
- integrity sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==
+postcss-discard-overridden@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-7.0.1.tgz#bd9c9bc5e4548d3b6e67e7f8d64f2c9d745ae2a0"
+ integrity sha512-7c3MMjjSZ/qYrx3uc1940GSOzN1Iqjtlqe8uoSg+qdVPYyRb0TILSqqmtlSFuE4mTDECwsm397Ya7iXGzfF7lg==
+
+postcss-merge-longhand@^7.0.5:
+ version "7.0.5"
+ resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-7.0.5.tgz#e1b126e92f583815482e8b1e82c47d2435a20421"
+ integrity sha512-Kpu5v4Ys6QI59FxmxtNB/iHUVDn9Y9sYw66D6+SZoIk4QTz1prC4aYkhIESu+ieG1iylod1f8MILMs1Em3mmIw==
dependencies:
postcss-value-parser "^4.2.0"
- stylehacks "^6.1.1"
+ stylehacks "^7.0.5"
-postcss-merge-rules@^6.1.1:
- version "6.1.1"
- resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz#7aa539dceddab56019469c0edd7d22b64c3dea9d"
- integrity sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==
+postcss-merge-rules@^7.0.6:
+ version "7.0.6"
+ resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-7.0.6.tgz#f5a0cabf6423b1370ba76d5363dfe44776f1e619"
+ integrity sha512-2jIPT4Tzs8K87tvgCpSukRQ2jjd+hH6Bb8rEEOUDmmhOeTcqDg5fEFK8uKIu+Pvc3//sm3Uu6FRqfyv7YF7+BQ==
dependencies:
- browserslist "^4.23.0"
+ browserslist "^4.25.1"
caniuse-api "^3.0.0"
- cssnano-utils "^4.0.2"
- postcss-selector-parser "^6.0.16"
+ cssnano-utils "^5.0.1"
+ postcss-selector-parser "^7.1.0"
-postcss-minify-font-values@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz#a0e574c02ee3f299be2846369211f3b957ea4c59"
- integrity sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==
+postcss-minify-font-values@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-7.0.1.tgz#6fb4770131b31fd5a2014bd84e32f386a3406664"
+ integrity sha512-2m1uiuJeTplll+tq4ENOQSzB8LRnSUChBv7oSyFLsJRtUgAAJGP6LLz0/8lkinTgxrmJSPOEhgY1bMXOQ4ZXhQ==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-minify-gradients@^6.0.3:
- version "6.0.3"
- resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz#ca3eb55a7bdb48a1e187a55c6377be918743dbd6"
- integrity sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==
+postcss-minify-gradients@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-7.0.1.tgz#933cb642dd00df397237c17194f37dcbe4cad739"
+ integrity sha512-X9JjaysZJwlqNkJbUDgOclyG3jZEpAMOfof6PUZjPnPrePnPG62pS17CjdM32uT1Uq1jFvNSff9l7kNbmMSL2A==
dependencies:
colord "^2.9.3"
- cssnano-utils "^4.0.2"
+ cssnano-utils "^5.0.1"
postcss-value-parser "^4.2.0"
-postcss-minify-params@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz#54551dec77b9a45a29c3cb5953bf7325a399ba08"
- integrity sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==
+postcss-minify-params@^7.0.4:
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-7.0.4.tgz#665848c0674c5ff59e054e63e052339738cbc6a3"
+ integrity sha512-3OqqUddfH8c2e7M35W6zIwv7jssM/3miF9cbCSb1iJiWvtguQjlxZGIHK9JRmc8XAKmE2PFGtHSM7g/VcW97sw==
dependencies:
- browserslist "^4.23.0"
- cssnano-utils "^4.0.2"
+ browserslist "^4.25.1"
+ cssnano-utils "^5.0.1"
postcss-value-parser "^4.2.0"
-postcss-minify-selectors@^6.0.4:
- version "6.0.4"
- resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz#197f7d72e6dd19eed47916d575d69dc38b396aff"
- integrity sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==
- dependencies:
- postcss-selector-parser "^6.0.16"
-
-postcss-nested@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c"
- integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==
- dependencies:
- postcss-selector-parser "^6.0.11"
-
-postcss-nesting@^12.1.1:
- version "12.1.2"
- resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-12.1.2.tgz#e7aba3f73b86a0e944e84798d481b54dcfce802e"
- integrity sha512-FUmTHGDNundodutB4PUBxt/EPuhgtpk8FJGRsBhOuy+6FnkR2A8RZWIsyyy6XmhvX2DZQQWIkvu+HB4IbJm+Ew==
+postcss-minify-selectors@^7.0.5:
+ version "7.0.5"
+ resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-7.0.5.tgz#d8c89eeeb208705ab4127a464d1f54a3bc22cae3"
+ integrity sha512-x2/IvofHcdIrAm9Q+p06ZD1h6FPcQ32WtCRVodJLDR+WMn8EVHI1kvLxZuGKz/9EY5nAmI6lIQIrpo4tBy5+ug==
dependencies:
- "@csstools/selector-resolve-nested" "^1.1.0"
- "@csstools/selector-specificity" "^3.0.3"
- postcss-selector-parser "^6.0.13"
+ cssesc "^3.0.0"
+ postcss-selector-parser "^7.1.0"
-postcss-normalize-charset@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz#1ec25c435057a8001dac942942a95ffe66f721e1"
- integrity sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==
+postcss-normalize-charset@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-7.0.1.tgz#bccc3f7c5f4440883608eea8b444c8f41ce55ff6"
+ integrity sha512-sn413ofhSQHlZFae//m9FTOfkmiZ+YQXsbosqOWRiVQncU2BA3daX3n0VF3cG6rGLSFVc5Di/yns0dFfh8NFgQ==
-postcss-normalize-display-values@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz#54f02764fed0b288d5363cbb140d6950dbbdd535"
- integrity sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==
+postcss-normalize-display-values@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-7.0.1.tgz#feb40277d89a7f677b67a84cac999f0306e38235"
+ integrity sha512-E5nnB26XjSYz/mGITm6JgiDpAbVuAkzXwLzRZtts19jHDUBFxZ0BkXAehy0uimrOjYJbocby4FVswA/5noOxrQ==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-normalize-positions@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz#e982d284ec878b9b819796266f640852dbbb723a"
- integrity sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==
+postcss-normalize-positions@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-7.0.1.tgz#c771c0d33034455205f060b999d8557c2308d22c"
+ integrity sha512-pB/SzrIP2l50ZIYu+yQZyMNmnAcwyYb9R1fVWPRxm4zcUFCY2ign7rcntGFuMXDdd9L2pPNUgoODDk91PzRZuQ==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-normalize-repeat-style@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz#f8006942fd0617c73f049dd8b6201c3a3040ecf3"
- integrity sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==
+postcss-normalize-repeat-style@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-7.0.1.tgz#05fe4d838eedbd996436c5cab78feef9bb1ae57b"
+ integrity sha512-NsSQJ8zj8TIDiF0ig44Byo3Jk9e4gNt9x2VIlJudnQQ5DhWAHJPF4Tr1ITwyHio2BUi/I6Iv0HRO7beHYOloYQ==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-normalize-string@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz#e3cc6ad5c95581acd1fc8774b309dd7c06e5e363"
- integrity sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==
+postcss-normalize-string@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-7.0.1.tgz#0f111e7b5dfb6de6ab19f09d9e1c16fabeee232f"
+ integrity sha512-QByrI7hAhsoze992kpbMlJSbZ8FuCEc1OT9EFbZ6HldXNpsdpZr+YXC5di3UEv0+jeZlHbZcoCADgb7a+lPmmQ==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-normalize-timing-functions@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz#40cb8726cef999de984527cbd9d1db1f3e9062c0"
- integrity sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==
+postcss-normalize-timing-functions@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-7.0.1.tgz#7b645a36f113fec49d95d56386c9980316c71216"
+ integrity sha512-bHifyuuSNdKKsnNJ0s8fmfLMlvsQwYVxIoUBnowIVl2ZAdrkYQNGVB4RxjfpvkMjipqvbz0u7feBZybkl/6NJg==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-normalize-unicode@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz#aaf8bbd34c306e230777e80f7f12a4b7d27ce06e"
- integrity sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==
+postcss-normalize-unicode@^7.0.4:
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.4.tgz#9fd8d1d1e931b60ed946556e4d657b5879e3ee00"
+ integrity sha512-LvIURTi1sQoZqj8mEIE8R15yvM+OhbR1avynMtI9bUzj5gGKR/gfZFd8O7VMj0QgJaIFzxDwxGl/ASMYAkqO8g==
dependencies:
- browserslist "^4.23.0"
+ browserslist "^4.25.1"
postcss-value-parser "^4.2.0"
-postcss-normalize-url@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz#292792386be51a8de9a454cb7b5c58ae22db0f79"
- integrity sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==
+postcss-normalize-url@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-7.0.1.tgz#d6471a22b6747ce93d7038c16eb9f1ba8b307e25"
+ integrity sha512-sUcD2cWtyK1AOL/82Fwy1aIVm/wwj5SdZkgZ3QiUzSzQQofrbq15jWJ3BA7Z+yVRwamCjJgZJN0I9IS7c6tgeQ==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-normalize-whitespace@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz#fbb009e6ebd312f8b2efb225c2fcc7cf32b400cd"
- integrity sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==
+postcss-normalize-whitespace@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-7.0.1.tgz#ab8e9ff1f3213f3f3851c0a7d0e4ce4716777cea"
+ integrity sha512-vsbgFHMFQrJBJKrUFJNZ2pgBeBkC2IvvoHjz1to0/0Xk7sII24T0qFOiJzG6Fu3zJoq/0yI4rKWi7WhApW+EFA==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-ordered-values@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz#366bb663919707093451ab70c3f99c05672aaae5"
- integrity sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==
+postcss-ordered-values@^7.0.2:
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-7.0.2.tgz#0e803fbb9601e254270481772252de9a8c905f48"
+ integrity sha512-AMJjt1ECBffF7CEON/Y0rekRLS6KsePU6PRP08UqYW4UGFRnTXNrByUzYK1h8AC7UWTZdQ9O3Oq9kFIhm0SFEw==
dependencies:
- cssnano-utils "^4.0.2"
+ cssnano-utils "^5.0.1"
postcss-value-parser "^4.2.0"
-postcss-reduce-initial@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz#4401297d8e35cb6e92c8e9586963e267105586ba"
- integrity sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==
+postcss-reduce-initial@^7.0.4:
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-7.0.4.tgz#ebe8b4c85990efaa5a1accfc77f41f23cfa66187"
+ integrity sha512-rdIC9IlMBn7zJo6puim58Xd++0HdbvHeHaPgXsimMfG1ijC5A9ULvNLSE0rUKVJOvNMcwewW4Ga21ngyJjY/+Q==
dependencies:
- browserslist "^4.23.0"
+ browserslist "^4.25.1"
caniuse-api "^3.0.0"
-postcss-reduce-transforms@^6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz#6fa2c586bdc091a7373caeee4be75a0f3e12965d"
- integrity sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==
+postcss-reduce-transforms@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-7.0.1.tgz#f87111264b0dfa07e1f708d7e6401578707be5d6"
+ integrity sha512-MhyEbfrm+Mlp/36hvZ9mT9DaO7dbncU0CvWI8V93LRkY6IYlu38OPg3FObnuKTUxJ4qA8HpurdQOo5CyqqO76g==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-selector-parser@6.0.10:
- version "6.0.10"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d"
- integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==
+postcss-selector-parser@^6.0.15:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de"
+ integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==
dependencies:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
-postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.13, postcss-selector-parser@^6.0.16:
- version "6.0.16"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz#3b88b9f5c5abd989ef4e2fc9ec8eedd34b20fb04"
- integrity sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==
+postcss-selector-parser@^7.0.0, postcss-selector-parser@^7.1.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz#4d6af97eba65d73bc4d84bcb343e865d7dd16262"
+ integrity sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==
dependencies:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
-postcss-svgo@^6.0.3:
- version "6.0.3"
- resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-6.0.3.tgz#1d6e180d6df1fa8a3b30b729aaa9161e94f04eaa"
- integrity sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==
+postcss-svgo@^7.1.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-7.1.0.tgz#7eb6764a643ac2699bf56eef6d2676d428ed4542"
+ integrity sha512-KnAlfmhtoLz6IuU3Sij2ycusNs4jPW+QoFE5kuuUOK8awR6tMxZQrs5Ey3BUz7nFCzT3eqyFgqkyrHiaU2xx3w==
dependencies:
postcss-value-parser "^4.2.0"
- svgo "^3.2.0"
+ svgo "^4.0.0"
-postcss-unique-selectors@^6.0.4:
- version "6.0.4"
- resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz#983ab308896b4bf3f2baaf2336e14e52c11a2088"
- integrity sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==
+postcss-unique-selectors@^7.0.4:
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-7.0.4.tgz#625ad1c808bdf322fab6c027ae8d4f2637140995"
+ integrity sha512-pmlZjsmEAG7cHd7uK3ZiNSW6otSZ13RHuZ/4cDN/bVglS5EpF2r2oxY99SuOHa8m7AWoBCelTS3JPpzsIs8skQ==
dependencies:
- postcss-selector-parser "^6.0.16"
+ postcss-selector-parser "^7.1.0"
-postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.2.0:
+postcss-value-parser@^4.0.2, postcss-value-parser@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
-postcss@^8.4.23, postcss@^8.4.38:
- version "8.4.38"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e"
- integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==
+postcss@^8.4.41, postcss@^8.5.6:
+ version "8.5.6"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.6.tgz#2825006615a619b4f62a9e7426cc120b349a8f3c"
+ integrity sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==
dependencies:
- nanoid "^3.3.7"
- picocolors "^1.0.0"
- source-map-js "^1.2.0"
+ nanoid "^3.3.11"
+ picocolors "^1.1.1"
+ source-map-js "^1.2.1"
-pretty-bytes@^6.1.1:
- version "6.1.1"
- resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-6.1.1.tgz#38cd6bb46f47afbf667c202cfc754bffd2016a3b"
- integrity sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==
+prebuild-install@^7.1.1:
+ version "7.1.3"
+ resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.3.tgz#d630abad2b147443f20a212917beae68b8092eec"
+ integrity sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==
+ dependencies:
+ detect-libc "^2.0.0"
+ expand-template "^2.0.3"
+ github-from-package "0.0.0"
+ minimist "^1.2.3"
+ mkdirp-classic "^0.5.3"
+ napi-build-utils "^2.0.0"
+ node-abi "^3.3.0"
+ pump "^3.0.0"
+ rc "^1.2.7"
+ simple-get "^4.0.0"
+ tar-fs "^2.0.0"
+ tunnel-agent "^0.6.0"
-proc-log@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-3.0.0.tgz#fb05ef83ccd64fd7b20bbe9c8c1070fc08338dd8"
- integrity sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==
+prelude-ls@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
+ integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
-proc-log@^4.0.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-4.2.0.tgz#b6f461e4026e75fdfe228b265e9f7a00779d7034"
- integrity sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==
+prettier@^3.2.5:
+ version "3.6.2"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.6.2.tgz#ccda02a1003ebbb2bfda6f83a074978f608b9393"
+ integrity sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==
+
+pretty-bytes@^7.1.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-7.1.0.tgz#d788c9906241dbdcd4defab51b6d7470243db9bd"
+ integrity sha512-nODzvTiYVRGRqAOvE84Vk5JDPyyxsVk0/fbA/bq7RqlnhksGpset09XTxbpvLTIjoaF7K8Z8DG8yHtKGTPSYRw==
+
+pretty-ms@^9.2.0:
+ version "9.3.0"
+ resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-9.3.0.tgz#dd2524fcb3c326b4931b2272dfd1e1a8ed9a9f5a"
+ integrity sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==
+ dependencies:
+ parse-ms "^4.0.0"
process-nextick-args@~2.0.0:
version "2.0.1"
@@ -6859,24 +7625,6 @@ process@^0.11.10:
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
-progress@1.1.8:
- version "1.1.8"
- resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
- integrity sha512-UdA8mJ4weIkUBO224tIarHzuHs4HuYiJvsuGT7j/SPQiUJVjYvNDBIPa0hAorduOfjGohB/qHWRa/lrrWX/mXw==
-
-promise-inflight@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
- integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==
-
-promise-retry@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22"
- integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==
- dependencies:
- err-code "^2.0.2"
- retry "^0.12.0"
-
prompts@^2.4.2:
version "2.4.2"
resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069"
@@ -6885,56 +7633,45 @@ prompts@^2.4.2:
kleur "^3.0.3"
sisteransi "^1.0.5"
-property-information@^6.0.0, property-information@^6.4.1:
+property-information@^6.0.0:
version "6.5.0"
resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.5.0.tgz#6212fbb52ba757e92ef4fb9d657563b933b7ffec"
integrity sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==
+property-information@^7.0.0, property-information@^7.1.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/property-information/-/property-information-7.1.0.tgz#b622e8646e02b580205415586b40804d3e8bfd5d"
+ integrity sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==
+
protocols@^2.0.0, protocols@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.1.tgz#8f155da3fc0f32644e83c5782c8e8212ccf70a86"
- integrity sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.2.tgz#822e8fcdcb3df5356538b3e91bfd890b067fd0a4"
+ integrity sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==
-ps-tree@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd"
- integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==
+pump@^3.0.0:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.3.tgz#151d979f1a29668dc0025ec589a455b53282268d"
+ integrity sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==
dependencies:
- event-stream "=3.3.4"
+ end-of-stream "^1.1.0"
+ once "^1.3.1"
-psl@^1.1.28:
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7"
- integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==
-
-punycode@^2.1.0, punycode@^2.1.1:
+punycode@^2.1.0:
version "2.3.1"
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5"
integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==
-qs@~6.5.2:
- version "6.5.3"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad"
- integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==
+quansync@^0.2.11:
+ version "0.2.11"
+ resolved "https://registry.yarnpkg.com/quansync/-/quansync-0.2.11.tgz#f9c3adda2e1272e4f8cf3f1457b04cbdb4ee692a"
+ integrity sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==
queue-microtask@^1.2.2:
version "1.2.3"
resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
-queue-tick@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/queue-tick/-/queue-tick-1.0.1.tgz#f6f07ac82c1fd60f82e098b417a80e52f1f4c142"
- integrity sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==
-
-queue@6.0.2:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/queue/-/queue-6.0.2.tgz#b91525283e2315c7553d2efa18d83e76432fed65"
- integrity sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==
- dependencies:
- inherits "~2.0.3"
-
-radix3@^1.1.0, radix3@^1.1.2:
+radix3@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/radix3/-/radix3-1.1.2.tgz#fd27d2af3896c6bf4bcdfab6427c69c2afc69ec0"
integrity sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==
@@ -6946,12 +7683,12 @@ randombytes@^2.1.0:
dependencies:
safe-buffer "^5.1.0"
-range-parser@~1.2.1:
+range-parser@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
-rc9@^2.1.1, rc9@^2.1.2:
+rc9@^2.1.2:
version "2.1.2"
resolved "https://registry.yarnpkg.com/rc9/-/rc9-2.1.2.tgz#6282ff638a50caa0a91a31d76af4a0b9cbd1080d"
integrity sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==
@@ -6959,19 +7696,15 @@ rc9@^2.1.1, rc9@^2.1.2:
defu "^6.1.4"
destr "^2.0.3"
-read-cache@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774"
- integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==
- dependencies:
- pify "^2.3.0"
-
-read@1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/read/-/read-1.0.5.tgz#007a3d169478aa710a491727e453effb92e76203"
- integrity sha512-hDLATrzYLoMu23c/69pMC6u3fO3Y0qLTIygJkEZHLOn+AO2gSapu6QgrgwX9ehyVtaRoZVZbF4IuiZPPRdGgdg==
+rc@^1.2.7:
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
+ integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
dependencies:
- mute-stream "~0.0.4"
+ deep-extend "^0.6.0"
+ ini "~1.3.0"
+ minimist "^1.2.0"
+ strip-json-comments "~2.0.1"
readable-stream@^2.0.5:
version "2.3.8"
@@ -6986,7 +7719,7 @@ readable-stream@^2.0.5:
string_decoder "~1.1.1"
util-deprecate "~1.0.1"
-readable-stream@^3.6.0:
+readable-stream@^3.1.1, readable-stream@^3.4.0:
version "3.6.2"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
@@ -6996,9 +7729,9 @@ readable-stream@^3.6.0:
util-deprecate "^1.0.1"
readable-stream@^4.0.0:
- version "4.5.2"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.5.2.tgz#9e7fc4c45099baeed934bff6eb97ba6cf2729e09"
- integrity sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==
+ version "4.7.0"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.7.0.tgz#cedbd8a1146c13dfff8dab14068028d58c15ac91"
+ integrity sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==
dependencies:
abort-controller "^3.0.0"
buffer "^6.0.3"
@@ -7013,6 +7746,11 @@ readdir-glob@^1.1.2:
dependencies:
minimatch "^5.1.0"
+readdirp@^4.0.1:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.1.2.tgz#eb85801435fbf2a7ee58f19e0921b068fc69948d"
+ integrity sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==
+
readdirp@~3.6.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
@@ -7032,6 +7770,52 @@ redis-parser@^3.0.0:
dependencies:
redis-errors "^1.0.0"
+refa@^0.12.0, refa@^0.12.1:
+ version "0.12.1"
+ resolved "https://registry.yarnpkg.com/refa/-/refa-0.12.1.tgz#dac13c4782dc22b6bae6cce81a2b863888ea39c6"
+ integrity sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==
+ dependencies:
+ "@eslint-community/regexpp" "^4.8.0"
+
+regex-recursion@^6.0.2:
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/regex-recursion/-/regex-recursion-6.0.2.tgz#a0b1977a74c87f073377b938dbedfab2ea582b33"
+ integrity sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==
+ dependencies:
+ regex-utilities "^2.3.0"
+
+regex-utilities@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/regex-utilities/-/regex-utilities-2.3.0.tgz#87163512a15dce2908cf079c8960d5158ff43280"
+ integrity sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==
+
+regex@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/regex/-/regex-6.0.1.tgz#282fa4435d0c700b09c0eb0982b602e05ab6a34f"
+ integrity sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==
+ dependencies:
+ regex-utilities "^2.3.0"
+
+regexp-ast-analysis@^0.7.0, regexp-ast-analysis@^0.7.1:
+ version "0.7.1"
+ resolved "https://registry.yarnpkg.com/regexp-ast-analysis/-/regexp-ast-analysis-0.7.1.tgz#c0e24cb2a90f6eadd4cbaaba129317e29d29c482"
+ integrity sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==
+ dependencies:
+ "@eslint-community/regexpp" "^4.8.0"
+ refa "^0.12.1"
+
+regexp-tree@^0.1.27:
+ version "0.1.27"
+ resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz#2198f0ef54518ffa743fe74d983b56ffd631b6cd"
+ integrity sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==
+
+regjsparser@^0.12.0:
+ version "0.12.0"
+ resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.12.0.tgz#0e846df6c6530586429377de56e0475583b088dc"
+ integrity sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==
+ dependencies:
+ jsesc "~3.0.2"
+
rehype-external-links@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/rehype-external-links/-/rehype-external-links-3.0.0.tgz#2b28b5cda1932f83f045b6f80a3e1b15f168c6f6"
@@ -7044,6 +7828,14 @@ rehype-external-links@^3.0.0:
space-separated-tokens "^2.0.0"
unist-util-visit "^5.0.0"
+rehype-minify-whitespace@^6.0.0, rehype-minify-whitespace@^6.0.2:
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/rehype-minify-whitespace/-/rehype-minify-whitespace-6.0.2.tgz#7dd234ce0775656ce6b6b0aad0a6093de29b2278"
+ integrity sha512-Zk0pyQ06A3Lyxhe9vGtOtzz3Z0+qZ5+7icZ/PL/2x1SHPbKao5oB/g/rlc6BCTajqBb33JcOe71Ye1oFsuYbnw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-minify-whitespace "^1.0.0"
+
rehype-raw@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/rehype-raw/-/rehype-raw-7.0.0.tgz#59d7348fd5dbef3807bbaa1d443efd2dd85ecee4"
@@ -7053,6 +7845,17 @@ rehype-raw@^7.0.0:
hast-util-raw "^9.0.0"
vfile "^6.0.0"
+rehype-remark@^10.0.1:
+ version "10.0.1"
+ resolved "https://registry.yarnpkg.com/rehype-remark/-/rehype-remark-10.0.1.tgz#f669fa68cfb8b5baaf4fa95476a923516111a43b"
+ integrity sha512-EmDndlb5NVwXGfUa4c9GPK+lXeItTilLhE6ADSaQuHr4JUlKw9MidzGzx4HpqZrNCt6vnHmEifXQiiA+CEnjYQ==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@types/mdast" "^4.0.0"
+ hast-util-to-mdast "^10.0.0"
+ unified "^11.0.0"
+ vfile "^6.0.0"
+
rehype-slug@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/rehype-slug/-/rehype-slug-6.0.0.tgz#1d21cf7fc8a83ef874d873c15e6adaee6344eaf1"
@@ -7064,38 +7867,70 @@ rehype-slug@^6.0.0:
hast-util-to-string "^3.0.0"
unist-util-visit "^5.0.0"
-rehype-sort-attribute-values@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/rehype-sort-attribute-values/-/rehype-sort-attribute-values-5.0.0.tgz#044ef3f0fbe9ddde0b63cf0dc53257b36fa3d990"
- integrity sha512-dQdHdCIRnpiU+BkrLSqH+aM4lWJyLqGzv49KvH4gHj+JxYwNqvGhoTXckS3AJu4V9ZutwsTcawP0pC7PhwX0tQ==
+rehype-sort-attribute-values@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/rehype-sort-attribute-values/-/rehype-sort-attribute-values-5.0.1.tgz#0c77507d178c5788d4899409f42220040877476f"
+ integrity sha512-lU3ABJO5frbUgV132YS6SL7EISf//irIm9KFMaeu5ixHfgWf6jhe+09Uf/Ef8pOYUJWKOaQJDRJGCXs6cNsdsQ==
dependencies:
"@types/hast" "^3.0.0"
hast-util-is-element "^3.0.0"
unist-util-visit "^5.0.0"
-rehype-sort-attributes@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/rehype-sort-attributes/-/rehype-sort-attributes-5.0.0.tgz#59e7f976d27001682373ac080774cd1386eb446b"
- integrity sha512-6tJUH4xHFcdO85CZRwAcEtHNCzjZ9V9S0VZLgo1pzbN04qy8jiVCZ3oAxDmBVG3Rth5b1xFTDet5WG/UYZeJLQ==
+rehype-sort-attributes@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/rehype-sort-attributes/-/rehype-sort-attributes-5.0.1.tgz#750daa9aa57c30b8e571c2c8a8a30e47f9d6d2cd"
+ integrity sha512-Bxo+AKUIELcnnAZwJDt5zUDDRpt4uzhfz9d0PVGhcxYWsbFj5Cv35xuWxu5r1LeYNFNhgGqsr9Q2QiIOM/Qctg==
dependencies:
"@types/hast" "^3.0.0"
unist-util-visit "^5.0.0"
-remark-emoji@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/remark-emoji/-/remark-emoji-4.0.1.tgz#671bfda668047689e26b2078c7356540da299f04"
- integrity sha512-fHdvsTR1dHkWKev9eNyhTo4EFwbUvJ8ka9SgeWkMPYFX4WoI7ViVBms3PjlQYgw5TLvNQso3GUB/b/8t3yo+dg==
+reka-ui@2.5.1:
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/reka-ui/-/reka-ui-2.5.1.tgz#4623b9ad0281d1747b76dffdb620496a92f7ac1d"
+ integrity sha512-QJGB3q21wQ1Kw28HhhNDpjfFe8qpePX1gK4FTBRd68XTh9aEnhR5bTJnlV0jxi8FBPh0xivZBeNFUc3jiGx7mQ==
+ dependencies:
+ "@floating-ui/dom" "^1.6.13"
+ "@floating-ui/vue" "^1.1.6"
+ "@internationalized/date" "^3.5.0"
+ "@internationalized/number" "^3.5.0"
+ "@tanstack/vue-virtual" "^3.12.0"
+ "@vueuse/core" "^12.5.0"
+ "@vueuse/shared" "^12.5.0"
+ aria-hidden "^1.2.4"
+ defu "^6.1.4"
+ ohash "^2.0.11"
+
+reka-ui@^2.0.0:
+ version "2.6.0"
+ resolved "https://registry.yarnpkg.com/reka-ui/-/reka-ui-2.6.0.tgz#3b96712744decb9da8f4b1af79d16a499c84b826"
+ integrity sha512-NrGMKrABD97l890mFS3TNUzB0BLUfbL3hh0NjcJRIUSUljb288bx3Mzo31nOyUcdiiW0HqFGXJwyCBh9cWgb0w==
+ dependencies:
+ "@floating-ui/dom" "^1.6.13"
+ "@floating-ui/vue" "^1.1.6"
+ "@internationalized/date" "^3.5.0"
+ "@internationalized/number" "^3.5.0"
+ "@tanstack/vue-virtual" "^3.12.0"
+ "@vueuse/core" "^12.5.0"
+ "@vueuse/shared" "^12.5.0"
+ aria-hidden "^1.2.4"
+ defu "^6.1.4"
+ ohash "^2.0.11"
+
+remark-emoji@^5.0.2:
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/remark-emoji/-/remark-emoji-5.0.2.tgz#2a66df174806ed2dc68c329d475b7d993d2d4506"
+ integrity sha512-IyIqGELcyK5AVdLFafoiNww+Eaw/F+rGrNSXoKucjo95uL267zrddgxGM83GN1wFIb68pyDuAsY3m5t2Cav1pQ==
dependencies:
- "@types/mdast" "^4.0.2"
+ "@types/mdast" "^4.0.4"
emoticon "^4.0.1"
mdast-util-find-and-replace "^3.0.1"
- node-emoji "^2.1.0"
+ node-emoji "^2.1.3"
unified "^11.0.4"
-remark-gfm@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/remark-gfm/-/remark-gfm-4.0.0.tgz#aea777f0744701aa288b67d28c43565c7e8c35de"
- integrity sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==
+remark-gfm@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/remark-gfm/-/remark-gfm-4.0.1.tgz#33227b2a74397670d357bf05c098eaf8513f0d6b"
+ integrity sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==
dependencies:
"@types/mdast" "^4.0.0"
mdast-util-gfm "^3.0.0"
@@ -7104,29 +7939,53 @@ remark-gfm@^4.0.0:
remark-stringify "^11.0.0"
unified "^11.0.0"
-remark-mdc@^3.1.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/remark-mdc/-/remark-mdc-3.2.0.tgz#268a4368ed79ac6783a87a0797937ce55a04cb7f"
- integrity sha512-zRi5frIC3O/bcxXgUPHfQ3lyRBKPtokrGnsOPvNrt9bqp4EfjPtduzcWgO4R1WeHYUnvl0zeBStvGsFkJIZf+Q==
+remark-mdc@^3.6.0:
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/remark-mdc/-/remark-mdc-3.7.0.tgz#3d41e9ef25c1e4cee0d299720663319e5ce57f08"
+ integrity sha512-6XmnEYc4u3lgBf79M6I73nmKhwJCXn5J53BkzIplqjUK/29GubdpYBCF+oH2WQFvNy/70wuf365xwOSUxt397g==
dependencies:
- "@types/mdast" "^4.0.3"
- "@types/unist" "^3.0.2"
+ "@types/mdast" "^4.0.4"
+ "@types/unist" "^3.0.3"
flat "^6.0.1"
- js-yaml "^4.1.0"
- mdast-util-from-markdown "^2.0.0"
- mdast-util-to-markdown "^2.1.0"
- micromark "^4.0.0"
- micromark-core-commonmark "^2.0.0"
- micromark-factory-space "^2.0.0"
- micromark-factory-whitespace "^2.0.0"
- micromark-util-character "^2.1.0"
- micromark-util-types "^2.0.0"
- parse-entities "^4.0.1"
+ mdast-util-from-markdown "^2.0.2"
+ mdast-util-to-markdown "^2.1.2"
+ micromark "^4.0.2"
+ micromark-core-commonmark "^2.0.3"
+ micromark-factory-space "^2.0.1"
+ micromark-factory-whitespace "^2.0.1"
+ micromark-util-character "^2.1.1"
+ micromark-util-types "^2.0.2"
+ parse-entities "^4.0.2"
scule "^1.3.0"
- stringify-entities "^4.0.3"
- unified "^11.0.4"
+ stringify-entities "^4.0.4"
+ unified "^11.0.5"
+ unist-util-visit "^5.0.0"
+ unist-util-visit-parents "^6.0.1"
+ yaml "^2.8.1"
+
+remark-mdc@v3.6.0:
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/remark-mdc/-/remark-mdc-3.6.0.tgz#5160d72e6812b9b0f2730c6c23d88e1e8999f077"
+ integrity sha512-f+zgMYMBChoZJnpWM2AkfMwIC2sS5+vFQQdOVho58tUOh5lDP9SnZj2my8PeXBgt8MFQ+jc97vFFzWH21JXICQ==
+ dependencies:
+ "@types/mdast" "^4.0.4"
+ "@types/unist" "^3.0.3"
+ flat "^6.0.1"
+ mdast-util-from-markdown "^2.0.2"
+ mdast-util-to-markdown "^2.1.2"
+ micromark "^4.0.2"
+ micromark-core-commonmark "^2.0.3"
+ micromark-factory-space "^2.0.1"
+ micromark-factory-whitespace "^2.0.1"
+ micromark-util-character "^2.1.1"
+ micromark-util-types "^2.0.2"
+ parse-entities "^4.0.2"
+ scule "^1.3.0"
+ stringify-entities "^4.0.4"
+ unified "^11.0.5"
unist-util-visit "^5.0.0"
unist-util-visit-parents "^6.0.1"
+ yaml "^2.7.1"
remark-parse@^11.0.0:
version "11.0.0"
@@ -7138,10 +7997,10 @@ remark-parse@^11.0.0:
micromark-util-types "^2.0.0"
unified "^11.0.0"
-remark-rehype@^11.1.0:
- version "11.1.0"
- resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-11.1.0.tgz#d5f264f42bcbd4d300f030975609d01a1697ccdc"
- integrity sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==
+remark-rehype@^11.1.2:
+ version "11.1.2"
+ resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-11.1.2.tgz#2addaadda80ca9bd9aa0da763e74d16327683b37"
+ integrity sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==
dependencies:
"@types/hast" "^3.0.0"
"@types/mdast" "^4.0.0"
@@ -7158,165 +8017,104 @@ remark-stringify@^11.0.0:
mdast-util-to-markdown "^2.0.0"
unified "^11.0.0"
-replace-in-file@^6.1.0:
- version "6.3.5"
- resolved "https://registry.yarnpkg.com/replace-in-file/-/replace-in-file-6.3.5.tgz#ff956b0ab5bc96613207d603d197cd209400a654"
- integrity sha512-arB9d3ENdKva2fxRnSjwBEXfK1npgyci7ZZuwysgAp7ORjHSyxz6oqIjTEv8R0Ydl4Ll7uOAZXL4vbkhGIizCg==
- dependencies:
- chalk "^4.1.2"
- glob "^7.2.0"
- yargs "^17.2.1"
-
-request@^2.88.0:
- version "2.88.2"
- resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
- integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
- dependencies:
- aws-sign2 "~0.7.0"
- aws4 "^1.8.0"
- caseless "~0.12.0"
- combined-stream "~1.0.6"
- extend "~3.0.2"
- forever-agent "~0.6.1"
- form-data "~2.3.2"
- har-validator "~5.1.3"
- http-signature "~1.2.0"
- is-typedarray "~1.0.0"
- isstream "~0.1.2"
- json-stringify-safe "~5.0.1"
- mime-types "~2.1.19"
- oauth-sign "~0.9.0"
- performance-now "^2.1.0"
- qs "~6.5.2"
- safe-buffer "^5.1.2"
- tough-cookie "~2.5.0"
- tunnel-agent "^0.6.0"
- uuid "^3.3.2"
-
require-directory@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==
+resolve-from@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
+ integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
+
resolve-from@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
-resolve-path@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/resolve-path/-/resolve-path-1.4.0.tgz#c4bda9f5efb2fce65247873ab36bb4d834fe16f7"
- integrity sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==
- dependencies:
- http-errors "~1.6.2"
- path-is-absolute "1.0.1"
+resolve-pkg-maps@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f"
+ integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==
-resolve@^1.1.7, resolve@^1.22.1, resolve@^1.22.2:
- version "1.22.8"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
- integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
+resolve@^1.22.1:
+ version "1.22.11"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.11.tgz#aad857ce1ffb8bfa9b0b1ac29f1156383f68c262"
+ integrity sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==
dependencies:
- is-core-module "^2.13.0"
+ is-core-module "^2.16.1"
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
-restore-cursor@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
- integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==
- dependencies:
- onetime "^2.0.0"
- signal-exit "^3.0.2"
-
-retry@^0.12.0:
- version "0.12.0"
- resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
- integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==
+restructure@^3.0.0:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/restructure/-/restructure-3.0.2.tgz#e6b2fad214f78edee21797fa8160fef50eb9b49a"
+ integrity sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==
reusify@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
- integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
-
-rfdc@^1.3.1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.1.tgz#2b6d4df52dffe8bb346992a10ea9451f24373a8f"
- integrity sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==
-
-rimraf@2:
- version "2.7.1"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
- integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
- dependencies:
- glob "^7.1.3"
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz#0fe13b9522e1473f51b558ee796e08f11f9b489f"
+ integrity sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==
-rimraf@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
- integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
- dependencies:
- glob "^7.1.3"
+rfdc@^1.4.1:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz#778f76c4fb731d93414e8f925fbecf64cce7f6ca"
+ integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==
-rollup-plugin-visualizer@^5.12.0:
- version "5.12.0"
- resolved "https://registry.yarnpkg.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.12.0.tgz#661542191ce78ee4f378995297260d0c1efb1302"
- integrity sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==
+rollup-plugin-visualizer@^6.0.4:
+ version "6.0.5"
+ resolved "https://registry.yarnpkg.com/rollup-plugin-visualizer/-/rollup-plugin-visualizer-6.0.5.tgz#9cf774cff88f4ba2887c97354766b68931323280"
+ integrity sha512-9+HlNgKCVbJDs8tVtjQ43US12eqaiHyyiLMdBwQ7vSZPiHMysGNo2E88TAp1si5wx8NAoYriI2A5kuKfIakmJg==
dependencies:
- open "^8.4.0"
- picomatch "^2.3.1"
+ open "^8.0.0"
+ picomatch "^4.0.2"
source-map "^0.7.4"
yargs "^17.5.1"
-rollup@^4.13.0, rollup@^4.13.2:
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.17.1.tgz#df576a5b8f4aa4d1569770e9d1b7a52129fe98f9"
- integrity sha512-0gG94inrUtg25sB2V/pApwiv1lUb0bQ25FPNuzO89Baa+B+c0ccaaBKM5zkZV/12pUUdH+lWCSm9wmHqyocuVQ==
+rollup@^4.43.0, rollup@^4.52.4:
+ version "4.52.5"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.52.5.tgz#96982cdcaedcdd51b12359981f240f94304ec235"
+ integrity sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==
dependencies:
- "@types/estree" "1.0.5"
+ "@types/estree" "1.0.8"
optionalDependencies:
- "@rollup/rollup-android-arm-eabi" "4.17.1"
- "@rollup/rollup-android-arm64" "4.17.1"
- "@rollup/rollup-darwin-arm64" "4.17.1"
- "@rollup/rollup-darwin-x64" "4.17.1"
- "@rollup/rollup-linux-arm-gnueabihf" "4.17.1"
- "@rollup/rollup-linux-arm-musleabihf" "4.17.1"
- "@rollup/rollup-linux-arm64-gnu" "4.17.1"
- "@rollup/rollup-linux-arm64-musl" "4.17.1"
- "@rollup/rollup-linux-powerpc64le-gnu" "4.17.1"
- "@rollup/rollup-linux-riscv64-gnu" "4.17.1"
- "@rollup/rollup-linux-s390x-gnu" "4.17.1"
- "@rollup/rollup-linux-x64-gnu" "4.17.1"
- "@rollup/rollup-linux-x64-musl" "4.17.1"
- "@rollup/rollup-win32-arm64-msvc" "4.17.1"
- "@rollup/rollup-win32-ia32-msvc" "4.17.1"
- "@rollup/rollup-win32-x64-msvc" "4.17.1"
+ "@rollup/rollup-android-arm-eabi" "4.52.5"
+ "@rollup/rollup-android-arm64" "4.52.5"
+ "@rollup/rollup-darwin-arm64" "4.52.5"
+ "@rollup/rollup-darwin-x64" "4.52.5"
+ "@rollup/rollup-freebsd-arm64" "4.52.5"
+ "@rollup/rollup-freebsd-x64" "4.52.5"
+ "@rollup/rollup-linux-arm-gnueabihf" "4.52.5"
+ "@rollup/rollup-linux-arm-musleabihf" "4.52.5"
+ "@rollup/rollup-linux-arm64-gnu" "4.52.5"
+ "@rollup/rollup-linux-arm64-musl" "4.52.5"
+ "@rollup/rollup-linux-loong64-gnu" "4.52.5"
+ "@rollup/rollup-linux-ppc64-gnu" "4.52.5"
+ "@rollup/rollup-linux-riscv64-gnu" "4.52.5"
+ "@rollup/rollup-linux-riscv64-musl" "4.52.5"
+ "@rollup/rollup-linux-s390x-gnu" "4.52.5"
+ "@rollup/rollup-linux-x64-gnu" "4.52.5"
+ "@rollup/rollup-linux-x64-musl" "4.52.5"
+ "@rollup/rollup-openharmony-arm64" "4.52.5"
+ "@rollup/rollup-win32-arm64-msvc" "4.52.5"
+ "@rollup/rollup-win32-ia32-msvc" "4.52.5"
+ "@rollup/rollup-win32-x64-gnu" "4.52.5"
+ "@rollup/rollup-win32-x64-msvc" "4.52.5"
fsevents "~2.3.2"
run-applescript@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-7.0.0.tgz#e5a553c2bffd620e169d276c1cd8f1b64778fbeb"
- integrity sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==
-
-run-async@^2.2.0:
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
- integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-7.1.0.tgz#2e9e54c4664ec3106c5b5630e249d3d6595c4911"
+ integrity sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==
-run-parallel@^1.1.9:
+run-parallel@^1.1.9, run-parallel@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
dependencies:
queue-microtask "^1.2.2"
-rxjs@^6.4.0:
- version "6.6.7"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
- integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
- dependencies:
- tslib "^1.9.0"
-
-safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.2.0:
+safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@~5.2.0:
version "5.2.1"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
@@ -7326,11 +8124,6 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1:
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
-"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
- integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
-
satori-html@^0.3.2:
version "0.3.2"
resolved "https://registry.yarnpkg.com/satori-html/-/satori-html-0.3.2.tgz#9c3c10a5f910c063139953dfe7c6a87dfe48cc79"
@@ -7338,62 +8131,68 @@ satori-html@^0.3.2:
dependencies:
ultrahtml "^1.2.0"
-satori@0.10.9:
- version "0.10.9"
- resolved "https://registry.yarnpkg.com/satori/-/satori-0.10.9.tgz#efde2898ab4a5b09c072f0f4e112ac4a7d6a499c"
- integrity sha512-XU9EELUEZuioT4acLIpCXxHcFzrsC8muvg0MY28d+TlqwxbkTzBmWbw+3+hnCzXT7YZ0Qm8k3eXktDaEu+qmEw==
+satori@^0.15.2:
+ version "0.15.2"
+ resolved "https://registry.yarnpkg.com/satori/-/satori-0.15.2.tgz#99b497d35e7e3093645a5a08a1935573b7120420"
+ integrity sha512-vu/49vdc8MzV5jUchs3TIRDCOkOvMc1iJ11MrZvhg9tE4ziKIEIBjBZvies6a9sfM2vQ2gc3dXeu6rCK7AztHA==
dependencies:
"@shuding/opentype.js" "1.4.0-beta.0"
css-background-parser "^0.1.0"
css-box-shadow "1.0.0-3"
+ css-gradient-parser "^0.0.16"
css-to-react-native "^3.0.0"
- emoji-regex "^10.2.1"
+ emoji-regex-xs "^2.0.1"
escape-html "^1.0.3"
linebreak "^1.1.0"
parse-css-color "^0.2.1"
postcss-value-parser "^4.2.0"
yoga-wasm-web "^0.3.3"
-sax@^1.2.4:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.3.0.tgz#a5dbe77db3be05c9d1ee7785dbd3ea9de51593d0"
- integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==
+sax@^1.4.1:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz#44cc8988377f126304d3b3fc1010c733b929ef0f"
+ integrity sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==
+
+scslre@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/scslre/-/scslre-0.3.0.tgz#c3211e9bfc5547fc86b1eabaa34ed1a657060155"
+ integrity sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==
+ dependencies:
+ "@eslint-community/regexpp" "^4.8.0"
+ refa "^0.12.0"
+ regexp-ast-analysis "^0.7.0"
-scule@^1.0.0, scule@^1.1.1, scule@^1.2.0, scule@^1.3.0:
+scule@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/scule/-/scule-1.3.0.tgz#6efbd22fd0bb801bdcc585c89266a7d2daa8fbd3"
integrity sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==
-semver@^6.0.0, semver@^6.3.1:
+semver@^6.3.1:
version "6.3.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
-semver@^7.0.0, semver@^7.1.1, semver@^7.3.4, semver@^7.3.5, semver@^7.5.0, semver@^7.5.3, semver@^7.6.0:
- version "7.6.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d"
- integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==
- dependencies:
- lru-cache "^6.0.0"
+semver@^7.3.5, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3, semver@^7.7.2:
+ version "7.7.3"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz#4b5f4143d007633a8dc671cd0a6ef9147b8bb946"
+ integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==
-send@0.18.0:
- version "0.18.0"
- resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be"
- integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==
+send@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/send/-/send-1.2.0.tgz#32a7554fb777b831dfa828370f773a3808d37212"
+ integrity sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==
dependencies:
- debug "2.6.9"
- depd "2.0.0"
- destroy "1.2.0"
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- etag "~1.8.1"
- fresh "0.5.2"
- http-errors "2.0.0"
- mime "1.6.0"
- ms "2.1.3"
- on-finished "2.4.1"
- range-parser "~1.2.1"
- statuses "2.0.1"
+ debug "^4.3.5"
+ encodeurl "^2.0.0"
+ escape-html "^1.0.3"
+ etag "^1.8.1"
+ fresh "^2.0.0"
+ http-errors "^2.0.0"
+ mime-types "^3.0.1"
+ ms "^2.1.3"
+ on-finished "^2.4.1"
+ range-parser "^1.2.1"
+ statuses "^2.0.1"
serialize-javascript@^6.0.1:
version "6.0.2"
@@ -7402,38 +8201,42 @@ serialize-javascript@^6.0.1:
dependencies:
randombytes "^2.1.0"
-serve-placeholder@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/serve-placeholder/-/serve-placeholder-2.0.1.tgz#dfa741812f49dfea472a68c4f292dbc40d28389a"
- integrity sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==
+serve-placeholder@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/serve-placeholder/-/serve-placeholder-2.0.2.tgz#c5db17fb8e906687c275404eaeb29c0d93aacc36"
+ integrity sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==
dependencies:
- defu "^6.0.0"
+ defu "^6.1.4"
-serve-static@^1.15.0:
- version "1.15.0"
- resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540"
- integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==
+serve-static@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-2.2.0.tgz#9c02564ee259bdd2251b82d659a2e7e1938d66f9"
+ integrity sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==
dependencies:
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- parseurl "~1.3.3"
- send "0.18.0"
-
-set-blocking@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
- integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==
-
-setprototypeof@1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
- integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==
+ encodeurl "^2.0.0"
+ escape-html "^1.0.3"
+ parseurl "^1.3.3"
+ send "^1.2.0"
setprototypeof@1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424"
integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==
+sharp@^0.32.6:
+ version "0.32.6"
+ resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.32.6.tgz#6ad30c0b7cd910df65d5f355f774aa4fce45732a"
+ integrity sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==
+ dependencies:
+ color "^4.2.3"
+ detect-libc "^2.0.2"
+ node-addon-api "^6.1.0"
+ prebuild-install "^7.1.1"
+ semver "^7.5.4"
+ simple-get "^4.0.1"
+ tar-fs "^3.0.4"
+ tunnel-agent "^0.6.0"
+
shebang-command@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
@@ -7446,58 +8249,64 @@ shebang-regex@^3.0.0:
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
-shell-quote@^1.8.1:
- version "1.8.1"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680"
- integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==
-
-shiki-es@^0.14.0:
- version "0.14.0"
- resolved "https://registry.yarnpkg.com/shiki-es/-/shiki-es-0.14.0.tgz#64f7902ad47eda244840836f70f68f9d24aac6e6"
- integrity sha512-e+/aueHx0YeIEut6RXC6K8gSf0PykwZiHD7q7AHtpTW8Kd8TpFUIWqTwhAnrGjOyOMyrwv+syr5WPagMpDpVYQ==
-
-shiki@1.3.0, shiki@^1.1.7:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/shiki/-/shiki-1.3.0.tgz#3eda35cb49f6f0a98525e9da48fc072e6c655a3f"
- integrity sha512-9aNdQy/etMXctnPzsje1h1XIGm9YfRcSksKOGqZWXA/qP9G18/8fpz5Bjpma8bOgz3tqIpjERAd6/lLjFyzoww==
- dependencies:
- "@shikijs/core" "1.3.0"
-
-signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7:
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
- integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
+shell-quote@^1.8.3:
+ version "1.8.3"
+ resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.3.tgz#55e40ef33cf5c689902353a3d8cd1a6725f08b4b"
+ integrity sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==
+
+shiki@^3.12.2:
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/shiki/-/shiki-3.13.0.tgz#9675e9d36a893434cc297d66ddd4598a4af1fea1"
+ integrity sha512-aZW4l8Og16CokuCLf8CF8kq+KK2yOygapU5m3+hoGw0Mdosc6fPitjM+ujYarppj5ZIKGyPDPP1vqmQhr+5/0g==
+ dependencies:
+ "@shikijs/core" "3.13.0"
+ "@shikijs/engine-javascript" "3.13.0"
+ "@shikijs/engine-oniguruma" "3.13.0"
+ "@shikijs/langs" "3.13.0"
+ "@shikijs/themes" "3.13.0"
+ "@shikijs/types" "3.13.0"
+ "@shikijs/vscode-textmate" "^10.0.2"
+ "@types/hast" "^3.0.4"
signal-exit@^4.0.1, signal-exit@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
-sigstore@^2.2.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-2.3.0.tgz#c56b32818d4dc989f6ea3c0897f4d9bff5d14bed"
- integrity sha512-q+o8L2ebiWD1AxD17eglf1pFrl9jtW7FHa0ygqY6EKvibK8JHyq9Z26v9MZXeDiw+RbfOJ9j2v70M10Hd6E06A==
+simple-concat@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f"
+ integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==
+
+simple-get@^4.0.0, simple-get@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543"
+ integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==
dependencies:
- "@sigstore/bundle" "^2.3.1"
- "@sigstore/core" "^1.0.0"
- "@sigstore/protobuf-specs" "^0.3.1"
- "@sigstore/sign" "^2.3.0"
- "@sigstore/tuf" "^2.3.1"
- "@sigstore/verify" "^1.2.0"
+ decompress-response "^6.0.0"
+ once "^1.3.1"
+ simple-concat "^1.0.0"
-simple-git@^3.24.0:
- version "3.24.0"
- resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.24.0.tgz#33a8c88dc6fa74e53eaf3d6bfc27d0182a49ec00"
- integrity sha512-QqAKee9Twv+3k8IFOFfPB2hnk6as6Y6ACUpwCtQvRYBAes23Wv3SZlHVobAzqcE8gfsisCvPw3HGW3HYM+VYYw==
+simple-git@^3.28.0:
+ version "3.28.0"
+ resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.28.0.tgz#c6345b2e387880f8450788a1e388573366ae48ac"
+ integrity sha512-Rs/vQRwsn1ILH1oBUy8NucJlXmnnLeLCfcvbSehkPzbv3wwoFWIdtfd6Ndo6ZPhlPsCZ60CPI4rxurnwAa+a2w==
dependencies:
"@kwsites/file-exists" "^1.1.1"
"@kwsites/promise-deferred" "^1.1.1"
- debug "^4.3.4"
+ debug "^4.4.0"
-sirv@^2.0.3, sirv@^2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/sirv/-/sirv-2.0.4.tgz#5dd9a725c578e34e449f332703eb2a74e46a29b0"
- integrity sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==
+simple-swizzle@^0.2.2:
+ version "0.2.4"
+ resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.4.tgz#a8d11a45a11600d6a1ecdff6363329e3648c3667"
+ integrity sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==
+ dependencies:
+ is-arrayish "^0.3.1"
+
+sirv@^3.0.1, sirv@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/sirv/-/sirv-3.0.2.tgz#f775fccf10e22a40832684848d636346f41cd970"
+ integrity sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==
dependencies:
"@polka/url" "^1.0.0-next.24"
mrmime "^2.0.0"
@@ -7508,22 +8317,12 @@ sisteransi@^1.0.5:
resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
-site-config-stack@1.6.7:
- version "1.6.7"
- resolved "https://registry.yarnpkg.com/site-config-stack/-/site-config-stack-1.6.7.tgz#f236b2fb5ecef53df4bb9e3334bdd369d2629d51"
- integrity sha512-LcZAAaMo4t/LKcePG6eghCt5oG+0JS1fhWG/8dHbfRuD3yWKmijKy2wd0/rcvTxDBEp5Pn2lAqe92jeAHRNjQA==
- dependencies:
- ufo "^1.3.2"
-
-sitemap@^7.1.1:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/sitemap/-/sitemap-7.1.1.tgz#eeed9ad6d95499161a3eadc60f8c6dce4bea2bef"
- integrity sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==
+site-config-stack@3.2.11:
+ version "3.2.11"
+ resolved "https://registry.yarnpkg.com/site-config-stack/-/site-config-stack-3.2.11.tgz#51ff6fb61a9fdb745aa1adc0a1e111449f4c30ac"
+ integrity sha512-KRJ49L58VtJJo3WdB7hXv6lq3oEJNOoBpig1v+OuHSppiBp7X6xqcAByJHveeBpBE9kHwqy/sn1LEnIibQ4nOA==
dependencies:
- "@types/node" "^17.0.5"
- "@types/sax" "^1.2.1"
- arg "^5.0.0"
- sax "^1.2.4"
+ ufo "^1.6.1"
skin-tone@^2.0.0:
version "2.0.0"
@@ -7532,11 +8331,6 @@ skin-tone@^2.0.0:
dependencies:
unicode-emoji-modifier-base "^1.0.0"
-slash@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7"
- integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==
-
slash@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce"
@@ -7547,24 +8341,19 @@ slugify@^1.6.6:
resolved "https://registry.yarnpkg.com/slugify/-/slugify-1.6.6.tgz#2d4ac0eacb47add6af9e04d3be79319cbcc7924b"
integrity sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==
-smart-buffer@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae"
- integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==
-
smob@^1.0.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/smob/-/smob-1.5.0.tgz#85d79a1403abf128d24d3ebc1cdc5e1a9548d3ab"
integrity sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==
-socket.io-client@^4.7.4:
- version "4.7.5"
- resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.7.5.tgz#919be76916989758bdc20eec63f7ee0ae45c05b7"
- integrity sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ==
+socket.io-client@^4.8.1:
+ version "4.8.1"
+ resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.8.1.tgz#1941eca135a5490b94281d0323fe2a35f6f291cb"
+ integrity sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ==
dependencies:
"@socket.io/component-emitter" "~3.1.0"
debug "~4.3.2"
- engine.io-client "~6.5.2"
+ engine.io-client "~6.6.1"
socket.io-parser "~4.2.4"
socket.io-parser@~4.2.4:
@@ -7575,27 +8364,10 @@ socket.io-parser@~4.2.4:
"@socket.io/component-emitter" "~3.1.0"
debug "~4.3.1"
-socks-proxy-agent@^8.0.3:
- version "8.0.3"
- resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.3.tgz#6b2da3d77364fde6292e810b496cb70440b9b89d"
- integrity sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==
- dependencies:
- agent-base "^7.1.1"
- debug "^4.3.4"
- socks "^2.7.1"
-
-socks@^2.7.1:
- version "2.8.3"
- resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.3.tgz#1ebd0f09c52ba95a09750afe3f3f9f724a800cb5"
- integrity sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==
- dependencies:
- ip-address "^9.0.5"
- smart-buffer "^4.2.0"
-
-source-map-js@^1.0.1, source-map-js@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af"
- integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==
+source-map-js@^1.0.1, source-map-js@^1.2.0, source-map-js@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
+ integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
source-map-support@~0.5.20:
version "0.5.21"
@@ -7610,92 +8382,48 @@ source-map@^0.6.0:
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
-source-map@^0.7.4:
- version "0.7.4"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656"
- integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==
+source-map@^0.7.4, source-map@^0.7.6:
+ version "0.7.6"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.6.tgz#a3658ab87e5b6429c8a1f3ba0083d4c61ca3ef02"
+ integrity sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==
space-separated-tokens@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f"
integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==
-spdx-correct@^3.0.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c"
- integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==
- dependencies:
- spdx-expression-parse "^3.0.0"
- spdx-license-ids "^3.0.0"
-
spdx-exceptions@^2.1.0:
version "2.5.0"
resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66"
integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==
-spdx-expression-parse@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
- integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
+spdx-expression-parse@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz#a23af9f3132115465dac215c099303e4ceac5794"
+ integrity sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==
dependencies:
spdx-exceptions "^2.1.0"
spdx-license-ids "^3.0.0"
spdx-license-ids@^3.0.0:
- version "3.0.17"
- resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz#887da8aa73218e51a1d917502d79863161a93f9c"
- integrity sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==
+ version "3.0.22"
+ resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz#abf5a08a6f5d7279559b669f47f0a43e8f3464ef"
+ integrity sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==
speakingurl@^14.0.1:
version "14.0.1"
resolved "https://registry.yarnpkg.com/speakingurl/-/speakingurl-14.0.1.tgz#f37ec8ddc4ab98e9600c1c9ec324a8c48d772a53"
integrity sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==
-split@0.3:
- version "0.3.3"
- resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f"
- integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==
- dependencies:
- through "2"
-
-split@0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/split/-/split-0.3.1.tgz#cebcf142bf61bbb64b141628e6db482a2914654c"
- integrity sha512-hCHXkQDs1HFKRsrT9EutGT1hmjS1FW1Aei8dk/CxrT7mslcMtAxbiv8LYA/AYDvjB6h9rSXgW8zAZwg20tKMTw==
- dependencies:
- through "2"
-
-splitpanes@^3.1.5:
- version "3.1.5"
- resolved "https://registry.yarnpkg.com/splitpanes/-/splitpanes-3.1.5.tgz#de81da25681c252d131747a9cb48a17156e2b210"
- integrity sha512-r3Mq2ITFQ5a2VXLOy4/Sb2Ptp7OfEO8YIbhVJqJXoFc9hc5nTXXkCvtVDjIGbvC0vdE7tse+xTM9BMjsszP6bw==
+srvx@^0.8.9:
+ version "0.8.16"
+ resolved "https://registry.yarnpkg.com/srvx/-/srvx-0.8.16.tgz#f2582bd747351b5b0a1c65bce8179bae83e8b2a6"
+ integrity sha512-hmcGW4CgroeSmzgF1Ihwgl+Ths0JqAJ7HwjP2X7e3JzY7u4IydLMcdnlqGQiQGUswz+PO9oh/KtCpOISIvs9QQ==
-sprintf-js@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a"
- integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==
-
-sshpk@^1.7.0:
- version "1.18.0"
- resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.18.0.tgz#1663e55cddf4d688b86a46b77f0d5fe363aba028"
- integrity sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==
- dependencies:
- asn1 "~0.2.3"
- assert-plus "^1.0.0"
- bcrypt-pbkdf "^1.0.0"
- dashdash "^1.12.0"
- ecc-jsbn "~0.1.1"
- getpass "^0.1.1"
- jsbn "~0.1.0"
- safer-buffer "^2.0.2"
- tweetnacl "~0.14.0"
-
-ssri@^10.0.0:
- version "10.0.5"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.5.tgz#e49efcd6e36385196cb515d3a2ad6c3f0265ef8c"
- integrity sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==
- dependencies:
- minipass "^7.0.3"
+stable-hash-x@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/stable-hash-x/-/stable-hash-x-0.2.0.tgz#dfd76bfa5d839a7470125c6a6b3c8b22061793e9"
+ integrity sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==
standard-as-callback@^2.1.0:
version "2.1.0"
@@ -7707,34 +8435,26 @@ statuses@2.0.1:
resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63"
integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==
-"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@^1.5.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
- integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
-
-std-env@^3.4.3, std-env@^3.6.0, std-env@^3.7.0:
- version "3.7.0"
- resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.7.0.tgz#c9f7386ced6ecf13360b6c6c55b8aaa4ef7481d2"
- integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==
+statuses@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.2.tgz#8f75eecef765b5e1cfcdc080da59409ed424e382"
+ integrity sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==
-stream-combiner@~0.0.4:
- version "0.0.4"
- resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14"
- integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==
- dependencies:
- duplexer "~0.1.1"
+std-env@^3.10.0, std-env@^3.7.0, std-env@^3.8.1, std-env@^3.9.0:
+ version "3.10.0"
+ resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.10.0.tgz#d810b27e3a073047b2b5e40034881f5ea6f9c83b"
+ integrity sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==
-streamx@^2.15.0:
- version "2.16.1"
- resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.16.1.tgz#2b311bd34832f08aa6bb4d6a80297c9caef89614"
- integrity sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==
+streamx@^2.15.0, streamx@^2.21.0:
+ version "2.23.0"
+ resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.23.0.tgz#7d0f3d00d4a6c5de5728aecd6422b4008d66fd0b"
+ integrity sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==
dependencies:
- fast-fifo "^1.1.0"
- queue-tick "^1.0.1"
- optionalDependencies:
- bare-events "^2.2.0"
+ events-universal "^1.0.0"
+ fast-fifo "^1.3.2"
+ text-decoder "^1.1.0"
-"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
+"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -7743,14 +8463,6 @@ streamx@^2.15.0:
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.1"
-string-width@^2.1.0, string-width@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
- integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
- dependencies:
- is-fullwidth-code-point "^2.0.0"
- strip-ansi "^4.0.0"
-
string-width@^5.0.1, string-width@^5.1.2:
version "5.1.2"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
@@ -7779,7 +8491,7 @@ string_decoder@~1.1.1:
dependencies:
safe-buffer "~5.1.0"
-stringify-entities@^4.0.3:
+stringify-entities@^4.0.0, stringify-entities@^4.0.4:
version "4.0.4"
resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.4.tgz#b3b79ef5f277cc4ac73caeb0236c5ba939b3a4f3"
integrity sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==
@@ -7794,78 +8506,74 @@ stringify-entities@^4.0.3:
dependencies:
ansi-regex "^5.0.1"
-strip-ansi@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
- integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==
- dependencies:
- ansi-regex "^3.0.0"
-
-strip-ansi@^5.1.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
- integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
- dependencies:
- ansi-regex "^4.1.0"
-
strip-ansi@^7.0.1:
- version "7.1.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
- integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
+ version "7.1.2"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz#132875abde678c7ea8d691533f2e7e22bb744dba"
+ integrity sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==
dependencies:
ansi-regex "^6.0.1"
-strip-final-newline@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
- integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
-
strip-final-newline@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd"
integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==
-strip-literal@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-1.3.0.tgz#db3942c2ec1699e6836ad230090b84bb458e3a07"
- integrity sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==
- dependencies:
- acorn "^8.10.0"
+strip-final-newline@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-4.0.0.tgz#35a369ec2ac43df356e3edd5dcebb6429aa1fa5c"
+ integrity sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==
-strip-literal@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-2.1.0.tgz#6d82ade5e2e74f5c7e8739b6c84692bd65f0bd2a"
- integrity sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==
+strip-indent@^4.0.0:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-4.1.1.tgz#aba13de189d4ad9a17f6050e76554ac27585c7af"
+ integrity sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==
+
+strip-json-comments@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
+ integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
+
+strip-json-comments@~2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
+ integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==
+
+strip-literal@^3.0.0, strip-literal@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-3.1.0.tgz#222b243dd2d49c0bcd0de8906adbd84177196032"
+ integrity sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==
dependencies:
- js-tokens "^9.0.0"
+ js-tokens "^9.0.1"
+
+strnum@^2.1.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/strnum/-/strnum-2.1.1.tgz#cf2a6e0cf903728b8b2c4b971b7e36b4e82d46ab"
+ integrity sha512-7ZvoFTiCnGxBtDqJ//Cu6fWtZtc7Y3x+QOirG15wztbdngGSkht27o2pyGWrVy0b4WAy3jbKmnoK6g5VlVNUUw==
-stylehacks@^6.1.1:
- version "6.1.1"
- resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-6.1.1.tgz#543f91c10d17d00a440430362d419f79c25545a6"
- integrity sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==
- dependencies:
- browserslist "^4.23.0"
- postcss-selector-parser "^6.0.16"
+structured-clone-es@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/structured-clone-es/-/structured-clone-es-1.0.0.tgz#cc37f73c519c0d9e5d8d8efd3a7a9250207e688d"
+ integrity sha512-FL8EeKFFyNQv5cMnXI31CIMCsFarSVI2bF0U0ImeNE3g/F1IvJQyqzOXxPBRXiwQfyBTlbNe88jh1jFW0O/jiQ==
-sucrase@^3.32.0:
- version "3.35.0"
- resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263"
- integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==
+stylehacks@^7.0.5:
+ version "7.0.6"
+ resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-7.0.6.tgz#b52653ec54b4d902268df4be5db5e16f18822b31"
+ integrity sha512-iitguKivmsueOmTO0wmxURXBP8uqOO+zikLGZ7Mm9e/94R4w5T999Js2taS/KBOnQ/wdC3jN3vNSrkGDrlnqQg==
dependencies:
- "@jridgewell/gen-mapping" "^0.3.2"
- commander "^4.0.0"
- glob "^10.3.10"
- lines-and-columns "^1.1.6"
- mz "^2.7.0"
- pirates "^4.0.1"
- ts-interface-checker "^0.1.9"
+ browserslist "^4.25.1"
+ postcss-selector-parser "^7.1.0"
-supports-color@^5.3.0:
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
- integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
+superjson@^2.2.2:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/superjson/-/superjson-2.2.3.tgz#c42236fff6ecc449b7ffa7f023a9a028a5ec9c87"
+ integrity sha512-ay3d+LW/S6yppKoTz3Bq4mG0xrS5bFwfWEBmQfbC7lt5wmtk+Obq0TxVuA9eYRirBTQb1K3eEpBRHMQEo0WyVw==
dependencies:
- has-flag "^3.0.0"
+ copy-anything "^4"
+
+supports-color@^10.0.0:
+ version "10.2.2"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-10.2.2.tgz#466c2978cc5cd0052d542a0b576461c2b802ebb4"
+ integrity sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==
supports-color@^7.1.0:
version "7.2.0"
@@ -7874,65 +8582,15 @@ supports-color@^7.1.0:
dependencies:
has-flag "^4.0.0"
-supports-color@^9.4.0:
- version "9.4.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.4.0.tgz#17bfcf686288f531db3dea3215510621ccb55954"
- integrity sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==
-
supports-preserve-symlinks-flag@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
-surge-fstream-ignore@^1.0.6:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/surge-fstream-ignore/-/surge-fstream-ignore-1.0.6.tgz#e30efce95574b91fd571b5b02f32a611ea829731"
- integrity sha512-hNN52cz2fYCAzhlHmWPn4aE3bFbpBt01AkWFLljrtSzFvxlipLAeLuLtQ3t4f0RKoUkjzXWCAFK13WoET2iM1A==
- dependencies:
- fstream ">=1.0.12"
- inherits "2"
- minimatch "^3.0.0"
-
-surge-ignore@0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/surge-ignore/-/surge-ignore-0.2.0.tgz#5a7f8a20a71188cf9e75a2cfe8eb182de90daf3b"
- integrity sha512-ay4MPFjfiQzDsyTidljJLXQi22l2AwjcuamYnJWj/LdhaHdKmDJxRox52WXimdcLpMuLDtkQvv4+jEu+wu9eSw==
-
-surge@^0.23.1:
- version "0.23.1"
- resolved "https://registry.yarnpkg.com/surge/-/surge-0.23.1.tgz#3cb283edad4e632e27162c633863ef4a915b961d"
- integrity sha512-w92meVuKxqO1up0JpSe2iVSiVTv7E7t1qDA9fZhCSZx/+6Q85I3Y2LCoZIcWLpMm9BM0iB843NAWAwdScTR4Uw==
- dependencies:
- cli-table3 "^0.5.1"
- colors "1.4.0"
- inquirer "^6.2.2"
- is-domain "0.0.1"
- minimist "1.2.3"
- moniker "0.1.2"
- netrc "0.1.4"
- progress "1.1.8"
- read "1.0.5"
- request "^2.88.0"
- split "0.3.1"
- surge-fstream-ignore "^1.0.6"
- surge-ignore "0.2.0"
- tarr "1.1.0"
- url-parse-as-address "1.0.0"
-
-svg-tags@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764"
- integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==
-
-svg2png-wasm@^1.4.1:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/svg2png-wasm/-/svg2png-wasm-1.4.1.tgz#fbe57307816cf9fa45f79f31ea5407f79da5a9e5"
- integrity sha512-ZFy1NtwZVAsslaTQoI+/QqX2sg0vjmgJ/jGAuLZZvYcRlndI54hLPiwLC9JzXlFBerfxN5JiS7kpEUG0mrXS3Q==
-
svgo@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.2.0.tgz#7a5dff2938d8c6096e00295c2390e8e652fa805d"
- integrity sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==
+ version "3.3.2"
+ resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.3.2.tgz#ad58002652dffbb5986fc9716afe52d869ecbda8"
+ integrity sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==
dependencies:
"@trysound/sax" "0.2.0"
commander "^7.2.0"
@@ -7942,64 +8600,87 @@ svgo@^3.2.0:
csso "^5.0.5"
picocolors "^1.0.0"
+svgo@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/svgo/-/svgo-4.0.0.tgz#17e0fa2eaccf429e0ec0d2179169abde9ba8ad3d"
+ integrity sha512-VvrHQ+9uniE+Mvx3+C9IEe/lWasXCU0nXMY2kZeLrHNICuRiC8uMPyM14UEaMOFA5mhyQqEkB02VoQ16n3DLaw==
+ dependencies:
+ commander "^11.1.0"
+ css-select "^5.1.0"
+ css-tree "^3.0.1"
+ css-what "^6.1.0"
+ csso "^5.0.5"
+ picocolors "^1.1.1"
+ sax "^1.4.1"
+
+swrv@^1.0.4:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/swrv/-/swrv-1.1.0.tgz#e3825e1e825893391e34fd5b924ba8e6122c14ce"
+ integrity sha512-pjllRDr2s0iTwiE5Isvip51dZGR7GjLH1gCSVyE8bQnbAx6xackXsFdojau+1O5u98yHF5V73HQGOFxKUXO9gQ==
+
system-architecture@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/system-architecture/-/system-architecture-0.1.0.tgz#71012b3ac141427d97c67c56bc7921af6bff122d"
integrity sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==
-tabbable@^6.2.0:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97"
- integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==
+tagged-tag@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/tagged-tag/-/tagged-tag-1.0.0.tgz#a0b5917c2864cba54841495abfa3f6b13edcf4d6"
+ integrity sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==
-tailwind-config-viewer@^2.0.1:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/tailwind-config-viewer/-/tailwind-config-viewer-2.0.2.tgz#d00429c7fafbaf1c3ba36cad03296d9baa3bd909"
- integrity sha512-YkMEbWgvTyEp7J5S7qY9KGLHml6SLO8kQg4Q5xNM4tWJ+cFtSO/Rv2UKfYHYnE7UsY4Lb1LkHmNs3YSbU2mT2Q==
- dependencies:
- "@koa/router" "^12.0.1"
- commander "^6.0.0"
- fs-extra "^9.0.1"
- koa "^2.14.2"
- koa-static "^5.0.0"
- open "^7.0.4"
- portfinder "^1.0.26"
- replace-in-file "^6.1.0"
-
-tailwindcss@~3.4.3:
- version "3.4.3"
- resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.3.tgz#be48f5283df77dfced705451319a5dffb8621519"
- integrity sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==
- dependencies:
- "@alloc/quick-lru" "^5.2.0"
- arg "^5.0.2"
- chokidar "^3.5.3"
- didyoumean "^1.2.2"
- dlv "^1.1.3"
- fast-glob "^3.3.0"
- glob-parent "^6.0.2"
- is-glob "^4.0.3"
- jiti "^1.21.0"
- lilconfig "^2.1.0"
- micromatch "^4.0.5"
- normalize-path "^3.0.0"
- object-hash "^3.0.0"
- picocolors "^1.0.0"
- postcss "^8.4.23"
- postcss-import "^15.1.0"
- postcss-js "^4.0.1"
- postcss-load-config "^4.0.1"
- postcss-nested "^6.0.1"
- postcss-selector-parser "^6.0.11"
- resolve "^1.22.2"
- sucrase "^3.32.0"
+tailwind-merge@^3.3.1:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/tailwind-merge/-/tailwind-merge-3.3.1.tgz#a7e7db7c714f6020319e626ecfb7e7dac8393a4b"
+ integrity sha512-gBXpgUm/3rp1lMZZrM/w7D8GKqshif0zAymAhbCyIt8KMe+0v9DQ7cdYLR4FHH/cKpdTXb+A/tKKU3eolfsI+g==
+
+tailwind-variants@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/tailwind-variants/-/tailwind-variants-3.1.1.tgz#40a87a7f24a3c372faecedd23a9c40e40bb2033d"
+ integrity sha512-ftLXe3krnqkMHsuBTEmaVUXYovXtPyTK7ckEfDRXS8PBZx0bAUas+A0jYxuKA5b8qg++wvQ3d2MQ7l/xeZxbZQ==
+
+tailwindcss@4.1.15, tailwindcss@^4.1.14:
+ version "4.1.15"
+ resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-4.1.15.tgz#1437ee75ed8f66d8d866da5e25daa38d06ce5cea"
+ integrity sha512-k2WLnWkYFkdpRv+Oby3EBXIyQC8/s1HOFMBUViwtAh6Z5uAozeUSMQlIsn/c6Q2iJzqG6aJT3wdPaRNj70iYxQ==
tapable@^2.2.0:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
- integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz#7e3ea6d5ca31ba8e078b560f0d83ce9a14aa8be6"
+ integrity sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==
+
+tar-fs@^2.0.0:
+ version "2.1.4"
+ resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.4.tgz#800824dbf4ef06ded9afea4acafe71c67c76b930"
+ integrity sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==
+ dependencies:
+ chownr "^1.1.1"
+ mkdirp-classic "^0.5.2"
+ pump "^3.0.0"
+ tar-stream "^2.1.4"
+
+tar-fs@^3.0.4:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-3.1.1.tgz#4f164e59fb60f103d472360731e8c6bb4a7fe9ef"
+ integrity sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==
+ dependencies:
+ pump "^3.0.0"
+ tar-stream "^3.1.5"
+ optionalDependencies:
+ bare-fs "^4.0.1"
+ bare-path "^3.0.0"
+
+tar-stream@^2.1.4:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287"
+ integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==
+ dependencies:
+ bl "^4.0.3"
+ end-of-stream "^1.4.1"
+ fs-constants "^1.0.0"
+ inherits "^2.0.3"
+ readable-stream "^3.1.1"
-tar-stream@^3.0.0:
+tar-stream@^3.0.0, tar-stream@^3.1.5:
version "3.1.7"
resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-3.1.7.tgz#24b3fb5eabada19fe7338ed6d26e5f7c482e792b"
integrity sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==
@@ -8008,89 +8689,56 @@ tar-stream@^3.0.0:
fast-fifo "^1.2.0"
streamx "^2.15.0"
-tar@^6.1.11, tar@^6.1.2, tar@^6.2.0:
- version "6.2.1"
- resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a"
- integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==
- dependencies:
- chownr "^2.0.0"
- fs-minipass "^2.0.0"
- minipass "^5.0.0"
- minizlib "^2.1.1"
- mkdirp "^1.0.3"
- yallist "^4.0.0"
-
-tarr@1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/tarr/-/tarr-1.1.0.tgz#d7a9532ce97f08f5200b78ae0a82a6883173c8c8"
- integrity sha512-tENbQ43IQckay71stp1p1lljRhoEZpZk10FzEZKW2tJcMcnLwV3CfZdxBAERlH6nwnFvnHMS9eJOJl6IzSsG0g==
- dependencies:
- block-stream "*"
- fstream ">=1.0.12"
- inherits "2"
-
-terminate@^2.6.1:
- version "2.6.1"
- resolved "https://registry.yarnpkg.com/terminate/-/terminate-2.6.1.tgz#99a4eb1647011b95f47401f6beb9f23e0362fbc0"
- integrity sha512-0kdr49oam98yvjkVY+gfUaT3SMaJI6Sc+yijJjU+qhat+0NQKQn60OsIZZeKyVgTO0/33nRa3HowRbpw3A7u9A==
+tar@^7.4.0, tar@^7.4.3:
+ version "7.5.1"
+ resolved "https://registry.yarnpkg.com/tar/-/tar-7.5.1.tgz#750a8bd63b7c44c1848e7bf982260a083cf747c9"
+ integrity sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==
dependencies:
- ps-tree "^1.2.0"
+ "@isaacs/fs-minipass" "^4.0.0"
+ chownr "^3.0.0"
+ minipass "^7.1.2"
+ minizlib "^3.1.0"
+ yallist "^5.0.0"
terser@^5.17.4:
- version "5.31.0"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.31.0.tgz#06eef86f17007dbad4593f11a574c7f5eb02c6a1"
- integrity sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==
+ version "5.44.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.44.0.tgz#ebefb8e5b8579d93111bfdfc39d2cf63879f4a82"
+ integrity sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==
dependencies:
"@jridgewell/source-map" "^0.3.3"
- acorn "^8.8.2"
+ acorn "^8.15.0"
commander "^2.20.0"
source-map-support "~0.5.20"
-thenify-all@^1.0.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726"
- integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==
- dependencies:
- thenify ">= 3.1.0 < 4"
-
-"thenify@>= 3.1.0 < 4":
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f"
- integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==
+text-decoder@^1.1.0:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.2.3.tgz#b19da364d981b2326d5f43099c310cc80d770c65"
+ integrity sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==
dependencies:
- any-promise "^1.0.0"
-
-through@2, through@^2.3.6, through@~2.3, through@~2.3.1:
- version "2.3.8"
- resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
- integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==
+ b4a "^1.6.4"
-tiny-inflate@^1.0.0:
+tiny-inflate@^1.0.0, tiny-inflate@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/tiny-inflate/-/tiny-inflate-1.0.3.tgz#122715494913a1805166aaf7c93467933eea26c4"
integrity sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==
-tiny-invariant@^1.1.0:
+tiny-invariant@^1.3.3:
version "1.3.3"
resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127"
integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==
-tinyws@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/tinyws/-/tinyws-0.1.0.tgz#cf72993c4d6ca688b26822465658769a85e38af1"
- integrity sha512-6WQ2FlFM7qm6lAXxeKnzsAEfmnBHz5W5EwonNs52V0++YfK1IoCCAWM429afcChFE9BFrDgOFnq7ligaWMsa/A==
+tinyexec@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/tinyexec/-/tinyexec-1.0.1.tgz#70c31ab7abbb4aea0a24f55d120e5990bfa1e0b1"
+ integrity sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==
-tmp@^0.0.33:
- version "0.0.33"
- resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
- integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
+tinyglobby@^0.2.13, tinyglobby@^0.2.14, tinyglobby@^0.2.15, tinyglobby@^0.2.9:
+ version "0.2.15"
+ resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz#e228dd1e638cea993d2fdb4fcd2d4602a79951c2"
+ integrity sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==
dependencies:
- os-tmpdir "~1.0.2"
-
-to-fast-properties@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
- integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
+ fdir "^6.5.0"
+ picomatch "^4.0.3"
to-regex-range@^5.0.1:
version "5.0.1"
@@ -8109,14 +8757,6 @@ totalist@^3.0.0:
resolved "https://registry.yarnpkg.com/totalist/-/totalist-3.0.1.tgz#ba3a3d600c915b1a97872348f79c127475f6acf8"
integrity sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==
-tough-cookie@~2.5.0:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
- integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
- dependencies:
- psl "^1.1.28"
- punycode "^2.1.1"
-
tr46@~0.0.3:
version "0.0.3"
resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
@@ -8127,34 +8767,25 @@ trim-lines@^3.0.0:
resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-3.0.1.tgz#d802e332a07df861c48802c04321017b1bd87338"
integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==
+trim-trailing-lines@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-2.1.0.tgz#9aac7e89b09cb35badf663de7133c6de164f86df"
+ integrity sha512-5UR5Biq4VlVOtzqkm2AZlgvSlDJtME46uV0br0gENbwN4l5+mMKT4b9gJKqWtuL2zAIqajGJGuvbCbcAJUZqBg==
+
trough@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/trough/-/trough-2.2.0.tgz#94a60bd6bd375c152c1df911a4b11d5b0256f50f"
integrity sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==
-ts-interface-checker@^0.1.9:
- version "0.1.13"
- resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699"
- integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==
-
-tslib@^1.9.0:
- version "1.14.1"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
- integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
-
-tsscmp@1.0.6:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb"
- integrity sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==
+ts-api-utils@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.1.0.tgz#595f7094e46eed364c13fd23e75f9513d29baf91"
+ integrity sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==
-tuf-js@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-2.2.0.tgz#4daaa8620ba7545501d04dfa933c98abbcc959b9"
- integrity sha512-ZSDngmP1z6zw+FIkIBjvOp/II/mIub/O7Pp12j1WNsiCpg5R5wAc//i555bBQsE44O94btLt0xM/Zr2LQjwdCg==
- dependencies:
- "@tufjs/models" "2.0.0"
- debug "^4.3.4"
- make-fetch-happen "^13.0.0"
+tslib@^2.0.0, tslib@^2.4.0, tslib@^2.8.0:
+ version "2.8.1"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f"
+ integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
tunnel-agent@^0.6.0:
version "0.6.0"
@@ -8163,109 +8794,81 @@ tunnel-agent@^0.6.0:
dependencies:
safe-buffer "^5.0.1"
-tweetnacl@^0.14.3, tweetnacl@~0.14.0:
- version "0.14.5"
- resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
- integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==
+type-check@^0.4.0, type-check@~0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
+ integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
+ dependencies:
+ prelude-ls "^1.2.1"
-twemoji-parser@14.0.0:
- version "14.0.0"
- resolved "https://registry.yarnpkg.com/twemoji-parser/-/twemoji-parser-14.0.0.tgz#13dabcb6d3a261d9efbf58a1666b182033bf2b62"
- integrity sha512-9DUOTGLOWs0pFWnh1p6NF+C3CkQ96PWmEFwhOVmT3WbecRC+68AIqpsnJXygfkFcp4aXbOp8Dwbhh/HQgvoRxA==
-
-twemoji@^14.0.2:
- version "14.0.2"
- resolved "https://registry.yarnpkg.com/twemoji/-/twemoji-14.0.2.tgz#c53adb01dab22bf4870f648ca8cc347ce99ee37e"
- integrity sha512-BzOoXIe1QVdmsUmZ54xbEH+8AgtOKUiG53zO5vVP2iUu6h5u9lN15NcuS6te4OY96qx0H7JK9vjjl9WQbkTRuA==
- dependencies:
- fs-extra "^8.0.1"
- jsonfile "^5.0.0"
- twemoji-parser "14.0.0"
- universalify "^0.1.2"
-
-type-fest@^0.21.3:
- version "0.21.3"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
- integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
-
-type-fest@^3.8.0:
- version "3.13.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.13.1.tgz#bb744c1f0678bea7543a2d1ec24e83e68e8c8706"
- integrity sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==
-
-type-is@^1.6.16:
- version "1.6.18"
- resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
- integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
- dependencies:
- media-typer "0.3.0"
- mime-types "~2.1.24"
-
-ufo@^1.1.2, ufo@^1.2.0, ufo@^1.3.1, ufo@^1.3.2, ufo@^1.4.0, ufo@^1.5.3:
- version "1.5.3"
- resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.5.3.tgz#3325bd3c977b6c6cd3160bf4ff52989adc9d3344"
- integrity sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==
-
-ultrahtml@^1.2.0, ultrahtml@^1.5.3:
- version "1.5.3"
- resolved "https://registry.yarnpkg.com/ultrahtml/-/ultrahtml-1.5.3.tgz#e7a903a4b28a0e49b71b0801b444050bb0a369c7"
- integrity sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==
-
-unconfig@^0.3.13:
- version "0.3.13"
- resolved "https://registry.yarnpkg.com/unconfig/-/unconfig-0.3.13.tgz#8612d57811c1316f30d95f45bb96ce8ce8afc10c"
- integrity sha512-N9Ph5NC4+sqtcOjPfHrRcHekBCadCXWTBzp2VYYbySOHW0PfD9XLCeXshTXjkPYwLrBr9AtSeU0CZmkYECJhng==
+type-fest@^5.0.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-5.1.0.tgz#30ba6dc2acde4f73732417031f8ac19a0afcb5b7"
+ integrity sha512-wQ531tuWvB6oK+pchHIu5lHe5f5wpSCqB8Kf4dWQRbOYc9HTge7JL0G4Qd44bh6QuJCccIzL3bugb8GI0MwHrg==
dependencies:
- "@antfu/utils" "^0.7.7"
- defu "^6.1.4"
- jiti "^1.21.0"
+ tagged-tag "^1.0.0"
+
+type-level-regexp@~0.1.17:
+ version "0.1.17"
+ resolved "https://registry.yarnpkg.com/type-level-regexp/-/type-level-regexp-0.1.17.tgz#ec1bf7dd65b85201f9863031d6f023bdefc2410f"
+ integrity sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==
+
+typescript@^5.9.2, typescript@^5.9.3:
+ version "5.9.3"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz#5b4f59e15310ab17a216f5d6cf53ee476ede670f"
+ integrity sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==
+
+ufo@1.6.1, ufo@^1.3.2, ufo@^1.5.4, ufo@^1.6.1:
+ version "1.6.1"
+ resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.6.1.tgz#ac2db1d54614d1b22c1d603e3aef44a85d8f146b"
+ integrity sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==
+
+ultrahtml@^1.2.0, ultrahtml@^1.6.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/ultrahtml/-/ultrahtml-1.6.0.tgz#0d1aad7bbfeae512438d30e799c11622127a1ac8"
+ integrity sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==
uncrypto@^0.1.3:
version "0.1.3"
resolved "https://registry.yarnpkg.com/uncrypto/-/uncrypto-0.1.3.tgz#e1288d609226f2d02d8d69ee861fa20d8348ef2b"
integrity sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==
-unctx@^2.3.1:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/unctx/-/unctx-2.3.1.tgz#5eb4aa9f96fb5fdac18b88fe5ba8e122fe671a62"
- integrity sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==
+unctx@^2.4.1:
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/unctx/-/unctx-2.4.1.tgz#93346a98d4a38c64cc5861f6098f4ce7c6f8164a"
+ integrity sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg==
dependencies:
- acorn "^8.8.2"
+ acorn "^8.14.0"
estree-walker "^3.0.3"
- magic-string "^0.30.0"
- unplugin "^1.3.1"
+ magic-string "^0.30.17"
+ unplugin "^2.1.0"
-undici-types@~5.26.4:
- version "5.26.5"
- resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
- integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
+undici-types@~7.16.0:
+ version "7.16.0"
+ resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.16.0.tgz#ffccdff36aea4884cbfce9a750a0580224f58a46"
+ integrity sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==
-undici@^5.28.2:
- version "5.28.4"
- resolved "https://registry.yarnpkg.com/undici/-/undici-5.28.4.tgz#6b280408edb6a1a604a9b20340f45b422e373068"
- integrity sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==
- dependencies:
- "@fastify/busboy" "^2.0.0"
+undici@^7.16.0:
+ version "7.16.0"
+ resolved "https://registry.yarnpkg.com/undici/-/undici-7.16.0.tgz#cb2a1e957726d458b536e3f076bf51f066901c1a"
+ integrity sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==
-unenv@^1.9.0:
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/unenv/-/unenv-1.9.0.tgz#469502ae85be1bd3a6aa60f810972b1a904ca312"
- integrity sha512-QKnFNznRxmbOF1hDgzpqrlIf6NC5sbZ2OJ+5Wl3OX8uM+LUJXbj4TXvLJCtwbPTmbMHCLIz6JLKNinNsMShK9g==
+unenv@^2.0.0-rc.21:
+ version "2.0.0-rc.21"
+ resolved "https://registry.yarnpkg.com/unenv/-/unenv-2.0.0-rc.21.tgz#cc6082ef32370eb7098cb2f86ca7af3ef4c2c49f"
+ integrity sha512-Wj7/AMtE9MRnAXa6Su3Lk0LNCfqDYgfwVjwRFVum9U7wsto1imuHqk4kTm7Jni+5A0Hn7dttL6O/zjvUvoo+8A==
dependencies:
- consola "^3.2.3"
- defu "^6.1.3"
- mime "^3.0.0"
- node-fetch-native "^1.6.1"
- pathe "^1.1.1"
+ defu "^6.1.4"
+ exsolve "^1.0.7"
+ ohash "^2.0.11"
+ pathe "^2.0.3"
+ ufo "^1.6.1"
-unhead@1.9.7:
- version "1.9.7"
- resolved "https://registry.yarnpkg.com/unhead/-/unhead-1.9.7.tgz#c0962857520a0f9915329bb9961562a44ec47e75"
- integrity sha512-Kv7aU5l41qiq36t9qMks8Pgsj7adaTBm9aDS6USlmodTXioeqlJ5vEu9DI+8ZZPwRlmof3aDlo1kubyaXdSNmQ==
+unhead@2.0.19:
+ version "2.0.19"
+ resolved "https://registry.yarnpkg.com/unhead/-/unhead-2.0.19.tgz#f37e292e34df518923f680d54c5e82f2e2bc9cd0"
+ integrity sha512-gEEjkV11Aj+rBnY6wnRfsFtF2RxKOLaPN4i+Gx3UhBxnszvV6ApSNZbGk7WKyy/lErQ6ekPN63qdFL7sa1leow==
dependencies:
- "@unhead/dom" "1.9.7"
- "@unhead/schema" "1.9.7"
- "@unhead/shared" "1.9.7"
hookable "^5.5.3"
unicode-emoji-modifier-base@^1.0.0:
@@ -8273,6 +8876,14 @@ unicode-emoji-modifier-base@^1.0.0:
resolved "https://registry.yarnpkg.com/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz#dbbd5b54ba30f287e2a8d5a249da6c0cef369459"
integrity sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==
+unicode-properties@^1.4.0:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/unicode-properties/-/unicode-properties-1.4.1.tgz#96a9cffb7e619a0dc7368c28da27e05fc8f9be5f"
+ integrity sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==
+ dependencies:
+ base64-js "^1.3.0"
+ unicode-trie "^2.0.0"
+
unicode-trie@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/unicode-trie/-/unicode-trie-2.0.0.tgz#8fd8845696e2e14a8b67d78fa9e0dd2cad62fec8"
@@ -8286,10 +8897,15 @@ unicorn-magic@^0.1.0:
resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz#1bb9a51c823aaf9d73a8bfcd3d1a23dde94b0ce4"
integrity sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==
-unified@^11.0.0, unified@^11.0.4:
- version "11.0.4"
- resolved "https://registry.yarnpkg.com/unified/-/unified-11.0.4.tgz#f4be0ac0fe4c88cb873687c07c64c49ed5969015"
- integrity sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==
+unicorn-magic@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.3.0.tgz#4efd45c85a69e0dd576d25532fbfa22aa5c8a104"
+ integrity sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==
+
+unified@^11.0.0, unified@^11.0.4, unified@^11.0.5:
+ version "11.0.5"
+ resolved "https://registry.yarnpkg.com/unified/-/unified-11.0.5.tgz#f66677610a5c0a9ee90cab2b8d4d66037026d9e1"
+ integrity sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==
dependencies:
"@types/unist" "^3.0.0"
bail "^2.0.0"
@@ -8299,38 +8915,33 @@ unified@^11.0.0, unified@^11.0.4:
trough "^2.0.0"
vfile "^6.0.0"
-unimport@^3.7.1:
- version "3.7.1"
- resolved "https://registry.yarnpkg.com/unimport/-/unimport-3.7.1.tgz#37250d0f3f2dcf1e1b66ed13728db0e9f50ba0c3"
- integrity sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==
- dependencies:
- "@rollup/pluginutils" "^5.1.0"
- acorn "^8.11.2"
- escape-string-regexp "^5.0.0"
- estree-walker "^3.0.3"
- fast-glob "^3.3.2"
- local-pkg "^0.5.0"
- magic-string "^0.30.5"
- mlly "^1.4.2"
- pathe "^1.1.1"
- pkg-types "^1.0.3"
- scule "^1.1.1"
- strip-literal "^1.3.0"
- unplugin "^1.5.1"
-
-unique-filename@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea"
- integrity sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==
+unifont@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/unifont/-/unifont-0.4.1.tgz#b434984e11c8490929daa6a70c84c95d5459a004"
+ integrity sha512-zKSY9qO8svWYns+FGKjyVdLvpGPwqmsCjeJLN1xndMiqxHWBAhoWDMYMG960MxeV48clBmG+fDP59dHY1VoZvg==
dependencies:
- unique-slug "^4.0.0"
+ css-tree "^3.0.0"
+ ohash "^2.0.0"
-unique-slug@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3"
- integrity sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==
+unimport@4.1.1, unimport@^5.2.0, unimport@^5.4.0, unimport@^5.4.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/unimport/-/unimport-4.1.1.tgz#0c13023297e4a62a772af5137b3807d3e3d56386"
+ integrity sha512-j9+fijH6aDd05yv1fXlyt7HSxtOWtGtrZeYTVBsSUg57Iuf+Ps2itIZjeyu7bEQ4k0WOgYhHrdW8m/pJgOpl5g==
dependencies:
- imurmurhash "^0.1.4"
+ acorn "^8.14.0"
+ escape-string-regexp "^5.0.0"
+ estree-walker "^3.0.3"
+ fast-glob "^3.3.3"
+ local-pkg "^1.0.0"
+ magic-string "^0.30.17"
+ mlly "^1.7.4"
+ pathe "^2.0.2"
+ picomatch "^4.0.2"
+ pkg-types "^1.3.1"
+ scule "^1.3.0"
+ strip-literal "^3.0.0"
+ unplugin "^2.1.2"
+ unplugin-utils "^0.2.3"
unist-builder@^4.0.0:
version "4.0.0"
@@ -8339,10 +8950,18 @@ unist-builder@^4.0.0:
dependencies:
"@types/unist" "^3.0.0"
+unist-util-find-after@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz#3fccc1b086b56f34c8b798e1ff90b5c54468e896"
+ integrity sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==
+ dependencies:
+ "@types/unist" "^3.0.0"
+ unist-util-is "^6.0.0"
+
unist-util-is@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-6.0.0.tgz#b775956486aff107a9ded971d996c173374be424"
- integrity sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-6.0.1.tgz#d0a3f86f2dd0db7acd7d8c2478080b5c67f9c6a9"
+ integrity sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==
dependencies:
"@types/unist" "^3.0.0"
@@ -8361,9 +8980,9 @@ unist-util-stringify-position@^4.0.0:
"@types/unist" "^3.0.0"
unist-util-visit-parents@^6.0.0, unist-util-visit-parents@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz#4d5f85755c3b8f0dc69e21eca5d6d82d22162815"
- integrity sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz#777df7fb98652ce16b4b7cd999d0a1a40efa3a02"
+ integrity sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==
dependencies:
"@types/unist" "^3.0.0"
unist-util-is "^6.0.0"
@@ -8377,86 +8996,120 @@ unist-util-visit@^5.0.0:
unist-util-is "^6.0.0"
unist-util-visit-parents "^6.0.0"
-universalify@^0.1.0, universalify@^0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
- integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
+unplugin-auto-import@^20.2.0:
+ version "20.2.0"
+ resolved "https://registry.yarnpkg.com/unplugin-auto-import/-/unplugin-auto-import-20.2.0.tgz#6bf2fc4dba8a596f34ce8c50d635b8433c2157db"
+ integrity sha512-vfBI/SvD9hJqYNinipVOAj5n8dS8DJXFlCKFR5iLDp2SaQwsfdnfLXgZ+34Kd3YY3YEY9omk8XQg0bwos3Q8ug==
+ dependencies:
+ local-pkg "^1.1.2"
+ magic-string "^0.30.19"
+ picomatch "^4.0.3"
+ unimport "^5.4.0"
+ unplugin "^2.3.10"
+ unplugin-utils "^0.3.0"
-universalify@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d"
- integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==
-
-unocss@0.59.4, unocss@^0.59.4:
- version "0.59.4"
- resolved "https://registry.yarnpkg.com/unocss/-/unocss-0.59.4.tgz#d5262a744b0e717abe7b1dc96bcf2828eb2b278b"
- integrity sha512-QmCVjRObvVu/gsGrJGVt0NnrdhFFn314BUZn2WQyXV9rIvHLRmG5bIu0j5vibJkj7ZhFchTrnTM1pTFXP1xt5g==
- dependencies:
- "@unocss/astro" "0.59.4"
- "@unocss/cli" "0.59.4"
- "@unocss/core" "0.59.4"
- "@unocss/extractor-arbitrary-variants" "0.59.4"
- "@unocss/postcss" "0.59.4"
- "@unocss/preset-attributify" "0.59.4"
- "@unocss/preset-icons" "0.59.4"
- "@unocss/preset-mini" "0.59.4"
- "@unocss/preset-tagify" "0.59.4"
- "@unocss/preset-typography" "0.59.4"
- "@unocss/preset-uno" "0.59.4"
- "@unocss/preset-web-fonts" "0.59.4"
- "@unocss/preset-wind" "0.59.4"
- "@unocss/reset" "0.59.4"
- "@unocss/transformer-attributify-jsx" "0.59.4"
- "@unocss/transformer-attributify-jsx-babel" "0.59.4"
- "@unocss/transformer-compile-class" "0.59.4"
- "@unocss/transformer-directives" "0.59.4"
- "@unocss/transformer-variant-group" "0.59.4"
- "@unocss/vite" "0.59.4"
-
-unplugin-vue-router@^0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/unplugin-vue-router/-/unplugin-vue-router-0.7.0.tgz#27bd250c7dc698366cce70c5b72b97c3b3766c26"
- integrity sha512-ddRreGq0t5vlSB7OMy4e4cfU1w2AwBQCwmvW3oP/0IHQiokzbx4hd3TpwBu3eIAFVuhX2cwNQwp1U32UybTVCw==
- dependencies:
- "@babel/types" "^7.22.19"
- "@rollup/pluginutils" "^5.0.4"
- "@vue-macros/common" "^1.8.0"
- ast-walker-scope "^0.5.0"
- chokidar "^3.5.3"
- fast-glob "^3.3.1"
- json5 "^2.2.3"
- local-pkg "^0.4.3"
- mlly "^1.4.2"
- pathe "^1.1.1"
- scule "^1.0.0"
- unplugin "^1.5.0"
- yaml "^2.3.2"
+unplugin-utils@^0.2.3, unplugin-utils@^0.2.4:
+ version "0.2.5"
+ resolved "https://registry.yarnpkg.com/unplugin-utils/-/unplugin-utils-0.2.5.tgz#d2fe44566ffffd7f216579bbb01184f6702e379b"
+ integrity sha512-gwXJnPRewT4rT7sBi/IvxKTjsms7jX7QIDLOClApuZwR49SXbrB1z2NLUZ+vDHyqCj/n58OzRRqaW+B8OZi8vg==
+ dependencies:
+ pathe "^2.0.3"
+ picomatch "^4.0.3"
-unplugin@^1.10.0, unplugin@^1.10.1, unplugin@^1.3.1, unplugin@^1.5.0, unplugin@^1.5.1:
- version "1.10.1"
- resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.10.1.tgz#8ceda065dc71bc67d923dea0920f05c67f2cd68c"
- integrity sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==
+unplugin-utils@^0.3.0, unplugin-utils@^0.3.1:
+ version "0.3.1"
+ resolved "https://registry.yarnpkg.com/unplugin-utils/-/unplugin-utils-0.3.1.tgz#ef2873670a6a2a21bd2c9d31307257cc863a709c"
+ integrity sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==
dependencies:
- acorn "^8.11.3"
- chokidar "^3.6.0"
- webpack-sources "^3.2.3"
- webpack-virtual-modules "^0.6.1"
+ pathe "^2.0.3"
+ picomatch "^4.0.3"
-unstorage@^1.10.1, unstorage@^1.10.2:
- version "1.10.2"
- resolved "https://registry.yarnpkg.com/unstorage/-/unstorage-1.10.2.tgz#fb7590ada8b30e83be9318f85100158b02a76dae"
- integrity sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==
+unplugin-vue-components@^29.1.0:
+ version "29.2.0"
+ resolved "https://registry.yarnpkg.com/unplugin-vue-components/-/unplugin-vue-components-29.2.0.tgz#5cf1aace82f6e7481fb068e6d23f33ef1ef849d6"
+ integrity sha512-QxBeBdmEflgtJRgMQMc/z/JVV5lcwXN5nOy5ehX6CKDGylIu6Qn4Goy8X95S0qOxF7EdI+uNhdBd4v5i0bvzCw==
dependencies:
- anymatch "^3.1.3"
chokidar "^3.6.0"
- destr "^2.0.3"
- h3 "^1.11.1"
- listhen "^1.7.2"
- lru-cache "^10.2.0"
- mri "^1.2.0"
- node-fetch-native "^1.6.2"
- ofetch "^1.3.3"
- ufo "^1.4.0"
+ debug "^4.4.3"
+ local-pkg "^1.1.2"
+ magic-string "^0.30.19"
+ mlly "^1.8.0"
+ tinyglobby "^0.2.15"
+ unplugin "^2.3.10"
+ unplugin-utils "^0.3.1"
+
+unplugin-vue-router@^0.15.0:
+ version "0.15.0"
+ resolved "https://registry.yarnpkg.com/unplugin-vue-router/-/unplugin-vue-router-0.15.0.tgz#fac7991a53213746277214dc3a5990d48b796f82"
+ integrity sha512-PyGehCjd9Ny9h+Uer4McbBjjib3lHihcyUEILa7pHKl6+rh8N7sFyw4ZkV+N30Oq2zmIUG7iKs3qpL0r+gXAaQ==
+ dependencies:
+ "@vue-macros/common" "3.0.0-beta.16"
+ "@vue/language-core" "^3.0.1"
+ ast-walker-scope "^0.8.1"
+ chokidar "^4.0.3"
+ json5 "^2.2.3"
+ local-pkg "^1.1.1"
+ magic-string "^0.30.17"
+ mlly "^1.7.4"
+ muggle-string "^0.4.1"
+ pathe "^2.0.3"
+ picomatch "^4.0.3"
+ scule "^1.3.0"
+ tinyglobby "^0.2.14"
+ unplugin "^2.3.5"
+ unplugin-utils "^0.2.4"
+ yaml "^2.8.0"
+
+unplugin@^2.0.0, unplugin@^2.1.0, unplugin@^2.1.2, unplugin@^2.3.10, unplugin@^2.3.2, unplugin@^2.3.3, unplugin@^2.3.5, unplugin@^2.3.6:
+ version "2.3.10"
+ resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-2.3.10.tgz#15e75fec9384743335be7e54e5c88b5c187a3e94"
+ integrity sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==
+ dependencies:
+ "@jridgewell/remapping" "^2.3.5"
+ acorn "^8.15.0"
+ picomatch "^4.0.3"
+ webpack-virtual-modules "^0.6.2"
+
+unrs-resolver@^1.9.2:
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/unrs-resolver/-/unrs-resolver-1.11.1.tgz#be9cd8686c99ef53ecb96df2a473c64d304048a9"
+ integrity sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==
+ dependencies:
+ napi-postinstall "^0.3.0"
+ optionalDependencies:
+ "@unrs/resolver-binding-android-arm-eabi" "1.11.1"
+ "@unrs/resolver-binding-android-arm64" "1.11.1"
+ "@unrs/resolver-binding-darwin-arm64" "1.11.1"
+ "@unrs/resolver-binding-darwin-x64" "1.11.1"
+ "@unrs/resolver-binding-freebsd-x64" "1.11.1"
+ "@unrs/resolver-binding-linux-arm-gnueabihf" "1.11.1"
+ "@unrs/resolver-binding-linux-arm-musleabihf" "1.11.1"
+ "@unrs/resolver-binding-linux-arm64-gnu" "1.11.1"
+ "@unrs/resolver-binding-linux-arm64-musl" "1.11.1"
+ "@unrs/resolver-binding-linux-ppc64-gnu" "1.11.1"
+ "@unrs/resolver-binding-linux-riscv64-gnu" "1.11.1"
+ "@unrs/resolver-binding-linux-riscv64-musl" "1.11.1"
+ "@unrs/resolver-binding-linux-s390x-gnu" "1.11.1"
+ "@unrs/resolver-binding-linux-x64-gnu" "1.11.1"
+ "@unrs/resolver-binding-linux-x64-musl" "1.11.1"
+ "@unrs/resolver-binding-wasm32-wasi" "1.11.1"
+ "@unrs/resolver-binding-win32-arm64-msvc" "1.11.1"
+ "@unrs/resolver-binding-win32-ia32-msvc" "1.11.1"
+ "@unrs/resolver-binding-win32-x64-msvc" "1.11.1"
+
+unstorage@^1.10.1, unstorage@^1.16.0, unstorage@^1.17.1:
+ version "1.17.1"
+ resolved "https://registry.yarnpkg.com/unstorage/-/unstorage-1.17.1.tgz#611519b799d6d9dbecb34364a1f8919d39732e81"
+ integrity sha512-KKGwRTT0iVBCErKemkJCLs7JdxNVfqTPc/85ae1XES0+bsHbc/sFBfVi5kJp156cc51BHinIH2l3k0EZ24vOBQ==
+ dependencies:
+ anymatch "^3.1.3"
+ chokidar "^4.0.3"
+ destr "^2.0.5"
+ h3 "^1.15.4"
+ lru-cache "^10.4.3"
+ node-fetch-native "^1.6.7"
+ ofetch "^1.4.1"
+ ufo "^1.6.1"
untun@^0.1.3:
version "0.1.3"
@@ -8467,38 +9120,36 @@ untun@^0.1.3:
consola "^3.2.3"
pathe "^1.1.1"
-untyped@^1.4.2:
- version "1.4.2"
- resolved "https://registry.yarnpkg.com/untyped/-/untyped-1.4.2.tgz#7945ea53357635434284e6112fd1afe84dd5dcab"
- integrity sha512-nC5q0DnPEPVURPhfPQLahhSTnemVtPzdx7ofiRxXpOB2SYnb3MfdU3DVGyJdS8Lx+tBWeAePO8BfU/3EgksM7Q==
+untyped@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/untyped/-/untyped-2.0.0.tgz#86bc205a4ec4b0137282285866b8278557aeee97"
+ integrity sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==
dependencies:
- "@babel/core" "^7.23.7"
- "@babel/standalone" "^7.23.8"
- "@babel/types" "^7.23.6"
+ citty "^0.1.6"
defu "^6.1.4"
- jiti "^1.21.0"
- mri "^1.2.0"
- scule "^1.2.0"
-
-unwasm@^0.3.7, unwasm@^0.3.9:
- version "0.3.9"
- resolved "https://registry.yarnpkg.com/unwasm/-/unwasm-0.3.9.tgz#01eca80a1cf2133743bc1bf5cfa749cc145beea0"
- integrity sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==
- dependencies:
- knitwork "^1.0.0"
- magic-string "^0.30.8"
- mlly "^1.6.1"
- pathe "^1.1.2"
- pkg-types "^1.0.3"
- unplugin "^1.10.0"
+ jiti "^2.4.2"
+ knitwork "^1.2.0"
+ scule "^1.3.0"
-update-browserslist-db@^1.0.13:
- version "1.0.13"
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4"
- integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==
+unwasm@^0.3.11:
+ version "0.3.11"
+ resolved "https://registry.yarnpkg.com/unwasm/-/unwasm-0.3.11.tgz#3c9a7f2be85d0bba8f6129b8cb631c3d0498213d"
+ integrity sha512-Vhp5gb1tusSQw5of/g3Q697srYgMXvwMgXMjcG4ZNga02fDX9coxJ9fAb0Ci38hM2Hv/U1FXRPGgjP2BYqhNoQ==
dependencies:
- escalade "^3.1.1"
- picocolors "^1.0.0"
+ knitwork "^1.2.0"
+ magic-string "^0.30.17"
+ mlly "^1.7.4"
+ pathe "^2.0.3"
+ pkg-types "^2.2.0"
+ unplugin "^2.3.6"
+
+update-browserslist-db@^1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz#7802aa2ae91477f255b86e0e46dbc787a206ad4a"
+ integrity sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==
+ dependencies:
+ escalade "^3.2.0"
+ picocolors "^1.1.1"
uqr@^0.1.2:
version "0.1.2"
@@ -8512,260 +9163,196 @@ uri-js@^4.2.2:
dependencies:
punycode "^2.1.0"
-url-parse-as-address@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/url-parse-as-address/-/url-parse-as-address-1.0.0.tgz#fb80901883f338b3cbed3538f5faa26adaf7f2e7"
- integrity sha512-1WJ8YX1Kcec9wgxy8d/ATzGP1ayO6BRnd3iB6NlM+7cOnn6U8p5PKppRTCPLobh3CSdJ4d0TdPjopzyU2KcVFw==
-
-urlpattern-polyfill@8.0.2:
- version "8.0.2"
- resolved "https://registry.yarnpkg.com/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz#99f096e35eff8bf4b5a2aa7d58a1523d6ebc7ce5"
- integrity sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==
-
util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
-uuid@^3.3.2:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
- integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
-
-v-lazy-show@^0.2.4:
- version "0.2.4"
- resolved "https://registry.yarnpkg.com/v-lazy-show/-/v-lazy-show-0.2.4.tgz#1c5e982bfbaa654a2cd831e43454494d79c054fb"
- integrity sha512-Lx9Str2i+HTh+zGzs9O3YyhGAZOAAfU+6MUUPcQPPiPxQO1sHBEv9sH3MO9bPc4T09gsjsS2+sbaCWQ1MdhpJQ==
-
-validate-npm-package-license@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
- integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
- dependencies:
- spdx-correct "^3.0.0"
- spdx-expression-parse "^3.0.0"
-
-validate-npm-package-name@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz#f16afd48318e6f90a1ec101377fa0384cfc8c713"
- integrity sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==
- dependencies:
- builtins "^5.0.0"
-
-vary@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
- integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
-
-verror@1.10.0:
- version "1.10.0"
- resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
- integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==
+vaul-vue@0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/vaul-vue/-/vaul-vue-0.4.1.tgz#76ad8ccf8f9a61ea89ae51874defd3e36a5cef6d"
+ integrity sha512-A6jOWOZX5yvyo1qMn7IveoWN91mJI5L3BUKsIwkg6qrTGgHs1Sb1JF/vyLJgnbN1rH4OOOxFbtqL9A46bOyGUQ==
dependencies:
- assert-plus "^1.0.0"
- core-util-is "1.0.2"
- extsprintf "^1.2.0"
+ "@vueuse/core" "^10.8.0"
+ reka-ui "^2.0.0"
+ vue "^3.4.5"
vfile-location@^5.0.0:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-5.0.2.tgz#220d9ca1ab6f8b2504a4db398f7ebc149f9cb464"
- integrity sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-5.0.3.tgz#cb9eacd20f2b6426d19451e0eafa3d0a846225c3"
+ integrity sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==
dependencies:
"@types/unist" "^3.0.0"
vfile "^6.0.0"
vfile-message@^4.0.0:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-4.0.2.tgz#c883c9f677c72c166362fd635f21fc165a7d1181"
- integrity sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-4.0.3.tgz#87b44dddd7b70f0641c2e3ed0864ba73e2ea8df4"
+ integrity sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==
dependencies:
"@types/unist" "^3.0.0"
unist-util-stringify-position "^4.0.0"
-vfile@^6.0.0:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/vfile/-/vfile-6.0.1.tgz#1e8327f41eac91947d4fe9d237a2dd9209762536"
- integrity sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==
+vfile@^6.0.0, vfile@^6.0.3:
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/vfile/-/vfile-6.0.3.tgz#3652ab1c496531852bf55a6bac57af981ebc38ab"
+ integrity sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==
dependencies:
"@types/unist" "^3.0.0"
- unist-util-stringify-position "^4.0.0"
vfile-message "^4.0.0"
-vite-hot-client@^0.2.3:
- version "0.2.3"
- resolved "https://registry.yarnpkg.com/vite-hot-client/-/vite-hot-client-0.2.3.tgz#db52aba46edbcfa7906dbca8255fd35b9a9270b2"
- integrity sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==
-
-vite-node@^1.4.0:
- version "1.5.2"
- resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-1.5.2.tgz#9e5fb28bd8bc68fe36e94f9156c3ae67796c002a"
- integrity sha512-Y8p91kz9zU+bWtF7HGt6DVw2JbhyuB2RlZix3FPYAYmUyZ3n7iTp8eSyLyY6sxtPegvxQtmlTMhfPhUfCUF93A==
+vite-dev-rpc@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/vite-dev-rpc/-/vite-dev-rpc-1.1.0.tgz#a54be63cc4dbb127bce1360e4b12d9038087c204"
+ integrity sha512-pKXZlgoXGoE8sEKiKJSng4hI1sQ4wi5YT24FCrwrLt6opmkjlqPPVmiPWWJn8M8byMxRGzp1CrFuqQs4M/Z39A==
dependencies:
- cac "^6.7.14"
- debug "^4.3.4"
- pathe "^1.1.1"
- picocolors "^1.0.0"
- vite "^5.0.0"
+ birpc "^2.4.0"
+ vite-hot-client "^2.1.0"
-vite-plugin-checker@^0.6.4:
- version "0.6.4"
- resolved "https://registry.yarnpkg.com/vite-plugin-checker/-/vite-plugin-checker-0.6.4.tgz#aca186ab605aa15bd2c5dd9cc6d7c8fdcbe214ec"
- integrity sha512-2zKHH5oxr+ye43nReRbC2fny1nyARwhxdm0uNYp/ERy4YvU9iZpNOsueoi/luXw5gnpqRSvjcEPxXbS153O2wA==
- dependencies:
- "@babel/code-frame" "^7.12.13"
- ansi-escapes "^4.3.0"
- chalk "^4.1.1"
- chokidar "^3.5.1"
- commander "^8.0.0"
- fast-glob "^3.2.7"
- fs-extra "^11.1.0"
- npm-run-path "^4.0.1"
- semver "^7.5.0"
- strip-ansi "^6.0.0"
- tiny-invariant "^1.1.0"
- vscode-languageclient "^7.0.0"
- vscode-languageserver "^7.0.0"
- vscode-languageserver-textdocument "^1.0.1"
- vscode-uri "^3.0.2"
-
-vite-plugin-inspect@^0.8.3:
- version "0.8.4"
- resolved "https://registry.yarnpkg.com/vite-plugin-inspect/-/vite-plugin-inspect-0.8.4.tgz#1fcdf6703164d651db3f13c8c6610e1ced5108e1"
- integrity sha512-G0N3rjfw+AiiwnGw50KlObIHYWfulVwaCBUBLh2xTW9G1eM9ocE5olXkEYUbwyTmX+azM8duubi+9w5awdCz+g==
- dependencies:
- "@antfu/utils" "^0.7.7"
- "@rollup/pluginutils" "^5.1.0"
- debug "^4.3.4"
- error-stack-parser-es "^0.1.1"
- fs-extra "^11.2.0"
- open "^10.1.0"
- perfect-debounce "^1.0.0"
- picocolors "^1.0.0"
- sirv "^2.0.4"
+vite-hot-client@^2.0.4, vite-hot-client@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/vite-hot-client/-/vite-hot-client-2.1.0.tgz#88f8469875e0121eae2f460cbf35cb528c049961"
+ integrity sha512-7SpgZmU7R+dDnSmvXE1mfDtnHLHQSisdySVR7lO8ceAXvM0otZeuQQ6C8LrS5d/aYyP/QZ0hI0L+dIPrm4YlFQ==
-vite-plugin-vue-inspector@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-4.0.2.tgz#1d02646b20f4dc72cda0c2e0309551c7b332df73"
- integrity sha512-KPvLEuafPG13T7JJuQbSm5PwSxKFnVS965+MP1we2xGw9BPkkc/+LPix5MMWenpKWqtjr0ws8THrR+KuoDC8hg==
- dependencies:
- "@babel/core" "^7.23.0"
- "@babel/plugin-proposal-decorators" "^7.23.0"
- "@babel/plugin-syntax-import-attributes" "^7.22.5"
- "@babel/plugin-syntax-import-meta" "^7.10.4"
- "@babel/plugin-transform-typescript" "^7.22.15"
- "@vue/babel-plugin-jsx" "^1.1.5"
- "@vue/compiler-dom" "^3.3.4"
- kolorist "^1.8.0"
- magic-string "^0.30.4"
+vite-node@^3.2.4:
+ version "3.2.4"
+ resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-3.2.4.tgz#f3676d94c4af1e76898c162c92728bca65f7bb07"
+ integrity sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==
+ dependencies:
+ cac "^6.7.14"
+ debug "^4.4.1"
+ es-module-lexer "^1.7.0"
+ pathe "^2.0.3"
+ vite "^5.0.0 || ^6.0.0 || ^7.0.0-0"
-vite@^5.0.0, vite@^5.2.8:
- version "5.2.10"
- resolved "https://registry.yarnpkg.com/vite/-/vite-5.2.10.tgz#2ac927c91e99d51b376a5c73c0e4b059705f5bd7"
- integrity sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw==
+vite-plugin-checker@^0.11.0:
+ version "0.11.0"
+ resolved "https://registry.yarnpkg.com/vite-plugin-checker/-/vite-plugin-checker-0.11.0.tgz#063ce180c3751b790a6472e19c5d1a352b215070"
+ integrity sha512-iUdO9Pl9UIBRPAragwi3as/BXXTtRu4G12L3CMrjx+WVTd9g/MsqNakreib9M/2YRVkhZYiTEwdH2j4Dm0w7lw==
+ dependencies:
+ "@babel/code-frame" "^7.27.1"
+ chokidar "^4.0.3"
+ npm-run-path "^6.0.0"
+ picocolors "^1.1.1"
+ picomatch "^4.0.3"
+ tiny-invariant "^1.3.3"
+ tinyglobby "^0.2.14"
+ vscode-uri "^3.1.0"
+
+vite-plugin-inspect@^11.3.3:
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/vite-plugin-inspect/-/vite-plugin-inspect-11.3.3.tgz#2b9c4db9574c59ebcf9647b37bb4eb5c5596b3be"
+ integrity sha512-u2eV5La99oHoYPHE6UvbwgEqKKOQGz86wMg40CCosP6q8BkB6e5xPneZfYagK4ojPJSj5anHCrnvC20DpwVdRA==
+ dependencies:
+ ansis "^4.1.0"
+ debug "^4.4.1"
+ error-stack-parser-es "^1.0.5"
+ ohash "^2.0.11"
+ open "^10.2.0"
+ perfect-debounce "^2.0.0"
+ sirv "^3.0.1"
+ unplugin-utils "^0.3.0"
+ vite-dev-rpc "^1.1.0"
+
+vite-plugin-vue-tracer@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/vite-plugin-vue-tracer/-/vite-plugin-vue-tracer-1.0.1.tgz#f091845c2f9d9fef97ff5ce01f0364ff8a7e29cc"
+ integrity sha512-L5/vAhT6oYbH4RSQYGLN9VfHexWe7SGzca1pJ7oPkL6KtxWA1jbGeb3Ri1JptKzqtd42HinOq4uEYqzhVWrzig==
dependencies:
- esbuild "^0.20.1"
- postcss "^8.4.38"
- rollup "^4.13.0"
+ estree-walker "^3.0.3"
+ exsolve "^1.0.7"
+ magic-string "^0.30.19"
+ pathe "^2.0.3"
+ source-map-js "^1.2.1"
+
+"vite@^5.0.0 || ^6.0.0 || ^7.0.0-0", vite@^7.1.9:
+ version "7.1.11"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-7.1.11.tgz#4d006746112fee056df64985191e846ebfb6007e"
+ integrity sha512-uzcxnSDVjAopEUjljkWh8EIrg6tlzrjFUfMcR1EVsRDGwf/ccef0qQPRyOrROwhrTDaApueq+ja+KLPlzR/zdg==
+ dependencies:
+ esbuild "^0.25.0"
+ fdir "^6.5.0"
+ picomatch "^4.0.3"
+ postcss "^8.5.6"
+ rollup "^4.43.0"
+ tinyglobby "^0.2.15"
optionalDependencies:
fsevents "~2.3.3"
-vscode-jsonrpc@6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0.tgz#108bdb09b4400705176b957ceca9e0880e9b6d4e"
- integrity sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==
-
-vscode-languageclient@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/vscode-languageclient/-/vscode-languageclient-7.0.0.tgz#b505c22c21ffcf96e167799757fca07a6bad0fb2"
- integrity sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==
- dependencies:
- minimatch "^3.0.4"
- semver "^7.3.4"
- vscode-languageserver-protocol "3.16.0"
+vscode-uri@^3.0.8, vscode-uri@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.1.0.tgz#dd09ec5a66a38b5c3fffc774015713496d14e09c"
+ integrity sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==
-vscode-languageserver-protocol@3.16.0:
- version "3.16.0"
- resolved "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0.tgz#34135b61a9091db972188a07d337406a3cdbe821"
- integrity sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==
+vue-bundle-renderer@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/vue-bundle-renderer/-/vue-bundle-renderer-2.2.0.tgz#7f9692b9507b741eaa695e7d7473d9864a79aa2e"
+ integrity sha512-sz/0WEdYH1KfaOm0XaBmRZOWgYTEvUDt6yPYaUzl4E52qzgWLlknaPPTTZmp6benaPTlQAI/hN1x3tAzZygycg==
dependencies:
- vscode-jsonrpc "6.0.0"
- vscode-languageserver-types "3.16.0"
+ ufo "^1.6.1"
-vscode-languageserver-textdocument@^1.0.1:
- version "1.0.11"
- resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.11.tgz#0822a000e7d4dc083312580d7575fe9e3ba2e2bf"
- integrity sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==
-
-vscode-languageserver-types@3.16.0:
- version "3.16.0"
- resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz#ecf393fc121ec6974b2da3efb3155644c514e247"
- integrity sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==
-
-vscode-languageserver@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-7.0.0.tgz#49b068c87cfcca93a356969d20f5d9bdd501c6b0"
- integrity sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==
+vue-component-meta@^3.0.6:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/vue-component-meta/-/vue-component-meta-3.1.1.tgz#16baf65ff74fa524206efd8628c84919fce2df43"
+ integrity sha512-jcYWMeEHkgaEGJBEVVg8aaN5QYXmi6RP9V9cO9ce9W9O4ZjlPxK+oiDAl4cNE16L2XRU7ZKMirzFCnZOL8bsgQ==
dependencies:
- vscode-languageserver-protocol "3.16.0"
-
-vscode-uri@^3.0.2:
- version "3.0.8"
- resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.8.tgz#1770938d3e72588659a172d0fd4642780083ff9f"
- integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
+ "@volar/typescript" "2.4.23"
+ "@vue/language-core" "3.1.1"
+ path-browserify "^1.0.1"
+ vue-component-type-helpers "3.1.1"
-vue-bundle-renderer@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/vue-bundle-renderer/-/vue-bundle-renderer-2.0.0.tgz#ecab5c9b2803ab2454ba212afef502e684ddbb8e"
- integrity sha512-oYATTQyh8XVkUWe2kaKxhxKVuuzK2Qcehe+yr3bGiaQAhK3ry2kYE4FWOfL+KO3hVFwCdLmzDQTzYhTi9C+R2A==
- dependencies:
- ufo "^1.2.0"
+vue-component-type-helpers@3.1.1, vue-component-type-helpers@^3.1.0:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/vue-component-type-helpers/-/vue-component-type-helpers-3.1.1.tgz#e76da933357524672e5e2bdc0024b15109a59b47"
+ integrity sha512-B0kHv7qX6E7+kdc5nsaqjdGZ1KwNKSUQDWGy7XkTYT7wFsOpkEyaJ1Vq79TjwrrtuLRgizrTV7PPuC4rRQo+vw==
-vue-demi@>=0.14.7:
- version "0.14.7"
- resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.14.7.tgz#8317536b3ef74c5b09f268f7782e70194567d8f2"
- integrity sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==
+vue-demi@>=0.13.0, vue-demi@>=0.14.8:
+ version "0.14.10"
+ resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.14.10.tgz#afc78de3d6f9e11bf78c55e8510ee12814522f04"
+ integrity sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==
vue-devtools-stub@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/vue-devtools-stub/-/vue-devtools-stub-0.1.0.tgz#a65b9485edecd4273cedcb8102c739b83add2c81"
integrity sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==
-vue-observe-visibility@^2.0.0-alpha.1:
- version "2.0.0-alpha.1"
- resolved "https://registry.yarnpkg.com/vue-observe-visibility/-/vue-observe-visibility-2.0.0-alpha.1.tgz#1e4eda7b12562161d58984b7e0dea676d83bdb13"
- integrity sha512-flFbp/gs9pZniXR6fans8smv1kDScJ8RS7rEpMjhVabiKeq7Qz3D9+eGsypncjfIyyU84saU88XZ0zjbD6Gq/g==
-
-vue-resize@^2.0.0-alpha.1:
- version "2.0.0-alpha.1"
- resolved "https://registry.yarnpkg.com/vue-resize/-/vue-resize-2.0.0-alpha.1.tgz#43eeb79e74febe932b9b20c5c57e0ebc14e2df3a"
- integrity sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg==
+vue-eslint-parser@^10.2.0:
+ version "10.2.0"
+ resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-10.2.0.tgz#cb53f89b14c7f5bf6a95c9532e3b2961ab619d61"
+ integrity sha512-CydUvFOQKD928UzZhTp4pr2vWz1L+H99t7Pkln2QSPdvmURT0MoC4wUccfCnuEaihNsu9aYYyk+bep8rlfkUXw==
+ dependencies:
+ debug "^4.4.0"
+ eslint-scope "^8.2.0"
+ eslint-visitor-keys "^4.2.0"
+ espree "^10.3.0"
+ esquery "^1.6.0"
+ semver "^7.6.3"
-vue-router@^4.3.0:
- version "4.3.2"
- resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.3.2.tgz#08096c7765dacc6832f58e35f7a081a8b34116a7"
- integrity sha512-hKQJ1vDAZ5LVkKEnHhmm1f9pMiWIBNGF5AwU67PdH7TyXCj/a4hTccuUuYCAMgJK6rO/NVYtQIEN3yL8CECa7Q==
+vue-router@^4.5.1:
+ version "4.6.3"
+ resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.6.3.tgz#52a40a231b910806438a8203c065a411fd3f1faa"
+ integrity sha512-ARBedLm9YlbvQomnmq91Os7ck6efydTSpRP3nuOKCvgJOHNrhRoJDSKtee8kcL1Vf7nz6U+PMBL+hTvR3bTVQg==
dependencies:
- "@vue/devtools-api" "^6.5.1"
+ "@vue/devtools-api" "^6.6.4"
-vue-virtual-scroller@2.0.0-beta.8:
- version "2.0.0-beta.8"
- resolved "https://registry.yarnpkg.com/vue-virtual-scroller/-/vue-virtual-scroller-2.0.0-beta.8.tgz#eeceda57e4faa5ba1763994c873923e2a956898b"
- integrity sha512-b8/f5NQ5nIEBRTNi6GcPItE4s7kxNHw2AIHLtDp+2QvqdTjVN0FgONwX9cr53jWRgnu+HRLPaWDOR2JPI5MTfQ==
+vue-tsc@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-3.1.1.tgz#66a5a9965a81d8cae03dd2c0350e2c05b24a2a4d"
+ integrity sha512-fyixKxFniOVgn+L/4+g8zCG6dflLLt01Agz9jl3TO45Bgk87NZJRmJVPsiK+ouq3LB91jJCbOV+pDkzYTxbI7A==
dependencies:
- mitt "^2.1.0"
- vue-observe-visibility "^2.0.0-alpha.1"
- vue-resize "^2.0.0-alpha.1"
+ "@volar/typescript" "2.4.23"
+ "@vue/language-core" "3.1.1"
-vue@^3.4.21:
- version "3.4.26"
- resolved "https://registry.yarnpkg.com/vue/-/vue-3.4.26.tgz#936c97e37672c737705d7bdfa62c31af18742269"
- integrity sha512-bUIq/p+VB+0xrJubaemrfhk1/FiW9iX+pDV+62I/XJ6EkspAO9/DXEjbDFoe8pIfOZBqfk45i9BMc41ptP/uRg==
+vue@^3.4.5, vue@^3.5.13, vue@^3.5.22:
+ version "3.5.22"
+ resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.22.tgz#2b8ddb94ee4b640ef12fe7f6efe1cf16f3b582e7"
+ integrity sha512-toaZjQ3a/G/mYaLSbV+QsQhIdMo9x5rrqIpYRObsJ6T/J+RyCSFwN2LHNVH9v8uIcljDNa3QzPVdv3Y6b9hAJQ==
dependencies:
- "@vue/compiler-dom" "3.4.26"
- "@vue/compiler-sfc" "3.4.26"
- "@vue/runtime-dom" "3.4.26"
- "@vue/server-renderer" "3.4.26"
- "@vue/shared" "3.4.26"
+ "@vue/compiler-dom" "3.5.22"
+ "@vue/compiler-sfc" "3.5.22"
+ "@vue/runtime-dom" "3.5.22"
+ "@vue/server-renderer" "3.5.22"
+ "@vue/shared" "3.5.22"
web-namespaces@^2.0.0:
version "2.0.1"
@@ -8777,15 +9364,10 @@ webidl-conversions@^3.0.0:
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
-webpack-sources@^3.2.3:
- version "3.2.3"
- resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde"
- integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
-
-webpack-virtual-modules@^0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.1.tgz#ac6fdb9c5adb8caecd82ec241c9631b7a3681b6f"
- integrity sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==
+webpack-virtual-modules@^0.6.2:
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz#057faa9065c8acf48f24cb57ac0e77739ab9a7e8"
+ integrity sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==
whatwg-url@^5.0.0:
version "5.0.0"
@@ -8795,6 +9377,11 @@ whatwg-url@^5.0.0:
tr46 "~0.0.3"
webidl-conversions "^3.0.0"
+wheel-gestures@^2.2.5:
+ version "2.2.48"
+ resolved "https://registry.yarnpkg.com/wheel-gestures/-/wheel-gestures-2.2.48.tgz#7b84b2522e66962efb50b5fe7e4a55503061255e"
+ integrity sha512-f+Gy33Oa5Z14XY9679Zze+7VFhbsQfBFXodnU2x589l4kxGM9L5Y8zETTmcMR5pWOPQyRv4Z0lNax6xCO0NSlA==
+
which@^2.0.1:
version "2.0.2"
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
@@ -8802,26 +9389,17 @@ which@^2.0.1:
dependencies:
isexe "^2.0.0"
-which@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/which/-/which-3.0.1.tgz#89f1cd0c23f629a8105ffe69b8172791c87b4be1"
- integrity sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==
- dependencies:
- isexe "^2.0.0"
-
-which@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/which/-/which-4.0.0.tgz#cd60b5e74503a3fbcfbf6cd6b4138a8bae644c1a"
- integrity sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==
+which@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/which/-/which-5.0.0.tgz#d93f2d93f79834d4363c7d0c23e00d07c466c8d6"
+ integrity sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==
dependencies:
isexe "^3.1.1"
-wide-align@^1.1.2:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3"
- integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==
- dependencies:
- string-width "^1.0.2 || 2 || 3 || 4"
+word-wrap@^1.2.5:
+ version "1.2.5"
+ resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34"
+ integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
version "7.0.0"
@@ -8846,20 +9424,40 @@ wrappy@1:
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
-ws@^8.14.2, ws@^8.16.0:
- version "8.17.0"
- resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.0.tgz#d145d18eca2ed25aaf791a183903f7be5e295fea"
- integrity sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==
+ws@^8.18.3:
+ version "8.18.3"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.3.tgz#b56b88abffde62791c639170400c93dcb0c95472"
+ integrity sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==
-ws@~8.11.0:
- version "8.11.0"
- resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143"
- integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==
+ws@~8.17.1:
+ version "8.17.1"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.1.tgz#9293da530bb548febc95371d90f9c878727d919b"
+ integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==
-xmlhttprequest-ssl@~2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz#91360c86b914e67f44dce769180027c0da618c67"
- integrity sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==
+wsl-utils@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/wsl-utils/-/wsl-utils-0.1.0.tgz#8783d4df671d4d50365be2ee4c71917a0557baab"
+ integrity sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==
+ dependencies:
+ is-wsl "^3.1.0"
+
+xml-name-validator@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835"
+ integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==
+
+xmlhttprequest-ssl@~2.1.1:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.1.2.tgz#e9e8023b3f29ef34b97a859f584c5e6c61418e23"
+ integrity sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==
+
+xss@^1.0.14:
+ version "1.0.15"
+ resolved "https://registry.yarnpkg.com/xss/-/xss-1.0.15.tgz#96a0e13886f0661063028b410ed1b18670f4e59a"
+ integrity sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg==
+ dependencies:
+ commander "^2.20.3"
+ cssfilter "0.0.10"
y18n@^5.0.5:
version "5.0.8"
@@ -8871,22 +9469,22 @@ yallist@^3.0.2:
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
-yallist@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
- integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
+yallist@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz#00e2de443639ed0d78fd87de0d27469fbcffb533"
+ integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==
-yaml@^2.3.2, yaml@^2.3.4:
- version "2.4.2"
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.2.tgz#7a2b30f2243a5fc299e1f14ca58d475ed4bc5362"
- integrity sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==
+yaml@^2.7.1, yaml@^2.8.0, yaml@^2.8.1:
+ version "2.8.1"
+ resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.8.1.tgz#1870aa02b631f7e8328b93f8bc574fac5d6c4d79"
+ integrity sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==
yargs-parser@^21.1.1:
version "21.1.1"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
-yargs@^17.2.1, yargs@^17.5.1:
+yargs@^17.5.1:
version "17.7.2"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"
integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==
@@ -8899,25 +9497,44 @@ yargs@^17.2.1, yargs@^17.5.1:
y18n "^5.0.5"
yargs-parser "^21.1.1"
-ylru@^1.2.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/ylru/-/ylru-1.4.0.tgz#0cf0aa57e9c24f8a2cbde0cc1ca2c9592ac4e0f6"
- integrity sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==
-
yocto-queue@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
+yocto-queue@^1.0.0:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.2.1.tgz#36d7c4739f775b3cbc28e6136e21aa057adec418"
+ integrity sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==
+
+yoctocolors@^2.1.1:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/yoctocolors/-/yoctocolors-2.1.2.tgz#d795f54d173494e7d8db93150cec0ed7f678c83a"
+ integrity sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==
+
yoga-wasm-web@^0.3.3:
version "0.3.3"
resolved "https://registry.yarnpkg.com/yoga-wasm-web/-/yoga-wasm-web-0.3.3.tgz#eb8e9fcb18e5e651994732f19a220cb885d932ba"
integrity sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==
-zhead@^2.2.4:
- version "2.2.4"
- resolved "https://registry.yarnpkg.com/zhead/-/zhead-2.2.4.tgz#87cd1e2c3d2f465fa9f43b8db23f9716dfe6bed7"
- integrity sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==
+youch-core@^0.3.3:
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/youch-core/-/youch-core-0.3.3.tgz#c5d3d85aeea0d8bc7b36e9764ed3f14b7ceddc7d"
+ integrity sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==
+ dependencies:
+ "@poppinss/exception" "^1.2.2"
+ error-stack-parser-es "^1.0.5"
+
+youch@4.1.0-beta.11, youch@^4.1.0-beta.11:
+ version "4.1.0-beta.11"
+ resolved "https://registry.yarnpkg.com/youch/-/youch-4.1.0-beta.11.tgz#9327b48185a945c6aa51e197a3d2d5d80dc7d682"
+ integrity sha512-sQi6PERyO/mT8w564ojOVeAlYTtVQmC2GaktQAf+IdI75/GKIggosBuvyVXvEV+FATAT6RbLdIjFoiIId4ozoQ==
+ dependencies:
+ "@poppinss/colors" "^4.1.5"
+ "@poppinss/dumper" "^0.6.4"
+ "@speed-highlight/core" "^1.2.7"
+ cookie "^1.0.2"
+ youch-core "^0.3.3"
zip-stream@^6.0.1:
version "6.0.1"
@@ -8928,7 +9545,17 @@ zip-stream@^6.0.1:
compress-commons "^6.0.2"
readable-stream "^4.0.0"
-zwitch@^2.0.0:
+zod-to-json-schema@^3.24.6:
+ version "3.24.6"
+ resolved "https://registry.yarnpkg.com/zod-to-json-schema/-/zod-to-json-schema-3.24.6.tgz#5920f020c4d2647edfbb954fa036082b92c9e12d"
+ integrity sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==
+
+zod@^3.25.76:
+ version "3.25.76"
+ resolved "https://registry.yarnpkg.com/zod/-/zod-3.25.76.tgz#26841c3f6fd22a6a2760e7ccb719179768471e34"
+ integrity sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==
+
+zwitch@^2.0.0, zwitch@^2.0.4:
version "2.0.4"
resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.4.tgz#c827d4b0acb76fc3e685a4c6ec2902d51070e9d7"
integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==
diff --git a/scripts/assemble-docker-tags.sh b/scripts/assemble-docker-tags.sh
index aa248b296..2894724fe 100755
--- a/scripts/assemble-docker-tags.sh
+++ b/scripts/assemble-docker-tags.sh
@@ -17,9 +17,17 @@ set -oe pipefail
# Environment Settings
# Required variables to set
-DEFAULT_IMAGE_VARIATION="${DEFAULT_IMAGE_VARIATION:-"cli"}"
PHP_VERSIONS_FILE="${PHP_VERSIONS_FILE:-"scripts/conf/php-versions.yml"}"
+# Validate PHP Versions file exists
+if [ ! -f "$PHP_VERSIONS_FILE" ]; then
+ echo "đ ERROR: PHP Versions file not found at $PHP_VERSIONS_FILE"
+ exit 1
+fi
+
+# Determine default image variation
+DEFAULT_IMAGE_VARIATION="${DEFAULT_IMAGE_VARIATION:-$(yq e -r '.php_variations[] | select(.default == true) | .name' "$PHP_VERSIONS_FILE" 2>/dev/null | head -n1 || true)}"
+
# Convert comma-separated DOCKER_REGISTRY_REPOSITORIES string to an array
IFS=',' read -ra DOCKER_REGISTRY_REPOSITORIES <<< "${DOCKER_REGISTRY_REPOSITORIES:-"docker.io/serversideup/php,ghcr.io/serversideup/php"}"
DOCKER_TAG_PREFIX="${DOCKER_TAG_PREFIX:-""}"
@@ -222,7 +230,6 @@ help_menu() {
echo " --stable-release Flag the tags for a stable release"
echo
echo "Environment Variables (Defaults):"
- echo " DEFAULT_IMAGE_VARIATION The default PHP image variation (default: cli)"
echo " DOCKER_REGISTRY_REPOSITORIES Names of images to tag (default: 'docker.io/serversideup/php' 'ghcr.io/serversideup/php')"
echo " PHP_VERSIONS_FILE Path to PHP versions file (default: scripts/conf/php-versions.yml)"
}
diff --git a/scripts/conf/php-versions-base-config.yml b/scripts/conf/php-versions-base-config.yml
index 5ef2bd1d4..03b726212 100644
--- a/scripts/conf/php-versions-base-config.yml
+++ b/scripts/conf/php-versions-base-config.yml
@@ -8,6 +8,12 @@ php_variations:
- bookworm
- trixie
- name: fpm-nginx
+ - name: frankenphp
+ excluded_minor_versions:
+ - "7.4"
+ - "8.0"
+ - "8.1"
+ - "8.2"
- name: unit
supported_os: # Alpine with Unit is not supported yet. Submit a PR if you can help (https://github.com/serversideup/docker-php/issues/233)
- bullseye
diff --git a/scripts/dev.sh b/scripts/dev.sh
index 860a7b402..f8b207540 100755
--- a/scripts/dev.sh
+++ b/scripts/dev.sh
@@ -26,7 +26,7 @@ PHP_BUILD_BASE_OS=""
PHP_BUILD_PREFIX=""
DOCKER_REPOSITORY="${DOCKER_REPOSITORY:-"serversideup/php"}"
DOCKER_ADDITIONAL_BUILD_ARGS=()
-CUSTOM_REGISTRY=""
+PUSH_TO_REGISTRY=false
PLATFORM=""
# UI Colors
@@ -113,14 +113,11 @@ build_docker_image() {
--file "$PROJECT_ROOT_DIR/src/variations/$PHP_BUILD_VARIATION/Dockerfile" \
"$PROJECT_ROOT_DIR"
echo_color_message green "â
Docker Image Built: $build_tag"
-
- if [ -n "$CUSTOM_REGISTRY" ]; then
- registry_tag="${CUSTOM_REGISTRY}/${build_tag}"
- echo_color_message yellow "đˇī¸ Tagging image for custom registry: $registry_tag"
- docker tag "$build_tag" "$registry_tag"
- echo_color_message yellow "đ Pushing image to custom registry: $registry_tag"
- docker push "$registry_tag"
- echo_color_message green "â
Image pushed to custom registry: $registry_tag"
+
+ if [ "$PUSH_TO_REGISTRY" = true ]; then
+ echo_color_message yellow "đ Pushing image to registry: $build_tag"
+ docker push "$build_tag"
+ echo_color_message green "â
Image pushed to registry: $build_tag"
fi
}
@@ -139,10 +136,8 @@ help_menu() {
echo " --prefix Set the prefix for the Docker image (e.g., beta)"
echo " --registry Set a custom registry (e.g., localhost:5000)"
echo " --platform Set the platform (default: detected from system architecture)"
+ echo " --push Push the image to the registry"
echo " --* Any additional options will be passed to the docker buildx command"
- echo
- echo "Environment Variables:"
- echo " DOCKER_REPOSITORY The Docker repository (default: serversideup/php)"
}
##########################
@@ -167,9 +162,10 @@ while [[ $# -gt 0 ]]; do
shift 2
;;
--registry)
- CUSTOM_REGISTRY="$2"
+ DOCKER_REPOSITORY="$2"
shift 2
;;
+
--platform)
PLATFORM="$2"
shift 2
diff --git a/scripts/generate-matrix.sh b/scripts/generate-matrix.sh
old mode 100644
new mode 100755
index ddf5e7ec0..20a17b4ea
--- a/scripts/generate-matrix.sh
+++ b/scripts/generate-matrix.sh
@@ -36,15 +36,14 @@ yq -o=json "$PHP_VERSIONS_FILE" | jq -c '
((($variation.supported_os // []) | any(os_family_match($os.name; .))));
. as $root
- | [ ($root.php_variations[] | {name, supported_os}) as $variation
+ | [ ($root.php_variations[] | {name, supported_os, excluded_minor_versions}) as $variation
| $root.php_versions[]
- | .minor_versions[]
- | .base_os[] as $os
- | .patch_versions[] as $patch
+ | .minor_versions[] as $minor
+ | select((($variation.excluded_minor_versions // []) | index($minor.minor)) | not)
+ | $minor.base_os[] as $os
+ | $minor.patch_versions[] as $patch
| select(is_supported($variation; $os))
| {patch_version: $patch, base_os: $os.name, php_variation: $variation.name}
]
| { include: ( . | sort_by(.patch_version | version_weight) | reverse ) }
-'
-
-
+'
\ No newline at end of file
diff --git a/scripts/get-nginx-versions.sh b/scripts/get-nginx-versions.sh
index a57202526..80ec5a76b 100755
--- a/scripts/get-nginx-versions.sh
+++ b/scripts/get-nginx-versions.sh
@@ -21,8 +21,8 @@ os_config() {
echo "yq is required but not found. Install 'yq' (https://github.com/mikefarah/yq) to continue." 1>&2
return 1
fi
- # jq is not required; all updates are handled via yq
-
+
+ # shellcheck disable=SC2016
yq -r '.operating_systems[] | .family as $f | .versions[] | "\(.version)|\($f)|\(.name)"' "$config_file" \
| while IFS='|' read -r version family name; do
if [[ "$family" == "alpine" ]]; then
diff --git a/scripts/get-php-versions.sh b/scripts/get-php-versions.sh
index bda9d8b03..fb4d588b1 100755
--- a/scripts/get-php-versions.sh
+++ b/scripts/get-php-versions.sh
@@ -1,6 +1,6 @@
#!/bin/bash
###################################################
-# Usage: get-php-versions.sh [--skip-download] [--skip-dockerhub-validation]
+# Usage: get-php-versions.sh [--skip-download] [--skip-dockerhub-validation] [--input PATH] [--output PATH]
###################################################
# This file takes the official latest PHP releases from php.net merges them with our
# "base php configuration". These files get merged into a final file called "php-versions.yml"
@@ -22,6 +22,8 @@
# đ OPTIONS
# --skip-download: Skip downloading from php.net and use existing base config
# --skip-dockerhub-validation: Skip DockerHub validation (useful for testing/development)
+# --input: Input file path (defaults to scripts/conf/php-versions-base-config.yml)
+# --output: Output file path (defaults to scripts/conf/php-versions.yml)
set -oue pipefail
@@ -167,6 +169,24 @@ while [[ "$#" -gt 0 ]]; do
case $1 in
--skip-download) SKIP_DOWNLOAD=true ;;
--skip-dockerhub-validation) SKIP_DOCKERHUB_VALIDATION=true ;;
+ --input)
+ if [ -z "$2" ]; then
+ echo "Error: --input requires a file path."
+ exit 1
+ fi
+ BASE_PHP_VERSIONS_CONFIG_FILE="$2"
+ shift 2
+ continue
+ ;;
+ --output)
+ if [ -z "$2" ]; then
+ echo "Error: --output requires a file path."
+ exit 1
+ fi
+ FINAL_PHP_VERSIONS_CONFIG_FILE="$2"
+ shift 2
+ continue
+ ;;
*) echo "Unknown parameter passed: $1"; exit 1 ;;
esac
shift
@@ -184,7 +204,7 @@ PHP_VERSIONS_ACTIVE_JSON_FEED="${PHP_VERSIONS_ACTIVE_JSON_FEED:-"https://www.php
# File settings
BASE_PHP_VERSIONS_CONFIG_FILE="${BASE_PHP_VERSIONS_CONFIG_FILE:-"$SCRIPT_DIR/conf/php-versions-base-config.yml"}"
DOWNLOADED_PHP_VERSIONS_CONFIG_FILE="$SCRIPT_DIR/conf/php-versions-downloaded.yml.tmp"
-FINAL_PHP_VERSIONS_CONFIG_FILE="$SCRIPT_DIR/conf/php-versions.yml"
+FINAL_PHP_VERSIONS_CONFIG_FILE="${FINAL_PHP_VERSIONS_CONFIG_FILE:-"$SCRIPT_DIR/conf/php-versions.yml"}"
# UI Colors
function ui_set_yellow {
@@ -287,7 +307,7 @@ if [ "$SKIP_DOWNLOAD" = false ]; then
fi
# Parse the fetched JSON data and transform it to a specific YAML structure using jq and yq.
- php_net_yaml_data=$(echo "$php_net_version_json" | jq -r "
+ php_net_yaml_data=$(echo "$processed_json" | jq -r "
{
\"php_versions\": [
. as \$major |
diff --git a/src/common/etc/entrypoint.d/0-container-info.sh b/src/common/etc/entrypoint.d/0-container-info.sh
index 28d52a018..a71de57ca 100644
--- a/src/common/etc/entrypoint.d/0-container-info.sh
+++ b/src/common/etc/entrypoint.d/0-container-info.sh
@@ -4,9 +4,22 @@ if [ "$SHOW_WELCOME_MESSAGE" = "false" ] || [ "$LOG_OUTPUT_LEVEL" = "off" ] || [
echo "đ $0: Container info was display was skipped."
fi
# Skip the rest of the script
- return 0
+ exit 0
fi
+# Get OPcache status
+PHP_OPCACHE_STATUS=$(php -r 'echo ini_get("opcache.enable");')
+
+if [ "$PHP_OPCACHE_STATUS" = "1" ]; then
+ PHP_OPCACHE_MESSAGE="â
Enabled"
+else
+ PHP_OPCACHE_MESSAGE="â Disabled"
+fi
+
+# Get memory limits
+MEMORY_LIMIT=$(php -r 'echo ini_get("memory_limit");')
+UPLOAD_LIMIT=$(php -r 'echo ini_get("upload_max_filesize");')
+
echo '
--------------------------------------------------------------------
____ ____ _ _ _ _
@@ -17,32 +30,33 @@ echo '
|_|
Brought to you by serversideup.net
---------------------------------------------------------------------'
-
-PHP_OPCACHE_STATUS=$(php -r 'echo ini_get("opcache.enable");')
-
-if [ "$PHP_OPCACHE_STATUS" = "1" ]; then
- PHP_OPCACHE_MESSAGE="â
Enabled"
-else
- PHP_OPCACHE_MESSAGE="â Disabled"
-fi
+--------------------------------------------------------------------
-echo '
-đ To support Server Side Up projects visit:
-https://serversideup.net/sponsor
+đ Documentation: https://serversideup.net/php/docs
+đŦ Get Help: https://serversideup.net/php/community
+đ Sponsor: https://serversideup.net/sponsor
-------------------------------------
âšī¸ Container Information
--------------------------------------'
-echo "
-OS: $(. /etc/os-release; echo "${PRETTY_NAME}")
-Docker user: $(whoami)
-Docker uid: $(id -u)
-Docker gid: $(id -g)
-OPcache: $PHP_OPCACHE_MESSAGE
-PHP Version: $(php -r 'echo phpversion();')
-Image Version: $(cat /etc/serversideup-php-version)
-"
+-------------------------------------
+đĻ Versions
+âĸ Image: '"$(cat /etc/serversideup-php-version)"'
+âĸ PHP: '"$(php -r 'echo phpversion();')"'
+âĸ OS: '"$(. /etc/os-release; echo "${PRETTY_NAME}")"'
+
+đ¤ Container User
+âĸ User: '"$(whoami)"'
+âĸ UID: '"$(id -u)"'
+âĸ GID: '"$(id -g)"'
+
+⥠Performance
+âĸ OPcache: '"$PHP_OPCACHE_MESSAGE"'
+âĸ Memory Limit: '"$MEMORY_LIMIT"'
+âĸ Upload Limit: '"$UPLOAD_LIMIT"'
+
+đ Runtime
+âĸ Docker CMD: '"$DOCKER_CMD"'
+'
if [ "$PHP_OPCACHE_STATUS" = "0" ]; then
echo "đ [NOTICE]: Improve PHP performance by setting PHP_OPCACHE_ENABLE=1 (recommended for production)."
diff --git a/src/common/etc/entrypoint.d/1-log-output-level.sh b/src/common/etc/entrypoint.d/1-log-output-level.sh
index 44f6cd9a3..6f93c6a0d 100644
--- a/src/common/etc/entrypoint.d/1-log-output-level.sh
+++ b/src/common/etc/entrypoint.d/1-log-output-level.sh
@@ -5,7 +5,7 @@ if [ "$DISABLE_DEFAULT_CONFIG" = true ]; then
if [ "$LOG_OUTPUT_LEVEL" = "debug" ]; then
echo "đ $script_name: DISABLE_DEFAULT_CONFIG does not equal \"false\", so debug mode will NOT be automatically set."
fi
- return 0 # Exit if DISABLE_DEFAULT_CONFIG is true
+ exit 0 # Exit if DISABLE_DEFAULT_CONFIG is true
fi
#######################################
diff --git a/src/common/etc/entrypoint.d/50-laravel-automations.sh b/src/common/etc/entrypoint.d/50-laravel-automations.sh
index b6f217de7..1e86e0348 100644
--- a/src/common/etc/entrypoint.d/50-laravel-automations.sh
+++ b/src/common/etc/entrypoint.d/50-laravel-automations.sh
@@ -1,133 +1,428 @@
#!/bin/sh
script_name="laravel-automations"
-test_db_connection() {
- php -r "
- require '$APP_BASE_DIR/vendor/autoload.php';
- use Illuminate\Support\Facades\DB;
-
- \$app = require_once '$APP_BASE_DIR/bootstrap/app.php';
- \$kernel = \$app->make(Illuminate\Contracts\Console\Kernel::class);
- \$kernel->bootstrap();
-
- \$driver = DB::getDriverName();
-
- if( \$driver === 'sqlite' ){
- echo 'SQLite detected';
- exit(0); // Assume SQLite is always ready
- }
-
- try {
- DB::connection()->getPdo(); // Attempt to get PDO instance
- if (DB::connection()->getDatabaseName()) {
- exit(0); // Database exists and can be connected to, exit with status 0 (success)
- } else {
- echo 'Database name not found.';
- exit(1); // Database name not found, exit with status 1 (failure)
- }
- } catch (Exception \$e) {
- echo 'Database connection error: ' . \$e->getMessage();
- exit(1); // Connection error, exit with status 1 (failure)
- }
- "
-}
-
+# Global configurations
+: "${DISABLE_DEFAULT_CONFIG:=false}"
+: "${APP_BASE_DIR:=/var/www/html}"
+: "${AUTORUN_LIB_DIR:=/etc/entrypoint.d/lib}"
# Set default values for Laravel automations
: "${AUTORUN_ENABLED:=false}"
+: "${AUTORUN_DEBUG:=false}"
+
+# Set default values for storage link
+: "${AUTORUN_LARAVEL_STORAGE_LINK:=true}"
+
+# Set default values for optimizations
+: "${AUTORUN_LARAVEL_OPTIMIZE:=true}"
+: "${AUTORUN_LARAVEL_CONFIG_CACHE:=true}"
+: "${AUTORUN_LARAVEL_ROUTE_CACHE:=true}"
+: "${AUTORUN_LARAVEL_VIEW_CACHE:=true}"
+: "${AUTORUN_LARAVEL_EVENT_CACHE:=true}"
+
+# Set default values for Migrations
+: "${AUTORUN_LARAVEL_MIGRATION:=true}"
+: "${AUTORUN_LARAVEL_MIGRATION_DATABASE:=}"
+: "${AUTORUN_LARAVEL_MIGRATION_FORCE:=true}"
+: "${AUTORUN_LARAVEL_MIGRATION_ISOLATION:=false}"
+: "${AUTORUN_LARAVEL_MIGRATION_MODE:=default}"
+: "${AUTORUN_LARAVEL_MIGRATION_SEED:=false}"
+: "${AUTORUN_LARAVEL_MIGRATION_SKIP_DB_CHECK:=false}"
: "${AUTORUN_LARAVEL_MIGRATION_TIMEOUT:=30}"
-if [ "$DISABLE_DEFAULT_CONFIG" = "false" ]; then
- # Check to see if an Artisan file exists and assume it means Laravel is configured.
- if [ -f "$APP_BASE_DIR/artisan" ] && [ "$AUTORUN_ENABLED" = "true" ]; then
- echo "Checking for Laravel automations..."
- ############################################################################
- # artisan migrate
- ############################################################################
- if [ "${AUTORUN_LARAVEL_MIGRATION:=true}" = "true" ]; then
- count=0
- timeout=$AUTORUN_LARAVEL_MIGRATION_TIMEOUT
-
- echo "đ Clearing Laravel cache before attempting migrations..."
- php "$APP_BASE_DIR/artisan" config:clear
-
- # Do not exit on error for this loop
- set +e
- echo "âĄī¸ Attempting database connection..."
- while [ $count -lt "$timeout" ]; do
- test_db_connection > /dev/null 2>&1
- status=$?
- if [ $status -eq 0 ]; then
- echo "â
Database connection successful."
- break
- else
- echo "Waiting on database connection, retrying... $((timeout - count)) seconds left"
- count=$((count + 1))
- sleep 1
- fi
- done
-
- # Re-enable exit on error
- set -e
+# Set default values for Laravel version
+INSTALLED_LARAVEL_VERSION=""
+
+############################################################################
+# Sanity Checks
+############################################################################
+
+debug_log() {
+ if [ "$LOG_OUTPUT_LEVEL" = "debug" ] || [ "$AUTORUN_DEBUG" = "true" ]; then
+ echo "đ DEBUG ($script_name): $1" >&2
+ fi
+}
+
+if [ "$DISABLE_DEFAULT_CONFIG" = "true" ] || [ "$AUTORUN_ENABLED" = "false" ]; then
+ debug_log "Skipping Laravel automations because DISABLE_DEFAULT_CONFIG is true or AUTORUN_ENABLED is false."
+ exit 0
+fi
+
+############################################################################
+# Functions
+############################################################################
+
+artisan_migrate() {
+ migrate_flags=""
+
+ debug_log "Starting migrations (isolation: $AUTORUN_LARAVEL_MIGRATION_ISOLATION)"
+
+ echo "đ Clearing Laravel cache before attempting migrations..."
+ php "$APP_BASE_DIR/artisan" config:clear
+
+ # Determine the migration command to use
+ case "$AUTORUN_LARAVEL_MIGRATION_MODE" in
+ default)
+ migration_command="migrate"
+ ;;
+ fresh)
+ migration_command="migrate:fresh"
+ ;;
+ refresh)
+ migration_command="migrate:refresh"
+ ;;
+ esac
+
+ # Build migration flags (used for all databases)
+ if [ "$AUTORUN_LARAVEL_MIGRATION_ISOLATION" = "true" ]; then
+ # Isolation only works in default mode
+ if [ "$AUTORUN_LARAVEL_MIGRATION_MODE" != "default" ]; then
+ echo "â $script_name: Isolated migrations are only supported in default mode."
+ return 1
+ fi
+
+ # Isolation requires Laravel 9.38.0+
+ if ! laravel_version_is_at_least "9.38.0"; then
+ echo "â $script_name: Isolated migrations require Laravel v9.38.0 or above. Detected version: $(get_laravel_version)"
+ return 1
+ fi
+
+ migrate_flags="$migrate_flags --isolated"
+ fi
+
+ if [ "$AUTORUN_LARAVEL_MIGRATION_FORCE" = "true" ]; then
+ migrate_flags="$migrate_flags --force"
+ fi
+
+ if [ "$AUTORUN_LARAVEL_MIGRATION_SEED" = "true" ]; then
+ migrate_flags="$migrate_flags --seed"
+ fi
- if [ $count -eq "$timeout" ]; then
- echo "Database connection failed after multiple attempts."
+ # Determine if multiple databases are specified
+ if [ -n "$AUTORUN_LARAVEL_MIGRATION_DATABASE" ]; then
+ databases=$(convert_comma_delimited_to_space_separated "$AUTORUN_LARAVEL_MIGRATION_DATABASE")
+ database_list=$(echo "$databases" | tr ',' ' ')
+
+ for db in $database_list; do
+ # Wait for this specific database to be ready
+ if ! wait_for_database_connection "$db"; then
+ echo "â $script_name: Failed to connect to database: $db"
return 1
fi
+
+ echo "đ Running migrations for database: $db"
+ php "$APP_BASE_DIR/artisan" $migration_command --database=$db $migrate_flags
+ done
+ else
+ # Wait for default database connection
+ if ! wait_for_database_connection; then
+ echo "â $script_name: Failed to connect to default database"
+ return 1
+ fi
+
+ # Run migration with default database connection
+ php "$APP_BASE_DIR/artisan" $migration_command $migrate_flags
+ fi
+}
- echo "đ Running migrations..."
- if [ "${AUTORUN_LARAVEL_MIGRATION_ISOLATION:=false}" = "true" ]; then
- php "$APP_BASE_DIR/artisan" migrate --force --isolated
- else
- php "$APP_BASE_DIR/artisan" migrate --force
- fi
+artisan_storage_link() {
+ if [ -d "$APP_BASE_DIR/public/storage" ]; then
+ echo "â
Storage already linked..."
+ return 0
+ else
+ echo "đ Running storage link: \"php artisan storage:link\"..."
+ if ! php "$APP_BASE_DIR/artisan" storage:link; then
+ echo "â $script_name: Storage link failed"
+ return 1
fi
+ fi
+}
- ############################################################################
- # artisan storage:link
- ############################################################################
- if [ "${AUTORUN_LARAVEL_STORAGE_LINK:=true}" = "true" ]; then
- if [ -d "$APP_BASE_DIR/public/storage" ]; then
- echo "â
Storage already linked..."
- else
- echo "đ Linking the storage..."
- php "$APP_BASE_DIR/artisan" storage:link
+artisan_optimize() {
+ debug_log "Starting Laravel optimizations..."
+
+ # Determine which optimizations are requested
+ all_opts_enabled="false"
+ if [ "$AUTORUN_LARAVEL_OPTIMIZE" = "true" ] && \
+ [ "$AUTORUN_LARAVEL_CONFIG_CACHE" = "true" ] && \
+ [ "$AUTORUN_LARAVEL_ROUTE_CACHE" = "true" ] && \
+ [ "$AUTORUN_LARAVEL_VIEW_CACHE" = "true" ] && \
+ [ "$AUTORUN_LARAVEL_EVENT_CACHE" = "true" ]; then
+ all_opts_enabled="true"
+ fi
+
+ # Case 1: All optimizations enabled - use simple optimize command
+ if [ "$all_opts_enabled" = "true" ]; then
+ debug_log "All optimizations enabled, using 'php artisan optimize'"
+ echo "đ Running optimize command: \"php artisan optimize\"..."
+ if ! php "$APP_BASE_DIR/artisan" optimize; then
+ echo "â $script_name: Laravel optimize failed"
+ return 1
+ fi
+ return 0
+ fi
+
+ # Case 2: AUTORUN_LARAVEL_OPTIMIZE is true with selective optimizations (Laravel 11.38.0+)
+ if [ "$AUTORUN_LARAVEL_OPTIMIZE" = "true" ]; then
+ if laravel_version_is_at_least "11.38.0"; then
+ debug_log "Using 'php artisan optimize --except' for selective optimizations"
+ echo "đ ī¸ Preparing selective optimizations..."
+ except=""
+
+ # Build except string for disabled optimizations
+ [ "$AUTORUN_LARAVEL_CONFIG_CACHE" = "false" ] && except="${except:+${except},}config"
+ [ "$AUTORUN_LARAVEL_ROUTE_CACHE" = "false" ] && except="${except:+${except},}routes"
+ [ "$AUTORUN_LARAVEL_VIEW_CACHE" = "false" ] && except="${except:+${except},}views"
+ [ "$AUTORUN_LARAVEL_EVENT_CACHE" = "false" ] && except="${except:+${except},}events"
+
+ echo "đ Running optimizations: \"php artisan optimize ${except:+--except=${except}}\"..."
+ if ! php "$APP_BASE_DIR/artisan" optimize ${except:+--except=${except}}; then
+ echo "â $script_name: Laravel optimize failed"
+ return 1
fi
+ return 0
+ else
+ debug_log "Laravel version < 11.38.0, falling back to individual optimization commands"
+ echo "âšī¸ Selective optimizations with 'php artisan optimize --except' require Laravel v11.38.0 or above, using individual commands instead..."
fi
- ############################################################################
- # artisan config:cache
- ############################################################################
- if [ "${AUTORUN_LARAVEL_CONFIG_CACHE:=true}" = "true" ]; then
- echo "đ Caching Laravel config..."
- php "$APP_BASE_DIR/artisan" config:cache
+ fi
+
+ # Case 3: Run individual optimization commands
+ # This runs when:
+ # - AUTORUN_LARAVEL_OPTIMIZE is false (user wants granular control), OR
+ # - AUTORUN_LARAVEL_OPTIMIZE is true but Laravel < 11.38.0 (fallback)
+ debug_log "Running individual optimization commands"
+
+ if [ "$AUTORUN_LARAVEL_CONFIG_CACHE" = "true" ]; then
+ echo "đ Caching config: \"php artisan config:cache\"..."
+ if ! php "$APP_BASE_DIR/artisan" config:cache; then
+ echo "â $script_name: Config cache failed"
+ return 1
fi
+ fi
- ############################################################################
- # artisan route:cache
- ############################################################################
- if [ "${AUTORUN_LARAVEL_ROUTE_CACHE:=true}" = "true" ]; then
- echo "đ Caching Laravel routes..."
- php "$APP_BASE_DIR/artisan" route:cache
+ if [ "$AUTORUN_LARAVEL_ROUTE_CACHE" = "true" ]; then
+ echo "đ Caching routes: \"php artisan route:cache\"..."
+ if ! php "$APP_BASE_DIR/artisan" route:cache; then
+ echo "â $script_name: Route cache failed"
+ return 1
fi
+ fi
- ############################################################################
- # artisan view:cache
- ############################################################################
- if [ "${AUTORUN_LARAVEL_VIEW_CACHE:=true}" = "true" ]; then
- echo "đ Caching Laravel views..."
- php "$APP_BASE_DIR/artisan" view:cache
+ if [ "$AUTORUN_LARAVEL_VIEW_CACHE" = "true" ]; then
+ echo "đ Caching views: \"php artisan view:cache\"..."
+ if ! php "$APP_BASE_DIR/artisan" view:cache; then
+ echo "â $script_name: View cache failed"
+ return 1
fi
+ fi
- ############################################################################
- # artisan event:cache
- ############################################################################
- if [ "${AUTORUN_LARAVEL_EVENT_CACHE:=true}" = "true" ]; then
- echo "đ Caching Laravel events..."
- php "$APP_BASE_DIR/artisan" event:cache
+ if [ "$AUTORUN_LARAVEL_EVENT_CACHE" = "true" ]; then
+ echo "đ Caching events: \"php artisan event:cache\"..."
+ if ! php "$APP_BASE_DIR/artisan" event:cache; then
+ echo "â $script_name: Event cache failed"
+ return 1
fi
fi
-else
- if [ "$LOG_OUTPUT_LEVEL" = "debug" ]; then
- echo "đ $script_name: DISABLE_DEFAULT_CONFIG does not equal 'false', so automations will NOT be performed."
+
+ return 0
+}
+
+convert_comma_delimited_to_space_separated() {
+ echo $1 | tr ',' ' '
+}
+
+get_laravel_version() {
+ # Return cached version if already set
+ if [ -n "$INSTALLED_LARAVEL_VERSION" ]; then
+ debug_log "Using cached Laravel version: $INSTALLED_LARAVEL_VERSION"
+ echo "$INSTALLED_LARAVEL_VERSION"
+ return 0
fi
-fi
+
+ debug_log "Detecting Laravel version..."
+ # Use 2>/dev/null to handle potential PHP warnings
+ artisan_version_output=$(php "$APP_BASE_DIR/artisan" --version 2>/dev/null)
+
+ # Check if command was successful
+ if [ $? -ne 0 ]; then
+ echo "â $script_name: Failed to execute artisan command" >&2
+ return 1
+ fi
+
+ # Extract version number using sed (POSIX compliant)
+ # Using a more strict pattern that matches "Laravel Framework X.Y.Z"
+ laravel_version=$(echo "$artisan_version_output" | sed -e 's/^Laravel Framework \([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*$/\1/')
+
+ # Validate that we got a version number (POSIX compliant regex)
+ if echo "$laravel_version" | grep '^[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*$' >/dev/null 2>&1; then
+ INSTALLED_LARAVEL_VERSION="$laravel_version"
+ debug_log "Detected Laravel version: $laravel_version"
+ echo "$laravel_version"
+ return 0
+ else
+ echo "â $script_name: Failed to determine Laravel version" >&2
+ return 1
+ fi
+}
+
+laravel_is_installed() {
+ if [ ! -f "$APP_BASE_DIR/artisan" ]; then
+ return 1
+ fi
+
+ if [ ! -d "$APP_BASE_DIR/vendor" ]; then
+ return 1
+ fi
+
+ return 0
+}
+
+laravel_version_is_at_least() {
+ required_version="$1"
+
+ if [ -z "$required_version" ]; then
+ echo "â $script_name - Usage: laravel_version_is_at_least " >&2
+ return 1
+ fi
+
+ # Validate required version format
+ if ! echo "$required_version" | grep -Eq '^[0-9]+\.[0-9]+(\.[0-9]+)?$'; then
+ echo "â $script_name - Invalid version requirement format: $required_version" >&2
+ return 1
+ fi
+
+ current_version=$(get_laravel_version)
+ if [ $? -ne 0 ]; then
+ echo "â $script_name: Failed to get Laravel version" >&2
+ return 1
+ fi
+
+ # normalize_version() takes a version string and ensures it has 3 parts
+ normalize_version() {
+ echo "$1" | awk -F. '{ print $1"."$2"."(NF>2?$3:0) }'
+ }
+
+ normalized_current=$(normalize_version "$current_version")
+ normalized_required=$(normalize_version "$required_version")
+
+ # Use sort -V to get the lower version, then compare it with required version
+ # This works in BusyBox because we only need to check the first line of output
+ lowest_version=$(printf '%s\n%s\n' "$normalized_required" "$normalized_current" | sort -V | head -n1)
+ if [ "$lowest_version" = "$normalized_required" ]; then
+ return 0 # Success: current version is >= required version
+ else
+ return 1 # Failure: current version is < required version
+ fi
+}
+
+test_db_connection() {
+ if [ "$AUTORUN_LARAVEL_MIGRATION_SKIP_DB_CHECK" = "true" ]; then
+ return 0
+ fi
+
+ # Pass database connection name only if specified (not empty)
+ database_arg="${1:-}"
+ if [ -n "$database_arg" ]; then
+ php "$AUTORUN_LIB_DIR/laravel/test-db-connection.php" "$APP_BASE_DIR" "$AUTORUN_LARAVEL_MIGRATION_MODE" "$AUTORUN_LARAVEL_MIGRATION_ISOLATION" "$database_arg"
+ else
+ php "$AUTORUN_LIB_DIR/laravel/test-db-connection.php" "$APP_BASE_DIR" "$AUTORUN_LARAVEL_MIGRATION_MODE" "$AUTORUN_LARAVEL_MIGRATION_ISOLATION"
+ fi
+}
+
+wait_for_database_connection() {
+ database_name="${1:-}"
+ count=0
+ timeout=$AUTORUN_LARAVEL_MIGRATION_TIMEOUT
+
+ # Determine display name based on whether a specific connection was provided
+ if [ -z "$database_name" ]; then
+ display_name="default database"
+ connection_label=""
+ else
+ display_name="database connection: $database_name"
+ connection_label=": $database_name"
+ fi
+
+ debug_log "Waiting for connection to $display_name (timeout: ${timeout}s)"
+
+ # Do not exit on error for this loop
+ set +e
+ echo "âĄī¸ Attempting connection to $display_name..."
+ while [ $count -lt "$timeout" ]; do
+ if [ "$AUTORUN_DEBUG" = "true" ]; then
+ # Show output when debug is enabled
+ # Only pass database_name if it's not empty
+ if [ -z "$database_name" ]; then
+ test_db_connection
+ else
+ test_db_connection "$database_name"
+ fi
+ else
+ # Otherwise suppress output
+ if [ -z "$database_name" ]; then
+ test_db_connection > /dev/null 2>&1
+ else
+ test_db_connection "$database_name" > /dev/null 2>&1
+ fi
+ fi
+ status=$?
+ if [ $status -eq 0 ]; then
+ echo "â
Database connection successful$connection_label"
+ set -e
+ return 0
+ else
+ # Only log every 5 attempts to reduce noise
+ if [ $((count % 5)) -eq 0 ]; then
+ debug_log "Connection attempt $((count + 1))/$timeout failed for $display_name (status: $status)"
+ fi
+ echo "Waiting on $display_name connection, retrying... $((timeout - count)) seconds left"
+ count=$((count + 1))
+ sleep 1
+ fi
+ done
+
+ # Re-enable exit on error
+ set -e
+
+ echo "â $script_name: Database connection to $display_name failed after $timeout seconds."
+ debug_log "Database connection timed out for $display_name after $timeout seconds"
+ return 1
+}
+
+############################################################################
+# Main
+############################################################################
+
+if laravel_is_installed; then
+ if [ "$LOG_OUTPUT_LEVEL" = "debug" ] || [ "$AUTORUN_DEBUG" = "true" ]; then
+ echo "Laravel detected: v$(get_laravel_version)"
+ echo "Automation settings:"
+ echo "--------------------------------"
+ # Dynamically display all AUTORUN_* environment variables
+ env | grep '^AUTORUN_' | sort | while IFS='=' read -r var_name var_value; do
+ debug_log "- ${var_name}: ${var_value}"
+ done
+ fi
+
+ echo "đ¤ Checking for Laravel automations..."
+ if [ "$AUTORUN_LARAVEL_STORAGE_LINK" = "true" ]; then
+ artisan_storage_link
+ fi
+
+ if [ "$AUTORUN_LARAVEL_MIGRATION" = "true" ]; then
+ artisan_migrate
+ fi
+
+ if [ "$AUTORUN_LARAVEL_OPTIMIZE" = "true" ] || \
+ [ "$AUTORUN_LARAVEL_CONFIG_CACHE" = "true" ] || \
+ [ "$AUTORUN_LARAVEL_ROUTE_CACHE" = "true" ] || \
+ [ "$AUTORUN_LARAVEL_VIEW_CACHE" = "true" ] || \
+ [ "$AUTORUN_LARAVEL_EVENT_CACHE" = "true" ]; then
+ artisan_optimize
+ fi
+else
+ echo "â $script_name: Could not detect Laravel installation."
+ echo "âšī¸ Check that the application is installed in $APP_BASE_DIR"
+ exit 1
+fi
\ No newline at end of file
diff --git a/src/common/etc/entrypoint.d/lib/laravel/test-db-connection.php b/src/common/etc/entrypoint.d/lib/laravel/test-db-connection.php
new file mode 100644
index 000000000..e4817fd3b
--- /dev/null
+++ b/src/common/etc/entrypoint.d/lib/laravel/test-db-connection.php
@@ -0,0 +1,160 @@
+ 5) {
+ fwrite(STDERR, "Usage: php test-db-connection.php /path/to/app/base/dir [migration_mode] [migration_isolation] [database_connection]\n");
+ exit(1);
+}
+
+$appBaseDir = $argv[1];
+$migrationMode = $argc >= 3 ? $argv[2] : 'default';
+$migrationIsolation = $argc >= 4 ? $argv[3] : 'false';
+$databaseConnection = $argc >= 5 ? $argv[4] : null;
+
+// Validate migration mode
+$validModes = ['default', 'fresh', 'refresh'];
+if (!in_array($migrationMode, $validModes)) {
+ fwrite(STDERR, "Error: Invalid migration mode '{$migrationMode}'. Must be one of: " . implode(', ', $validModes) . "\n");
+ exit(1);
+}
+
+// Validate migration isolation
+$validIsolations = ['true', 'false'];
+if (!in_array($migrationIsolation, $validIsolations)) {
+ fwrite(STDERR, "Error: Invalid migration isolation '{$migrationIsolation}'. Must be one of: " . implode(', ', $validIsolations) . "\n");
+ exit(1);
+}
+
+// Validate that the app base directory exists
+if (!is_dir($appBaseDir)) {
+ fwrite(STDERR, "Error: App base directory does not exist: {$appBaseDir}\n");
+ exit(1);
+}
+
+// Validate that required Laravel files exist
+$vendorAutoload = "{$appBaseDir}/vendor/autoload.php";
+$bootstrapApp = "{$appBaseDir}/bootstrap/app.php";
+
+if (!file_exists($vendorAutoload)) {
+ fwrite(STDERR, "Error: Composer autoload file not found: {$vendorAutoload}\n");
+ exit(1);
+}
+
+if (!file_exists($bootstrapApp)) {
+ fwrite(STDERR, "Error: Laravel bootstrap file not found: {$bootstrapApp}\n");
+ exit(1);
+}
+
+// Bootstrap Laravel
+try {
+ require $vendorAutoload;
+
+ $app = require_once $bootstrapApp;
+ $kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
+ $kernel->bootstrap();
+
+} catch (Exception $e) {
+ fwrite(STDERR, "Error bootstrapping Laravel: {$e->getMessage()}\n");
+ exit(1);
+}
+
+// Test database connection
+try {
+ // Use specific database connection if provided
+ $connection = $databaseConnection ? DB::connection($databaseConnection) : DB::connection();
+ $driver = $connection->getDriverName();
+
+ // SQLite special handling
+ if ($driver === 'sqlite') {
+ $dbPath = $connection->getDatabaseName();
+
+ // Handle in-memory SQLite databases
+ if ($dbPath === ':memory:') {
+ fwrite(STDOUT, "SQLite in-memory database detected - ready\n");
+ exit(0);
+ }
+
+ $dbDirectory = dirname($dbPath);
+
+ // Check if database file already exists
+ if (file_exists($dbPath)) {
+ fwrite(STDOUT, "SQLite database file exists: {$dbPath}\n");
+ exit(0);
+ }
+
+ // Database file doesn't exist - check if directory exists and is writable
+ if (!is_dir($dbDirectory)) {
+ fwrite(STDERR, "SQLite database directory does not exist: {$dbDirectory}\n");
+ fwrite(STDERR, "Please create the directory before running migrations.\n");
+ fwrite(STDERR, "Example: mkdir -p {$dbDirectory}\n");
+ exit(1);
+ }
+
+ if (!is_writable($dbDirectory)) {
+ fwrite(STDERR, "SQLite database directory is not writable: {$dbDirectory}\n");
+ fwrite(STDERR, "Please check directory permissions.\n");
+ exit(1);
+ }
+
+ // For 'fresh' and 'refresh' modes, the database file must already exist
+ if ($migrationMode === 'fresh' || $migrationMode === 'refresh') {
+ fwrite(STDERR, "SQLite database file does not exist: {$dbPath}\n");
+ fwrite(STDERR, "Migration mode '{$migrationMode}' requires the database file to exist.\n");
+ fwrite(STDERR, "Either:\n");
+ fwrite(STDERR, " 1. Create the database (ensure it has read and write permissions for your user): touch {$dbPath}\n");
+ fwrite(STDERR, " 2. Use AUTORUN_LARAVEL_MIGRATION_MODE=default to let Laravel create it\n");
+ exit(1);
+ }
+
+ // For isolated migrations, the database file must exist (even in default mode)
+ if ($migrationIsolation === 'true') {
+ fwrite(STDERR, "SQLite database file does not exist: {$dbPath}\n");
+ fwrite(STDERR, "Isolated migrations require the database file to exist before running.\n");
+ fwrite(STDERR, "Either:\n");
+ fwrite(STDERR, " 1. Create the database (ensure it has read and write permissions for your user): touch {$dbPath}\n");
+ fwrite(STDERR, " 2. Set AUTORUN_LARAVEL_MIGRATION_ISOLATION=false to let migrations create it\n");
+ exit(1);
+ }
+
+ // Directory exists and is writable - migrations can create the database file (default mode only)
+ fwrite(STDOUT, "SQLite database directory is ready - migrations will create database\n");
+ exit(0);
+ }
+
+ // Test connection for other database drivers
+ $connection->getPdo();
+
+ if ($connection->getDatabaseName()) {
+ $connectionName = $databaseConnection ? " ({$databaseConnection})" : '';
+ fwrite(STDOUT, "Database connection successful ({$driver}){$connectionName}\n");
+ exit(0);
+ } else {
+ fwrite(STDERR, "Database name not found\n");
+ exit(1);
+ }
+
+} catch (Exception $e) {
+ $connectionName = $databaseConnection ? " ({$databaseConnection})" : '';
+ fwrite(STDERR, "Database connection error{$connectionName}: {$e->getMessage()}\n");
+ exit(1);
+}
\ No newline at end of file
diff --git a/src/common/usr/local/bin/docker-php-serversideup-entrypoint b/src/common/usr/local/bin/docker-php-serversideup-entrypoint
index 879c4e447..b678f29ee 100644
--- a/src/common/usr/local/bin/docker-php-serversideup-entrypoint
+++ b/src/common/usr/local/bin/docker-php-serversideup-entrypoint
@@ -32,6 +32,9 @@ fi
export SERVERSIDEUP_DEFAULT_COMMAND
export S6_INITIALIZED
+# Export the CMD for use in initialization scripts
+export DOCKER_CMD="$*"
+
###############################################
# Usage: docker-php-serversideup-entrypoint
###############################################
@@ -42,14 +45,24 @@ export S6_INITIALIZED
find /etc/entrypoint.d/ -type f -name '*.sh' | sort -V | while IFS= read -r f; do
if [ -e "$f" ]; then
if [ "$LOG_OUTPUT_LEVEL" = "debug" ]; then
- echo "Executing $f"
+ echo "đ Executing initialization script: $f"
+ fi
+
+ # Source the script in a subshell to contain exits while preserving environment
+ (. "$f")
+ exit_code=$?
+
+ if [ "$LOG_OUTPUT_LEVEL" = "debug" ]; then
+ echo "đ Script $f completed with exit code: $exit_code"
fi
- if ! . "$f"; then
- echo "Error executing $f" >&2
- exit 1
+
+ # Only stop on actual errors (non-zero exit codes)
+ if [ $exit_code -ne 0 ]; then
+ echo "â Error: Initialization script $f failed with exit code $exit_code" >&2
+ exit $exit_code
fi
else
- echo "Warning: $f not found" >&2
+ echo "â ī¸ Warning: Initialization script $f not found" >&2
fi
done
diff --git a/src/common/usr/local/bin/docker-php-serversideup-install-php-ext-installer b/src/common/usr/local/bin/docker-php-serversideup-install-php-ext-installer
index ddb8eb1bc..2d7ddac48 100644
--- a/src/common/usr/local/bin/docker-php-serversideup-install-php-ext-installer
+++ b/src/common/usr/local/bin/docker-php-serversideup-install-php-ext-installer
@@ -11,7 +11,7 @@ script_name="docker-php-serversideup-install-php-ext-installer"
############
# Environment variables
############
-PHP_EXT_INSTALLER_VERSION="2.9.4"
+PHP_EXT_INSTALLER_VERSION="2.9.18"
############
# Main
diff --git a/src/common/usr/local/bin/docker-php-serversideup-set-file-permissions b/src/common/usr/local/bin/docker-php-serversideup-set-file-permissions
index 56c163883..4a1de23a5 100644
--- a/src/common/usr/local/bin/docker-php-serversideup-set-file-permissions
+++ b/src/common/usr/local/bin/docker-php-serversideup-set-file-permissions
@@ -2,7 +2,7 @@
set -eu
###################################################
-# Usage: docker-php-serversideup-set-file-permissions --owner USER:GROUP --service SERVICE
+# Usage: docker-php-serversideup-set-file-permissions --owner USER:GROUP [--service SERVICE] [--dir PATH]...
###################################################
# This script is intended to be called on build for sysadmins who want to
# change the UID and GID of a specific user. This is useful for when you
@@ -11,22 +11,93 @@ set -eu
# so developers don't need to worry about permissions issues.
script_name="docker-php-serversideup-set-file-permissions"
-# Usage function
+############################
+# Functions
+############################
usage() {
- echo "Usage: $0 --owner USER:GROUP --service SERVICE"
- exit 1
+ echo "Usage: $0 --owner USER:GROUP [--service SERVICE] [--dir PATH]..."
+ echo ""
+ echo "Options:"
+ echo " --owner USER:GROUP Set the owner (required)"
+ echo " --service SERVICE Specify service type (optional, auto-detected if not provided)"
+ echo " Valid services: cli, fpm, apache, fpm-apache, nginx, fpm-nginx, unit, frankenphp"
+ echo " --dir PATH Additional directory to change ownership (can be used multiple times)"
+}
+
+detect_service() {
+ # Detection priority order (most specific to least specific):
+
+ # Check for FrankenPHP (binary in path)
+ if command -v frankenphp >/dev/null 2>&1; then
+ echo "frankenphp"
+ return 0
+ fi
+
+ # Check for NGINX Unit
+ if [ -d "/etc/unit" ] || command -v unitd >/dev/null 2>&1; then
+ echo "unit"
+ return 0
+ fi
+
+ # Check for Apache (with PHP-FPM config indicates fpm-apache)
+ if command -v apache2 >/dev/null 2>&1 || command -v httpd >/dev/null 2>&1; then
+ if [ -f "/usr/local/etc/php-fpm.conf" ] || command -v php-fpm >/dev/null 2>&1; then
+ echo "fpm-apache"
+ return 0
+ else
+ echo "apache"
+ return 0
+ fi
+ fi
+
+ # Check for Nginx (with PHP-FPM config indicates fpm-nginx)
+ if [ -d "/etc/nginx" ] || command -v nginx >/dev/null 2>&1; then
+ if [ -f "/usr/local/etc/php-fpm.conf" ] || command -v php-fpm >/dev/null 2>&1; then
+ echo "fpm-nginx"
+ return 0
+ else
+ echo "nginx"
+ return 0
+ fi
+ fi
+
+ # Check for standalone PHP-FPM
+ if [ -f "/usr/local/etc/php-fpm.conf" ] || command -v php-fpm >/dev/null 2>&1; then
+ echo "fpm"
+ return 0
+ fi
+
+ # Default to CLI if nothing else is detected
+ echo "cli"
+ return 0
+}
+
+change_ownership() {
+ for path in "$@"; do
+ if [ -e "$path" ]; then
+ chown -R "$OWNER" "$path"
+ echo "$script_name: Ownership of $path changed to $OWNER."
+ else
+ echo "$script_name: Directory not found: $path"
+ exit 1
+ fi
+ done
}
+############################
+# Initialize
+############################
+
# Check for root privileges
if [ "$(id -u)" -ne 0 ]; then
echo "${script_name}: This script must be run as root within the container. Be sure to set \"USER root\" in your Dockerfile before running this script."
exit 1
fi
-# Check for minimum number of arguments
-if [ "$#" -ne 4 ]; then
- usage
-fi
+# Initialize variables to avoid unbound variable errors with 'set -u'
+OWNER=""
+SERVICE=""
+EXTRA_DIRS=""
# Parse arguments
while [ "$#" -gt 0 ]; do
@@ -35,19 +106,42 @@ while [ "$#" -gt 0 ]; do
OWNER="$2"
shift 2
;;
+ --owner=*)
+ OWNER="${1#--owner=}"
+ shift 1
+ ;;
--service)
SERVICE="$2"
shift 2
;;
+ --service=*)
+ SERVICE="${1#--service=}"
+ shift 1
+ ;;
+ --dir)
+ EXTRA_DIRS="$EXTRA_DIRS $2"
+ shift 2
+ ;;
+ --dir=*)
+ EXTRA_DIRS="$EXTRA_DIRS ${1#--dir=}"
+ shift 1
+ ;;
*)
usage
;;
esac
done
-# Ensure OWNER and SERVICE are set
-if [ -z "$OWNER" ] || [ -z "$SERVICE" ]; then
+# Ensure OWNER is set
+if [ -z "$OWNER" ]; then
usage
+ exit 1
+fi
+
+# Auto-detect service if not provided
+if [ -z "$SERVICE" ]; then
+ SERVICE=$(detect_service)
+ echo "$script_name: Auto-detected service: $SERVICE"
fi
# Detect the operating system using /etc/os-release
@@ -59,18 +153,6 @@ else
exit 1
fi
-change_ownership() {
- for path in "$@"; do
- if [ -e "$path" ]; then
- chown -R "$OWNER" "$path"
- echo "$script_name: Ownership of $path changed to $OWNER."
- else
- echo "$script_name: Directory not found: $path"
- exit 1
- fi
- done
-}
-
# Determine directories based on OS and SERVICE
case "$OS" in
debian)
@@ -89,7 +171,7 @@ case "$OS" in
/var/www
$PHP_INI_DIR/conf.d/zzz-serversideup-docker-php-debug.ini"
;;
- apache)
+ apache | fpm-apache)
DIRS="
/composer
/etc/apache2
@@ -101,7 +183,7 @@ case "$OS" in
/var/www
$PHP_INI_DIR/conf.d/zzz-serversideup-docker-php-debug.ini"
;;
- nginx)
+ nginx | fpm-nginx)
DIRS="
/composer
/etc/nginx
@@ -125,6 +207,16 @@ case "$OS" in
/var/www
$PHP_INI_DIR/conf.d/zzz-serversideup-docker-php-debug.ini"
;;
+ frankenphp)
+ DIRS="
+ /composer
+ /var/www
+ /etc/ssl/private
+ /etc/ssl/healthcheck
+ /config
+ /data
+ $PHP_INI_DIR/conf.d/zzz-serversideup-docker-php-debug.ini"
+ ;;
*)
echo "$script_name: Unsupported service: $SERVICE"
exit 1
@@ -147,7 +239,7 @@ case "$OS" in
/var/www
$PHP_INI_DIR/conf.d/zzz-serversideup-docker-php-debug.ini"
;;
- apache)
+ apache | fpm-apache)
DIRS="
/composer
/etc/apache2
@@ -158,10 +250,11 @@ case "$OS" in
/var/www
$PHP_INI_DIR/conf.d/zzz-serversideup-docker-php-debug.ini"
;;
- nginx)
+ nginx | fpm-nginx)
DIRS="
/composer
/etc/nginx/
+ /run
/etc/ssl/private
/usr/local/etc/php-fpm.conf
/usr/local/etc/php-fpm.d/zzz-docker-php-serversideup-fpm-debug.conf
@@ -170,6 +263,27 @@ case "$OS" in
/var/www/
$PHP_INI_DIR/conf.d/zzz-serversideup-docker-php-debug.ini"
;;
+ unit)
+ DIRS="
+ /composer
+ /etc/unit
+ /etc/ssl/private
+ /var/lib/unit
+ /var/log/unit
+ /var/run/unit
+ /var/www
+ $PHP_INI_DIR/conf.d/zzz-serversideup-docker-php-debug.ini"
+ ;;
+ frankenphp)
+ DIRS="
+ /composer
+ /var/www
+ /etc/ssl/private
+ /etc/ssl/healthcheck
+ /config
+ /data
+ $PHP_INI_DIR/conf.d/zzz-serversideup-docker-php-debug.ini"
+ ;;
*)
echo "$script_name: Unsupported SERVICE: $SERVICE"
exit 1
@@ -182,5 +296,11 @@ case "$OS" in
;;
esac
+# Append any extra directories provided via --dir flags
+if [ -n "$EXTRA_DIRS" ]; then
+ DIRS="$DIRS $EXTRA_DIRS"
+fi
+
# Change ownership of the directories
+# shellcheck disable=SC2086
change_ownership $DIRS
\ No newline at end of file
diff --git a/src/common/usr/local/bin/docker-php-serversideup-set-id b/src/common/usr/local/bin/docker-php-serversideup-set-id
index 908507d7c..3da78d266 100644
--- a/src/common/usr/local/bin/docker-php-serversideup-set-id
+++ b/src/common/usr/local/bin/docker-php-serversideup-set-id
@@ -17,6 +17,12 @@ if [ "$#" -ne 2 ]; then
exit 1
fi
+# Check for root privileges
+if [ "$(id -u)" -ne 0 ]; then
+ echo "${script_name}: This script must be run as root within the container. Be sure to set \"USER root\" in your Dockerfile before running this script."
+ exit 1
+fi
+
username="$1"
uid_gid="$2"
diff --git a/src/common/usr/local/bin/healthcheck-octane b/src/common/usr/local/bin/healthcheck-octane
new file mode 100644
index 000000000..07130fc50
--- /dev/null
+++ b/src/common/usr/local/bin/healthcheck-octane
@@ -0,0 +1,2 @@
+#!/bin/sh
+php "${APP_BASE_DIR}/artisan" octane:status
\ No newline at end of file
diff --git a/src/common/usr/local/etc/php/conf.d/serversideup-docker-php.ini b/src/common/usr/local/etc/php/conf.d/serversideup-docker-php.ini
index 1a99a587b..0bbeec28c 100644
--- a/src/common/usr/local/etc/php/conf.d/serversideup-docker-php.ini
+++ b/src/common/usr/local/etc/php/conf.d/serversideup-docker-php.ini
@@ -354,7 +354,7 @@ disable_classes =
; file or directory. For systems with rarely changing files, consider increasing this
; value.
; https://php.net/realpath-cache-ttl
-;realpath_cache_ttl = 120
+realpath_cache_ttl = ${PHP_REALPATH_CACHE_TTL}
; Enables or disables the circular reference collector.
; https://php.net/zend.enable-gc
@@ -363,13 +363,18 @@ zend.enable_gc = On
; If enabled, scripts may be written in encodings that are incompatible with
; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
; encodings. To use this feature, mbstring extension must be enabled.
-;zend.multibyte = Off
+zend.multibyte = ${PHP_ZEND_MULTIBYTE}
; Allows to set the default encoding for the scripts. This value will be used
; unless "declare(encoding=...)" directive appears at the top of the script.
; Only affects if zend.multibyte is set.
;zend.script_encoding =
+; Check for BOM (Byte Order Mark) and see if the file contains valid
+; multibyte characters. This detection is performed before processing
+; of __halt_compiler(). Available only in Zend Multibyte mode.
+zend.detect_unicode = ${PHP_ZEND_DETECT_UNICODE}
+
; Allows to include or exclude arguments from stack traces generated for exceptions.
; In production, it is recommended to turn this setting on to prohibit the output
; of sensitive information in stack traces
@@ -423,7 +428,7 @@ max_input_time = ${PHP_MAX_INPUT_TIME}
;max_input_nesting_level = 64
; How many GET/POST/COOKIE input variables may be accepted
-;max_input_vars = 1000
+max_input_vars = ${PHP_MAX_INPUT_VARS}
; How many multipart body parts (combined input variable and file uploads) may
; be accepted.
@@ -1498,7 +1503,7 @@ session.use_trans_sid = 0
; Default Value: 32
; Development Value: 26
; Production Value: 26
-session.sid_length = 26
+;session.sid_length = 26
; The URL rewriter will look for URLs in a defined set of HTML tags.
;