(0);
-
- useEffect(() => {
- if (!ref.current) return;
-
- const observer = new IntersectionObserver(
- ([entry]) => {
- if (entry.isIntersecting) {
- setInView(true);
- if (ref.current) {
- observer.unobserve(ref.current);
- }
- }
- },
- {
- threshold,
- rootMargin,
- // delay: 100,
- },
- );
-
- observer.observe(ref.current);
-
- return () => observer.disconnect();
- }, [threshold, rootMargin]);
-
- const springs = useSprings(
- letters.length,
- letters.map((_, i) => ({
- from: animationFrom,
- to: inView
- ? async (next: any) => {
- await next(animationTo);
- animatedCount.current += 1;
- if (animatedCount.current === letters.length && onLetterAnimationComplete) {
- onLetterAnimationComplete();
- }
- }
- : animationFrom,
- delay: i * delay,
- easing: easing,
- })),
- );
-
- return (
-
- {words.map((word, wordIndex) => (
-
- {word.map((letter, letterIndex) => {
- const index = words.slice(0, wordIndex).reduce((acc, w) => acc + w.length, 0) + letterIndex;
-
- return (
-
- {letter}
-
- );
- })}
-
-
- ))}
-
- );
-};
-
-// Panda CSS styles
-const splitParentStyle = css({
- overflow: 'hidden',
- display: 'inline',
- whiteSpace: 'normal',
- wordWrap: 'break-word',
- backfaceVisibility: 'hidden',
- fontSmoothing: 'antialiased',
-});
-
-const wordStyle = css({
- display: 'inline',
- whiteSpace: 'nowrap',
- backfaceVisibility: 'hidden',
- fontSmoothing: 'antialiased',
-});
-
-const spaceStyle = css({
- display: 'inline',
- width: '0.3em',
-});
-
-export default SplitText;
diff --git a/packages/ui/panda/src/animation/SplitText/index.ts b/packages/ui/panda/src/animation/SplitText/index.ts
deleted file mode 100644
index 24d97fcd..00000000
--- a/packages/ui/panda/src/animation/SplitText/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export * from './SplitText';
diff --git a/packages/ui/panda/src/animation/index.ts b/packages/ui/panda/src/animation/index.ts
deleted file mode 100644
index 24d97fcd..00000000
--- a/packages/ui/panda/src/animation/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export * from './SplitText';
diff --git a/packages/ui/panda/src/components/Accordion/Accordion.tsx b/packages/ui/panda/src/components/Accordion/Accordion.tsx
deleted file mode 100644
index 2e13ec6b..00000000
--- a/packages/ui/panda/src/components/Accordion/Accordion.tsx
+++ /dev/null
@@ -1,40 +0,0 @@
-'use client';
-
-import * as React from 'react';
-import * as AccordionPrimitive from '@radix-ui/react-accordion';
-import { ChevronDown } from 'lucide-react';
-import { createStyleContext } from '@shadow-panda/style-context';
-import { styled } from '_panda/jsx';
-import { accordion } from '_panda/recipes';
-
-const { withProvider, withContext } = createStyleContext(accordion);
-
-const Header = withContext(styled(AccordionPrimitive.Header), 'header');
-
-const Trigger = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ children, ...props }, ref) => (
-
-));
-Trigger.displayName = AccordionPrimitive.Trigger.displayName;
-
-const Content = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ children, ...props }, ref) => (
-
- {children}
-
-));
-Content.displayName = AccordionPrimitive.Content.displayName;
-
-export const Accordion = withProvider(styled(AccordionPrimitive.Root), 'root');
-export const AccordionItem = withContext(styled(AccordionPrimitive.Item), 'item');
-export const AccordionTrigger = withContext(styled(Trigger), 'trigger');
-export const AccordionContent = withContext(styled(Content), 'content');
diff --git a/packages/ui/panda/src/components/Accordion/index.ts b/packages/ui/panda/src/components/Accordion/index.ts
deleted file mode 100644
index 63f62bc6..00000000
--- a/packages/ui/panda/src/components/Accordion/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export * from './Accordion';
diff --git a/packages/ui/panda/src/components/Banner/Banner.tsx b/packages/ui/panda/src/components/Banner/Banner.tsx
deleted file mode 100644
index bd3fc5a2..00000000
--- a/packages/ui/panda/src/components/Banner/Banner.tsx
+++ /dev/null
@@ -1,64 +0,0 @@
-import { ReactNode } from 'react';
-import { bannerStyle, BannerStyleProps } from './cva';
-import { css, cx } from '_panda/css';
-import { skeletonStyle } from '../Skeleton';
-import { Loader } from 'lucide-react';
-
-type BannerProps = BannerStyleProps & {
- label?: string;
- image: string | ReactNode;
- loading?: boolean;
- className?: string;
-};
-
-export function Banner({ image, label, loading, ...styleProps }: BannerProps) {
- const { className, ...rest } = styleProps;
- return (
-
- {typeof image === 'string' ?

: image}
- {label &&
{label}
}
- {loading && (
-
-
-
- )}
-
- );
-}
-
-const loadingStyle = css({
- position: 'absolute',
- top: 0,
- left: 0,
- width: '100%',
- height: '100%',
- display: 'flex',
- justifyContent: 'center',
- alignItems: 'center',
- backgroundColor: 'white.white_25',
- borderColor: 'white.white_50',
-});
-
-const labelStyle = css({
- textStyle: 'glyph16.regular',
- color: 'white',
- maxWidth: '80px',
- textAlign: 'center',
- overflow: 'hidden',
- textOverflow: 'ellipsis',
- whiteSpace: 'nowrap',
-});
-
-export function BannerSkeleton(props: BannerStyleProps) {
- return ;
-}
-
-export function BannerSkeletonList({ length, ...props }: BannerStyleProps & { length: number }) {
- return (
- <>
- {Array.from({ length }).map((_, index) => (
-
- ))}
- >
- );
-}
diff --git a/packages/ui/panda/src/components/Banner/BannerPetSelect.tsx b/packages/ui/panda/src/components/Banner/BannerPetSelect.tsx
deleted file mode 100644
index 7e5673cc..00000000
--- a/packages/ui/panda/src/components/Banner/BannerPetSelect.tsx
+++ /dev/null
@@ -1,29 +0,0 @@
-import { css } from '_panda/css';
-import { bannerStyle } from './cva';
-
-interface BannerPetSelectMediumProps {
- name: string;
- count: string;
- image: string;
- status?: 'selected' | 'gradient' | 'default';
-}
-
-export function BannerPetSelectMedium({ name, count, image, status = 'default' }: BannerPetSelectMediumProps) {
- return (
-
-

-
{name}
-
{count}
-
- );
-}
-
-const nameStyle = css({
- textStyle: 'glyph16.regular',
- color: 'white',
-});
-
-const countStyle = css({
- textStyle: 'glyph14.regular',
- color: 'white.white_50',
-});
diff --git a/packages/ui/panda/src/components/Banner/LevelBanner.tsx b/packages/ui/panda/src/components/Banner/LevelBanner.tsx
deleted file mode 100644
index 113adb4c..00000000
--- a/packages/ui/panda/src/components/Banner/LevelBanner.tsx
+++ /dev/null
@@ -1,31 +0,0 @@
-import { ReactNode } from 'react';
-import { bannerStyle, BannerStyleProps } from './cva';
-import { css, cx } from '_panda/css';
-
-type Props = BannerStyleProps & {
- image: string | ReactNode;
- level: number;
- className?: string;
-};
-
-export function LevelBanner({ image, level, className, ...styleProps }: Props) {
- return (
-
- {typeof image === 'string' ?

: image}
-
Lv.{level}
-
- );
-}
-
-const levelTagStyle = css({
- borderRadius: '12px',
- background: 'black.black_25',
- padding: '0 8px',
- color: 'white.white_75',
- textStyle: 'glyph12.regular',
- fontSize: '10px',
- lineHeight: '20px',
- position: 'absolute',
- bottom: '3px',
- right: '3px',
-});
diff --git a/packages/ui/panda/src/components/Banner/cva.ts b/packages/ui/panda/src/components/Banner/cva.ts
deleted file mode 100644
index edd3dedb..00000000
--- a/packages/ui/panda/src/components/Banner/cva.ts
+++ /dev/null
@@ -1,69 +0,0 @@
-import { cva, RecipeVariantProps } from '_panda/css';
-
-export const bannerStyle = cva({
- base: {
- display: 'flex',
- flexDirection: 'column',
- alignItems: 'center',
- justifyContent: 'center',
- borderRadius: '12px',
- transition: 'border 0.3s, background-color 0.3s',
- position: 'relative',
- borderColor: 'transparent',
- overflow: 'hidden',
- },
- variants: {
- status: {
- selected: {
- border: '2px solid',
- borderColor: 'white.white_50',
- backgroundColor: 'white.white_25',
- },
- gradient: {
- background:
- 'linear-gradient(133deg, rgba(255, 253, 201, 0.40) 2.19%, rgba(150, 230, 216, 0.40) 49.24%, rgba(125, 171, 241, 0.40) 98.21%)',
- },
- default: {
- backgroundColor: 'white.white_10',
- },
- },
- size: {
- small: {
- width: '80px',
- height: '80px',
- '& img': {
- width: '100%',
- height: '100%',
- objectFit: 'contain',
- },
-
- _mobile: {
- width: '52px',
- height: '52px',
- borderRadius: '5px',
- },
- },
- medium: {
- width: '120px',
- padding: '12px 20px',
- height: '149px',
- },
- full: {
- width: '100%',
- height: '100%',
- '& img': {
- width: '100%',
- height: '100%',
- objectFit: 'contain',
- },
- },
- },
- },
-
- defaultVariants: {
- size: 'medium',
- status: 'default',
- },
-});
-
-export type BannerStyleProps = RecipeVariantProps;
diff --git a/packages/ui/panda/src/components/Banner/index.ts b/packages/ui/panda/src/components/Banner/index.ts
deleted file mode 100644
index ce1d283c..00000000
--- a/packages/ui/panda/src/components/Banner/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export { Banner, BannerSkeleton, BannerSkeletonList } from './Banner';
-export { LevelBanner } from './LevelBanner';
-export { BannerPetSelectMedium } from './BannerPetSelect';
diff --git a/packages/ui/panda/src/components/Button/Button.stories.tsx b/packages/ui/panda/src/components/Button/Button.stories.tsx
deleted file mode 100644
index 5173e23b..00000000
--- a/packages/ui/panda/src/components/Button/Button.stories.tsx
+++ /dev/null
@@ -1,31 +0,0 @@
-import type { Meta, StoryObj } from '@storybook/react';
-import { Button } from './Button';
-
-// 메타데이터 정의
-const meta = {
- title: 'Components/Button',
- component: Button,
- parameters: {
- layout: 'centered',
- },
- tags: ['autodocs'],
- argTypes: {
- disabled: {
- control: 'boolean',
- description: '버튼 비활성화 상태',
- },
- },
-} satisfies Meta;
-
-export default meta;
-type Story = StoryObj;
-
-// 기본 버튼 스토리
-export const 기본: Story = {
- args: {
- children: '버튼',
- variant: 'primary',
- size: 'm',
- colorScheme: 'primary',
- },
-};
diff --git a/packages/ui/panda/src/components/Button/Button.tsx b/packages/ui/panda/src/components/Button/Button.tsx
deleted file mode 100644
index 54fe4a7c..00000000
--- a/packages/ui/panda/src/components/Button/Button.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { styled } from '_panda/jsx';
-import { buttonStyle } from './cva';
-
-export const Button = styled('button', buttonStyle);
-export const AnchorButton = styled('a', buttonStyle);
diff --git a/packages/ui/panda/src/components/Button/cva.ts b/packages/ui/panda/src/components/Button/cva.ts
deleted file mode 100644
index 35f9fee4..00000000
--- a/packages/ui/panda/src/components/Button/cva.ts
+++ /dev/null
@@ -1,116 +0,0 @@
-import { cva } from '_panda/css';
-
-export const buttonStyle = cva({
- base: {
- padding: '8px 42px',
- borderRadius: '6px',
- border: '1px solid black',
- fontFamily: 'Product Sans',
- fontSize: '16px',
- fontStyle: 'normal',
- fontWeight: '400',
- lineHeight: '150%',
- letterSpacing: '-0.3px',
- transition: 'filter 0.2s, box-shadow 0.2s',
- backgroundColor: 'brand.canary',
- boxShadow: '0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px #c4c382 inset, 0px 3px 0px 0px #fdfed2 inset',
- color: '#000',
-
- _disabled: {
- cursor: 'not-allowed',
- },
- },
- variants: {
- size: {
- s: {
- padding: '0 24px',
- fontSize: '14px',
- minHeight: '32px',
- },
- m: {
- padding: '0 30px',
- fontSize: '16px',
- minHeight: '40px',
- height: '40px',
- },
- l: {
- padding: '25px 76px',
- fontSize: '20px',
- minHeight: '76px',
- },
- },
- floating: {
- true: {
- width: '100%',
- maxWidth: 'calc(100% - 32px)',
- position: 'fixed',
- bottom: '16px',
- left: '50%',
- transform: 'translateX(-50%)',
- },
- },
- variant: {
- primary: {
- background: 'brand.canary',
- boxShadow: '0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px #c4c382 inset, 0px 3px 0px 0px #fdfed2 inset',
- color: '#000',
-
- _hover: {
- backgroundColor: '#EAE78A',
- boxShadow:
- '0px 4px 16px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px #C4C382 inset, 0px 3px 0px 0px #fdfed2 inset',
- },
- _active: {
- boxShadow:
- '0px 4px 16px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px #C4C382 inset, 0px 3px 0px 0px #fdfed2 inset',
- },
-
- _disabled: {
- border: '1px solid #000',
- backgroundColor: 'gray.gray_800',
- boxShadow:
- '0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px #a3a3a3 inset, 0px 3px 0px 0px #dbdbdb inset',
-
- _hover: {
- backgroundColor: 'gray.gray_800',
- boxShadow:
- '0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px #a3a3a3 inset, 0px 3px 0px 0px #dbdbdb inset',
- },
- _active: {
- backgroundColor: 'gray.gray_800',
- boxShadow:
- '0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px #a3a3a3 inset, 0px 3px 0px 0px #dbdbdb inset',
- },
- },
- },
- secondary: {
- borderRadius: '6px',
- border: '1px solid #000',
- backgroundColor: '#FFF',
- boxShadow: '0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px #A1A1B1 inset, 0px 3px 0px 0px #D2DCFE inset',
-
- _hover: {
- backgroundColor: 'gray.gray_900',
- boxShadow:
- '0px 4px 16px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px #A1A1B1 inset, 0px 3px 0px 0px #D2DCFE inset',
- },
-
- _disabled: {
- backgroundColor: 'gray.gray_800',
- boxShadow:
- '0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px #A3A3A3 inset, 0px 3px 0px 0px #DBDBDB inset',
- _hover: {
- backgroundColor: 'gray.gray_800',
- boxShadow:
- '0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px #A3A3A3 inset, 0px 3px 0px 0px #DBDBDB inset',
- },
- },
- },
- },
- },
- defaultVariants: {
- variant: 'primary',
- size: 'm',
- floating: false,
- },
-});
diff --git a/packages/ui/panda/src/components/Button/index.ts b/packages/ui/panda/src/components/Button/index.ts
deleted file mode 100644
index 8b166a86..00000000
--- a/packages/ui/panda/src/components/Button/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export * from './Button';
diff --git a/packages/ui/panda/src/components/Card/CardBack.tsx b/packages/ui/panda/src/components/Card/CardBack.tsx
deleted file mode 100644
index 9ec41148..00000000
--- a/packages/ui/panda/src/components/Card/CardBack.tsx
+++ /dev/null
@@ -1,41 +0,0 @@
-import { css } from '_panda/css';
-import { ANIMAL_CARD_IMAGE_BASE_URL } from './constants';
-
-interface Props {
- tier: 'EX' | 'S_PLUS' | 'A_PLUS' | 'B_MINUS';
-}
-
-export function CardBack(props: Props) {
- const { bg } = getTierToCardBackInfo(props.tier);
-
- return (
-
-

-
- );
-}
-
-const bgStyle = css({
- width: '100%',
-});
-
-const getTierToCardBackInfo = (tier: Props['tier']): { bg: string } => {
- switch (tier) {
- case 'EX':
- return {
- bg: 'card-back-EX.webp',
- };
- case 'S_PLUS':
- return {
- bg: 'card-back-S_PLUS.webp',
- };
- case 'A_PLUS':
- return {
- bg: 'card-back-A_PLUS.webp',
- };
- case 'B_MINUS':
- return {
- bg: 'card-back-B_MINUS.webp',
- };
- }
-};
diff --git a/packages/ui/panda/src/components/Card/GameCard.stories.tsx b/packages/ui/panda/src/components/Card/GameCard.stories.tsx
deleted file mode 100644
index 224ed662..00000000
--- a/packages/ui/panda/src/components/Card/GameCard.stories.tsx
+++ /dev/null
@@ -1,146 +0,0 @@
-import type { Meta, StoryObj } from '@storybook/react';
-import { GameCard } from './GameCard';
-import { css } from '_panda/css';
-
-const meta: Meta = {
- title: 'Components/GameCard',
- component: GameCard,
- parameters: {
- layout: 'centered',
- },
- tags: ['autodocs'],
-};
-
-export default meta;
-
-type Story = StoryObj;
-
-export const GameCardDefault: Story = {
- args: {
- title: 'QUOKKA',
- percentage: '10%',
- tier: 'A_PLUS',
- size: 'medium',
- imageUrl: 'https://static.gitanimals.org/personas/QUOKKA',
- },
-};
-
-export const AllCards = () => {
- return (
-
- Responsive Game Cards
-
-
-
-
-
-
-
-
-
-
-
- );
-};
-
-const mainStyle = css({
- display: 'flex',
- minHeight: '100vh',
- flexDirection: 'column',
- alignItems: 'center',
- justifyContent: 'center',
- padding: '1rem',
- gap: '2rem',
-});
-
-const headingStyle = css({
- fontSize: '1.5rem',
- fontWeight: 'bold',
- marginBottom: '1rem',
-});
-
-const cardGridStyle = css({
- display: 'grid',
- gridTemplateColumns: 'repeat(1, 1fr)',
- gap: '1.5rem',
- width: '100%',
- maxWidth: '64rem',
- '@media (min-width: 640px)': {
- gridTemplateColumns: 'repeat(2, 1fr)',
- },
- '@media (min-width: 768px)': {
- gridTemplateColumns: 'repeat(3, 1fr)',
- },
-});
-
-const responsiveDemoStyle = css({
- width: '100%',
- maxWidth: '64rem',
- marginTop: '2rem',
-});
-
-const subheadingStyle = css({
- fontSize: '1.25rem',
- fontWeight: 'bold',
- marginBottom: '1rem',
-});
-
-const responsiveGridStyle = css({
- display: 'grid',
- gridTemplateColumns: 'repeat(1, 1fr)',
- gap: '1.5rem',
- '@media (min-width: 640px)': {
- gridTemplateColumns: 'repeat(3, 1fr)',
- },
-});
-
-const fullWidthStyle = css({
- width: '100%',
-});
-
-const largeCardContainerStyle = css({
- width: '100%',
- '@media (min-width: 640px)': {
- gridColumn: 'span 2',
- },
-});
diff --git a/packages/ui/panda/src/components/Card/GameCard.tsx b/packages/ui/panda/src/components/Card/GameCard.tsx
deleted file mode 100644
index 20eaa8e0..00000000
--- a/packages/ui/panda/src/components/Card/GameCard.tsx
+++ /dev/null
@@ -1,172 +0,0 @@
-'use client';
-
-import { css, cva } from '_panda/css';
-import { useRef, useState, useEffect } from 'react';
-import { ANIMAL_CARD_IMAGE_BASE_URL, CARD_INFO, CardTierType } from './constants';
-
-interface GameCardProps {
- tier: CardTierType;
- title: string;
- percentage: string;
- imageUrl: string;
- size?: 'small' | 'medium' | 'large' | 'responsive';
-}
-
-export function GameCard({ title, percentage, tier, imageUrl, size = 'medium' }: GameCardProps) {
- const svgRef = useRef(null);
- const [fontSize, setFontSize] = useState({
- title: 16,
- percentage: 16,
- rating: 16,
- });
- const [positions, setPositions] = useState('1rem');
-
- useEffect(() => {
- if (!svgRef.current) return;
-
- const resizeObserver = new ResizeObserver((entries) => {
- const width = entries[0].contentRect.width;
-
- setFontSize({
- title: width * 0.08,
- percentage: width * 0.08,
- rating: width * 0.1,
- });
-
- const paddingX = Math.max(12, width * 0.075);
- const paddingY = Math.max(14.4, width * 0.09);
-
- setPositions(`${paddingY}px ${paddingX}px`);
- });
-
- resizeObserver.observe(svgRef.current);
- return () => resizeObserver.disconnect();
- }, [size]);
-
- const { bg, thumbnail } = CARD_INFO[tier];
-
- return (
-
-
-

-
-
-
-
-

-
-
-

-
-
-
-
-
{title}
-
-
{percentage}%
-
-
- );
-}
-
-const bgImageStyle = css({
- width: '100%',
- height: '100%',
-});
-
-const imageContainerStyle = css({
- position: 'absolute',
- inset: '0',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- top: '0',
- left: '0',
- right: '0',
- width: '100%',
- aspectRatio: '1/1',
-});
-
-const imageWrapperStyle = css({
- position: 'relative',
- width: '90%',
- aspectRatio: '1/1',
-});
-
-const imageStyle = css({
- width: '90%',
- aspectRatio: '1/1',
- position: 'absolute',
- top: '50%',
- left: '50%',
- transform: 'translate(-50%, -50%)',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- '& > img': {
- width: '100%',
- height: '100%',
- objectFit: 'contain',
- },
-});
-
-const textWrapperStyle = css({
- position: 'absolute',
- bottom: '0',
- left: '0',
- right: '0',
- padding: '1rem',
- fontWeight: 'bold',
- color: '#000000',
- display: 'flex',
- justifyContent: 'space-between',
-});
-
-const titleStyle = css({
- fontWeight: 'bold',
- color: '#000000',
- flex: 1,
- whiteSpace: 'nowrap',
- overflow: 'hidden',
- textOverflow: 'ellipsis',
- textAlign: 'left',
-});
-
-const percentageStyle = css({
- fontWeight: 'bold',
- color: '#000000',
- textAlign: 'right',
-});
-
-const cardCva = cva({
- base: {
- position: 'relative',
- display: 'inline-block',
- width: '100%',
- maxWidth: '300px',
- aspectRatio: '220/272',
- },
- variants: {
- size: {
- small: {
- maxWidth: '150px',
- },
- medium: {
- maxWidth: '200px',
- },
- large: {
- maxWidth: '300px',
- },
- responsive: {
- maxWidth: '100%',
- },
- },
- },
-});
diff --git a/packages/ui/panda/src/components/Card/NoRatingCard.tsx b/packages/ui/panda/src/components/Card/NoRatingCard.tsx
deleted file mode 100644
index 8445e01a..00000000
--- a/packages/ui/panda/src/components/Card/NoRatingCard.tsx
+++ /dev/null
@@ -1,96 +0,0 @@
-import { cx, css } from '_panda/css';
-import { flex } from '_panda/patterns';
-
-// TODO : 아예 외부 경로로 옮겨도 괜찮을것 같다.
-
-type CardTierType = 'EX' | 'S_PLUS' | 'A_PLUS' | 'B_MINUS';
-
-interface Props {
- tier: CardTierType;
- type: string;
- personaImage: string;
- bgUrl: string;
- thumbnailUrl: string;
- rightTextEl: React.ReactNode;
-}
-
-export function NoRatingCard(props: Props) {
- return (
-
-
-

-
-
-

-
-
-

-
-
-
{snakeToTitleCase(props.type)}
-
{props.rightTextEl}
-
-
- );
-}
-
-/**
- * 스네이크 케이스 문자열을 타이틀 케이스로 변환합니다.
- * @param str - 변환할 스네이크 케이스 문자열
- * @returns 타이틀 케이스로 변환된 문자열
- * @example
- * snakeToTitleCase('SUMI_MA') => 'Sumi Ma'
- */
-export const snakeToTitleCase = (str: string): string => {
- return str
- .toLowerCase()
- .split('_')
- .map((word) => word.charAt(0).toUpperCase() + word.slice(1))
- .join(' ');
-};
-
-export const container = css({
- position: 'relative',
- width: '265px',
- height: '328px',
-});
-
-export const bgImage = css({
- position: 'absolute',
- top: 0,
- left: 0,
- width: '100%',
- height: '100%',
- zIndex: 0,
-});
-
-export const thumbnailImage = css({
- position: 'absolute',
- top: '16px',
- left: '16px',
- right: '16px',
-
- zIndex: 1,
-});
-
-export const infoWrapper = flex({
- position: 'absolute',
- bottom: '20px',
- left: '20px',
- right: '20px',
- justifyContent: 'space-between',
- gap: '8px',
-});
-
-export const typeText = css({
- textStyle: 'glyph24.bold',
- whiteSpace: 'nowrap',
- textOverflow: 'ellipsis',
- overflow: 'hidden',
- lineHeight: '40px',
-});
-
-export const ratingText = css({
- textStyle: 'glyph22.regular',
- lineHeight: '40px',
-});
diff --git a/packages/ui/panda/src/components/Card/constants.ts b/packages/ui/panda/src/components/Card/constants.ts
deleted file mode 100644
index 3937be9e..00000000
--- a/packages/ui/panda/src/components/Card/constants.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-export type CardTierType = 'EX' | 'S_PLUS' | 'A_PLUS' | 'B_MINUS' | 'EVOLUTION';
-
-export const CARD_INFO: Record = {
- EX: {
- bg: 'card-bg-EX.webp',
- thumbnail: 'card-thumbnail-EX.webp',
- },
- S_PLUS: {
- bg: 'card-bg-S_PLUS.webp',
- thumbnail: 'card-thumbnail-S_PLUS.webp',
- },
- A_PLUS: {
- bg: 'card-bg-A_PLUS.webp',
- thumbnail: 'card-thumbnail-A_PLUS.webp',
- },
- B_MINUS: {
- bg: 'card-bg-B_MINUS.webp',
- thumbnail: 'card-thumbnail-B_MINUS.webp',
- },
- EVOLUTION: {
- bg: 'card-bg-EVOLUTION.webp',
- thumbnail: 'card-thumbnail-EVOLUTION.webp',
- },
-};
-
-export const ANIMAL_CARD_IMAGE_BASE_URL = '/assets/animal-card/';
diff --git a/packages/ui/panda/src/components/Card/index.ts b/packages/ui/panda/src/components/Card/index.ts
deleted file mode 100644
index 55c84945..00000000
--- a/packages/ui/panda/src/components/Card/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export { CardBack } from './CardBack';
-export { NoRatingCard } from './NoRatingCard';
-export { GameCard } from './GameCard';
diff --git a/packages/ui/panda/src/components/CheckBox/CheckBox.tsx b/packages/ui/panda/src/components/CheckBox/CheckBox.tsx
deleted file mode 100644
index 769556ef..00000000
--- a/packages/ui/panda/src/components/CheckBox/CheckBox.tsx
+++ /dev/null
@@ -1,35 +0,0 @@
-'use client';
-
-import * as React from 'react';
-import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
-import { Check } from 'lucide-react';
-import { css, cx } from '_panda/css';
-import { styled } from '_panda/jsx';
-import { checkbox, icon } from '_panda/recipes';
-
-const BaseCheckbox = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ className, ...props }, ref) => {
- const styles = checkbox();
-
- return (
-
-
-
-
-
- );
-});
-BaseCheckbox.displayName = CheckboxPrimitive.Root.displayName;
-
-export const Checkbox = styled(BaseCheckbox);
-
-const checkboxLightStyle = css({
- borderColor: '#fafafa',
-
- '&[data-state="checked"]': {
- backgroundColor: '#fafafa',
- color: '#000',
- },
-});
diff --git a/packages/ui/panda/src/components/CheckBox/index.ts b/packages/ui/panda/src/components/CheckBox/index.ts
deleted file mode 100644
index 9c857f3d..00000000
--- a/packages/ui/panda/src/components/CheckBox/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export { Checkbox } from './CheckBox';
diff --git a/packages/ui/panda/src/components/Chip/CombineChip.stories.tsx b/packages/ui/panda/src/components/Chip/CombineChip.stories.tsx
deleted file mode 100644
index aca529ad..00000000
--- a/packages/ui/panda/src/components/Chip/CombineChip.stories.tsx
+++ /dev/null
@@ -1,49 +0,0 @@
-import type { Meta, StoryObj } from '@storybook/react';
-import { CombineChip } from './CombineChip';
-
-const meta: Meta = {
- title: 'Components/CombineChip',
- component: CombineChip,
- tags: ['autodocs'],
- parameters: {
- layout: 'centered',
- },
-};
-
-export default meta;
-type Story = StoryObj;
-
-export const Default: Story = {
- render: () => (
-
-
-
-
-
-
- 옵션
- 옵션 1
- 옵션 2
- 옵션 3
-
-
-
- ),
-};
-
-export const SmallSize: Story = {
- render: () => (
-
-
-
-
-
-
- 옵션
- 옵션 1
- 옵션 2
-
-
-
- ),
-};
diff --git a/packages/ui/panda/src/components/Chip/CombineChip.tsx b/packages/ui/panda/src/components/Chip/CombineChip.tsx
deleted file mode 100644
index 6ab7cdd1..00000000
--- a/packages/ui/panda/src/components/Chip/CombineChip.tsx
+++ /dev/null
@@ -1,139 +0,0 @@
-'use client';
-
-import * as React from 'react';
-import * as ChipPrimitive from '@radix-ui/react-select';
-import { Check, ChevronDown } from 'lucide-react';
-import { createStyleContext } from '@shadow-panda/style-context';
-import { styled } from '_panda/jsx';
-import { select, icon } from '_panda/recipes';
-import { css, cva, cx, RecipeVariantProps } from '_panda/css';
-
-const chipTriggerStyle = cva({
- base: {
- width: 'fit-content',
- padding: '6px 12px 6px 8px',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- },
-
- variants: {
- size: {
- small: {
- height: '30px',
- color: 'white.white_50',
- borderRadius: '6px',
- textStyle: 'glyph12.regular',
- borderColor: 'white.white_5',
- backgroundColor: 'white.white_5',
- gap: '1px',
- },
- medium: {
- height: '36px',
- color: 'white.white_90',
- textStyle: 'glyph16.regular',
- borderColor: 'white.white_25',
- backgroundColor: 'white.white_25',
- borderRadius: '8px',
- gap: '2px',
- },
- },
- },
- defaultVariants: {
- size: 'medium',
- },
-});
-
-type ChipTriggerStyleProps = RecipeVariantProps;
-
-const chipContentStyle = css({
- backgroundColor: 'black.black_75',
- borderRadius: 10,
- border: '1px solid',
- borderColor: 'black.black_50',
- color: 'white',
- zIndex: 9999,
- pointerEvents: 'auto',
-});
-
-const chipItemStyle = css({
- color: 'white',
- textStyle: 'glyph16.regular',
-
- _hover: {
- backgroundColor: 'white.white_5',
- },
- _focus: {
- backgroundColor: 'white.white_5',
- },
-});
-
-const { withProvider, withContext } = createStyleContext(select);
-
-const Trigger = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef & ChipTriggerStyleProps
->(({ children, ...props }, ref) => (
-
- {children}
-
-
-
-
-));
-Trigger.displayName = ChipPrimitive.Trigger.displayName;
-
-const Viewport = withContext(ChipPrimitive.Viewport, 'viewport');
-
-const Content = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ children, position = 'popper', ...props }, ref) => (
-
-
- {children}
-
-
-));
-Content.displayName = ChipPrimitive.Content.displayName;
-
-const ItemIndicator = withContext(styled(ChipPrimitive.ItemIndicator), 'itemIndicator');
-
-const Item = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ children, ...props }, ref) => (
-
-
-
-
-
- {children}
-
-));
-Item.displayName = ChipPrimitive.Item.displayName;
-
-const ChipRoot = withProvider(styled(ChipPrimitive.Root), 'root');
-const ChipGroup = withContext(styled(ChipPrimitive.Group), 'group');
-const ChipValue = withContext(styled(ChipPrimitive.Value), 'value');
-const ChipTrigger = withContext(styled(Trigger), 'trigger');
-const ChipContent = withContext(styled(Content), 'content');
-const ChipLabel = withContext(styled(ChipPrimitive.Label), 'label');
-const ChipItem = withContext(styled(Item), 'item');
-const ChipSeparator = withContext(styled(ChipPrimitive.Separator), 'separator');
-
-export const CombineChip = Object.assign(ChipRoot, {
- Group: ChipGroup,
- Value: ChipValue,
- Trigger: ChipTrigger,
- Content: ChipContent,
- Label: ChipLabel,
- Item: ChipItem,
- Separator: ChipSeparator,
-});
diff --git a/packages/ui/panda/src/components/Chip/index.ts b/packages/ui/panda/src/components/Chip/index.ts
deleted file mode 100644
index f84225b8..00000000
--- a/packages/ui/panda/src/components/Chip/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export * from './CombineChip';
diff --git a/packages/ui/panda/src/components/Dialog/CommonDialog.tsx b/packages/ui/panda/src/components/Dialog/CommonDialog.tsx
deleted file mode 100644
index 19d7f184..00000000
--- a/packages/ui/panda/src/components/Dialog/CommonDialog.tsx
+++ /dev/null
@@ -1,27 +0,0 @@
-import { css } from '_panda/css';
-import { Dialog } from './Dialog';
-
-interface CommonDialogProps {
- isOpen: boolean;
- onClose: () => void;
- title?: string;
- description?: string;
- children: React.ReactNode;
-
- size?: 'default' | 'large' | 'screen';
-}
-
-export function CommonDialog(props: CommonDialogProps) {
- return (
-
- );
-}
-
-const headingStyle = css({ display: 'flex', flexDirection: 'column', justifyContent: 'flex-end' });
-const descriptionStyle = css({ marginTop: '16px' });
diff --git a/packages/ui/panda/src/components/Dialog/Dialog.styles.ts b/packages/ui/panda/src/components/Dialog/Dialog.styles.ts
deleted file mode 100644
index 720e28a1..00000000
--- a/packages/ui/panda/src/components/Dialog/Dialog.styles.ts
+++ /dev/null
@@ -1,113 +0,0 @@
-import { css, cva, RecipeVariantProps } from '_panda/css';
-
-export const dialogContentCva = cva({
- base: {
- background: 'gray.gray_150',
- borderRadius: '16px',
- border: '1px solid',
- borderColor: 'gray.gray_150',
- zIndex: 3001,
- color: 'white.white_100',
- },
- variants: {
- size: {
- default: {
- display: 'flex',
- width: '100%',
- flexDirection: 'column',
- justifyContent: 'center',
- alignItems: 'center',
- gap: '28px',
- color: 'white',
- '& .dialog-title': {
- textStyle: 'glyph20.regular',
- textAlign: 'left',
- width: '100%',
- },
-
- _mobile: {
- maxWidth: 'calc(100vw - 48px)',
- },
- },
- large: {
- borderRadius: '16px',
- backgroundColor: 'gray.gray_150',
- padding: '60px 40px',
-
- maxWidth: 'calc(100% - 400px)',
- maxHeight: 'calc(100% - 240px)',
- width: '100%',
- height: '100%',
-
- '@media (max-width: 1200px)': {
- padding: '48px 24px',
- maxWidth: 'calc(100vw - 240px)',
- maxHeight: 'calc(100vh - 120px)',
- },
- _mobile: {
- height: '100%',
- maxWidth: '100vw',
- maxHeight: '100vh',
- borderRadius: '0px',
- },
- },
- screen: {
- margin: 'auto',
- borderRadius: '0',
- backgroundColor: 'gray.gray_150',
- padding: '24px',
- width: '100vw',
- height: '100vh',
- maxWidth: '100vw',
- maxHeight: '100vh',
- display: 'flex',
- flexDirection: 'column',
- alignItems: 'center',
- justifyContent: 'center',
-
- '@media (min-width: 1920px)': {
- borderRadius: '16px',
- width: '1400px',
- height: 'fit-content',
- },
- },
- },
- },
- defaultVariants: {
- size: 'default',
- },
-});
-
-export type DialogContentVariants = RecipeVariantProps;
-
-export const dialogScrollableStyle = css({
- display: 'flex',
- flexDirection: 'column',
- overflow: 'hidden',
- '& .dialog-title': { flexShrink: 0 },
-});
-
-export const dialogTopSlotStyle = css({
- flexShrink: 0,
- width: '100%',
-});
-
-export const dialogBodyStyle = css({
- flex: 1,
- minHeight: 0,
- overflowY: 'auto',
- overflowX: 'hidden',
- width: '100%',
-});
-
-export const dialogTitleStyle = css({
- textStyle: 'glyph48.bold',
- color: 'white.white_100',
- textAlign: 'center',
- '@media (max-width: 1200px)': {
- textStyle: 'glyph32.bold',
- },
- _mobile: {
- textStyle: 'glyph24.bold',
- },
-});
diff --git a/packages/ui/panda/src/components/Dialog/Dialog.tsx b/packages/ui/panda/src/components/Dialog/Dialog.tsx
deleted file mode 100644
index becac65a..00000000
--- a/packages/ui/panda/src/components/Dialog/Dialog.tsx
+++ /dev/null
@@ -1,107 +0,0 @@
-'use client';
-
-import * as React from 'react';
-import * as DialogPrimitive from '@radix-ui/react-dialog';
-import { X } from 'lucide-react';
-import { createStyleContext } from '@shadow-panda/style-context';
-import { styled } from '_panda/jsx';
-import { css, cx } from '_panda/css';
-import { dialog } from '_panda/recipes';
-import {
- dialogContentCva,
- DialogContentVariants,
- dialogTitleStyle,
- dialogScrollableStyle,
- dialogTopSlotStyle,
- dialogBodyStyle,
-} from './Dialog.styles';
-
-const { withProvider, withContext } = createStyleContext(dialog);
-
-const DialogPortal = withContext(styled(DialogPrimitive.Portal), 'portal');
-const DialogOverlay = withContext(styled(DialogPrimitive.Overlay), 'overlay');
-const DialogClose = withContext(styled(DialogPrimitive.Close), 'close');
-
-type DialogContentProps = {
- isShowClose?: boolean;
- scrollable?: boolean;
-} & DialogContentVariants &
- React.ComponentPropsWithoutRef;
-
-const Content = React.forwardRef, DialogContentProps>(
- ({ children, isShowClose = true, scrollable, ...props }, ref) => (
-
-
-
- {children}
- {isShowClose && (
-
-
- Close
-
- )}
-
-
- ),
-);
-
-Content.displayName = DialogPrimitive.Content.displayName;
-
-// TODO: z-index 수정 필요
-const overlayStyle = css({ background: 'black.black_75', zIndex: 3000 });
-const closeStyle = css({ background: 'transparent', outline: 'none', padding: '0' });
-
-const Title = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ children, ...props }, ref) => {
- return (
-
- {children}
-
- );
-});
-
-Title.displayName = DialogPrimitive.Title.displayName;
-
-const TopSlot = React.forwardRef>(
- ({ className, ...props }, ref) => ,
-);
-TopSlot.displayName = 'DialogTopSlot';
-
-const Body = React.forwardRef>(
- ({ className, ...props }, ref) => ,
-);
-Body.displayName = 'DialogBody';
-
-export const DialogRoot = withProvider(styled(DialogPrimitive.Root), 'root');
-export const DialogTrigger = withContext(styled(DialogPrimitive.Trigger), 'trigger');
-export const DialogContent = withContext(styled(Content), 'content');
-export const DialogHeader = withContext(styled('div'), 'header');
-export const DialogFooter = withContext(styled('div'), 'footer');
-export const DialogTitle = withContext(styled(Title), 'title');
-export const DialogDescription = withContext(styled(DialogPrimitive.Description), 'description');
-export const DialogTopSlot = TopSlot;
-export const DialogBody = Body;
-
-const Dialog = Object.assign(DialogRoot, {
- Root: DialogRoot,
- Trigger: DialogTrigger,
- Content: DialogContent,
- Header: DialogHeader,
- Footer: DialogFooter,
- Title: DialogTitle,
- Description: DialogDescription,
- TopSlot: DialogTopSlot,
- Body: DialogBody,
-});
-
-export { Dialog };
diff --git a/packages/ui/panda/src/components/Dialog/index.ts b/packages/ui/panda/src/components/Dialog/index.ts
deleted file mode 100644
index c7509f44..00000000
--- a/packages/ui/panda/src/components/Dialog/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export * from './Dialog';
-export * from './Dialog.styles';
-export * from './CommonDialog';
diff --git a/packages/ui/panda/src/components/DropdownMenu/DropdownMenu.tsx b/packages/ui/panda/src/components/DropdownMenu/DropdownMenu.tsx
deleted file mode 100644
index fecdfdb0..00000000
--- a/packages/ui/panda/src/components/DropdownMenu/DropdownMenu.tsx
+++ /dev/null
@@ -1,136 +0,0 @@
-'use client';
-
-import * as React from 'react';
-import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
-import { Check, ChevronRight, Circle } from 'lucide-react';
-import { createStyleContext } from '@shadow-panda/style-context';
-import { styled } from '_panda/jsx';
-import { dropdownMenu, icon } from '_panda/recipes';
-import { css, cx } from '_panda/css';
-const { withProvider, withContext } = createStyleContext(dropdownMenu);
-
-const SubTrigger = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef & {
- insetLeft?: boolean;
- }
->(({ className, insetLeft, children, ...props }, ref) => (
-
- {children}
-
-
-));
-SubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
-
-const Content = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ sideOffset = 4, ...props }, ref) => (
-
-
-
-));
-Content.displayName = DropdownMenuPrimitive.Content.displayName;
-
-const Item = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef & {
- insetLeft?: boolean;
- }
->(({ className, insetLeft, ...props }, ref) => (
-
-));
-Item.displayName = DropdownMenuPrimitive.Item.displayName;
-
-const ItemIndicator = withContext(styled(DropdownMenuPrimitive.ItemIndicator), 'itemIndicator');
-
-const CheckboxItem = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ children, ...props }, ref) => (
-
-
-
-
- {children}
-
-));
-CheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
-
-const RadioItem = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ children, ...props }, ref) => (
-
-
-
-
- {children}
-
-));
-RadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
-
-const Label = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef & {
- insetLeft?: boolean;
- }
->(({ className, insetLeft, ...props }, ref) => (
-
-));
-Label.displayName = DropdownMenuPrimitive.Label.displayName;
-
-export const DropdownMenu = withProvider(styled(DropdownMenuPrimitive.Root), 'root');
-export const DropdownMenuTrigger = withContext(styled(DropdownMenuPrimitive.Trigger), 'trigger');
-export const DropdownMenuGroup = withContext(styled(DropdownMenuPrimitive.Group), 'group');
-export const DropdownMenuPortal = withContext(styled(DropdownMenuPrimitive.Portal), 'portal');
-export const DropdownMenuSub = withContext(styled(DropdownMenuPrimitive.Sub), 'sub');
-export const DropdownMenuRadioGroup = withContext(styled(DropdownMenuPrimitive.RadioGroup), 'radioGroup');
-export const DropdownMenuSubTrigger = withContext(styled(SubTrigger), 'subTrigger');
-export const DropdownMenuSubContent = withContext(styled(DropdownMenuPrimitive.SubContent), 'subContent');
-export const DropdownMenuContent = withContext(styled(Content), 'content');
-export const DropdownMenuItem = withContext(styled(Item), 'item');
-export const DropdownMenuCheckboxItem = withContext(styled(CheckboxItem), 'checkboxItem');
-export const DropdownMenuRadioItem = withContext(styled(RadioItem), 'radioItem');
-export const DropdownMenuLabel = withContext(styled(Label), 'label');
-export const DropdownMenuSeparator = withContext(styled(DropdownMenuPrimitive.Separator), 'separator');
-export const DropdownMenuShortcut = withContext(styled('span'), 'shortcut');
diff --git a/packages/ui/panda/src/components/DropdownMenu/index.tsx b/packages/ui/panda/src/components/DropdownMenu/index.tsx
deleted file mode 100644
index 8aadf2fa..00000000
--- a/packages/ui/panda/src/components/DropdownMenu/index.tsx
+++ /dev/null
@@ -1 +0,0 @@
-export * from './DropdownMenu';
diff --git a/packages/ui/panda/src/components/Label/Label.tsx b/packages/ui/panda/src/components/Label/Label.tsx
deleted file mode 100644
index 6850e574..00000000
--- a/packages/ui/panda/src/components/Label/Label.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { styled, type HTMLStyledProps } from '_panda/jsx';
-import { label } from '_panda/recipes';
-
-export const Label = styled('label', label);
-export type LabelProps = HTMLStyledProps;
diff --git a/packages/ui/panda/src/components/Label/index.tsx b/packages/ui/panda/src/components/Label/index.tsx
deleted file mode 100644
index dd0252d8..00000000
--- a/packages/ui/panda/src/components/Label/index.tsx
+++ /dev/null
@@ -1 +0,0 @@
-export { Label } from './Label';
diff --git a/packages/ui/panda/src/components/ScrollArea/ScrollArea.tsx b/packages/ui/panda/src/components/ScrollArea/ScrollArea.tsx
deleted file mode 100644
index d6e1df0c..00000000
--- a/packages/ui/panda/src/components/ScrollArea/ScrollArea.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-'use client';
-
-import * as React from 'react';
-import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
-import { createStyleContext } from '@shadow-panda/style-context';
-import { styled } from '_panda/jsx';
-import { scrollArea } from '_panda/recipes';
-
-const { withProvider, withContext } = createStyleContext(scrollArea);
-
-const Viewport = withContext(ScrollAreaPrimitive.Viewport, 'viewport');
-const Corner = withContext(ScrollAreaPrimitive.Corner, 'corner');
-const Thumb = withContext(ScrollAreaPrimitive.ScrollAreaThumb, 'thumb');
-
-const BaseScrollBar = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ orientation = 'vertical', ...props }, ref) => (
-
-
-
-));
-BaseScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;
-
-export const ScrollBar = withContext(styled(BaseScrollBar), 'scrollbar');
-
-const BaseScrollArea = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ children, ...props }, ref) => (
-
- {children}
-
-
-
-));
-BaseScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
-
-export const ScrollArea = withProvider(styled(BaseScrollArea), 'root');
diff --git a/packages/ui/panda/src/components/ScrollArea/index.ts b/packages/ui/panda/src/components/ScrollArea/index.ts
deleted file mode 100644
index 4ab76e5c..00000000
--- a/packages/ui/panda/src/components/ScrollArea/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export * from './ScrollArea';
diff --git a/packages/ui/panda/src/components/SearchBar/SearchBar.stories.tsx b/packages/ui/panda/src/components/SearchBar/SearchBar.stories.tsx
deleted file mode 100644
index 92807799..00000000
--- a/packages/ui/panda/src/components/SearchBar/SearchBar.stories.tsx
+++ /dev/null
@@ -1,38 +0,0 @@
-import type { Meta, StoryObj } from '@storybook/react';
-import { SearchBar } from './SearchBar';
-
-const meta: Meta = {
- title: 'Components/SearchBar',
- component: SearchBar,
- tags: ['autodocs'],
-};
-
-export default meta;
-type Story = StoryObj;
-
-export const Default: Story = {
- args: {
- placeholder: '검색어를 입력하세요',
- },
-};
-
-export const WithValue: Story = {
- args: {
- placeholder: '검색어를 입력하세요',
- defaultValue: '검색어',
- },
-};
-
-export const Disabled: Story = {
- args: {
- placeholder: '검색어를 입력하세요',
- disabled: true,
- },
-};
-
-export const WithOnSubmit: Story = {
- args: {
- placeholder: '검색어를 입력하세요',
- onSubmit: () => alert('검색이 실행되었습니다!'),
- },
-};
diff --git a/packages/ui/panda/src/components/SearchBar/SearchBar.tsx b/packages/ui/panda/src/components/SearchBar/SearchBar.tsx
deleted file mode 100644
index a789edf3..00000000
--- a/packages/ui/panda/src/components/SearchBar/SearchBar.tsx
+++ /dev/null
@@ -1,63 +0,0 @@
-'use client';
-
-import { css, cx } from '_panda/css';
-import { flex } from '_panda/patterns';
-import { SearchIcon } from 'lucide-react';
-import { ComponentProps } from 'react';
-
-export function SearchBar({ onSubmit, onKeyDown, ...props }: ComponentProps<'input'> & { onSubmit?: () => void }) {
- return (
-
- {
- if (e.key === 'Enter') {
- onSubmit?.();
- }
- onKeyDown?.(e);
- }}
- />
-
-
- );
-}
-
-const containerStyle = flex({
- width: '100%',
- height: '40px',
- alignItems: 'center',
- gap: '8px',
- borderRadius: '8px',
- border: '1px solid',
- borderColor: 'white.white_25',
- flexShrink: 0,
- position: 'relative',
- transition: 'border-color 0.1s ease-in-out',
- _focusWithin: {
- borderColor: 'white.white_75',
- },
-});
-
-const inputStyle = css({
- width: '100%',
- height: '100%',
- border: 'none',
- outline: 'none',
- textStyle: 'glyph16.regular',
- padding: '8px 12px',
- color: 'white.white_75',
- _placeholder: {
- color: 'white.white_25',
- },
-});
-
-const iconStyle = css({
- position: 'absolute',
- right: '12px',
- top: '50%',
- transform: 'translateY(-50%)',
-});
diff --git a/packages/ui/panda/src/components/SearchBar/index.ts b/packages/ui/panda/src/components/SearchBar/index.ts
deleted file mode 100644
index 3d7e42eb..00000000
--- a/packages/ui/panda/src/components/SearchBar/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export * from './SearchBar';
diff --git a/packages/ui/panda/src/components/Select/Select.stories.tsx b/packages/ui/panda/src/components/Select/Select.stories.tsx
deleted file mode 100644
index afe0481c..00000000
--- a/packages/ui/panda/src/components/Select/Select.stories.tsx
+++ /dev/null
@@ -1,55 +0,0 @@
-import type { Meta, StoryObj } from '@storybook/react';
-import { Select } from './Select';
-
-const meta: Meta = {
- title: 'Components/Select',
- component: Select,
- tags: ['autodocs'],
- parameters: {
- layout: 'centered',
- },
-};
-
-export default meta;
-type Story = StoryObj;
-
-export const Default: Story = {
- render: () => (
-
- ),
-};
-
-export const WithSeparator: Story = {
- render: () => (
-
- ),
-};
diff --git a/packages/ui/panda/src/components/Select/Select.styles.ts b/packages/ui/panda/src/components/Select/Select.styles.ts
deleted file mode 100644
index 82ccddc9..00000000
--- a/packages/ui/panda/src/components/Select/Select.styles.ts
+++ /dev/null
@@ -1,45 +0,0 @@
-import { css, cva, RecipeVariantProps } from '_panda/css';
-
-export const selectTriggerStyle = cva({
- base: {
- textStyle: 'glyph16.regular',
- color: 'white.white_90',
- width: 'fit-content',
- height: '36px',
- padding: '6px 8px',
- borderRadius: 10,
- backgroundColor: 'white.white_25',
- borderColor: 'white.white_25',
- },
-
- variants: {
- size: {
- sm: {
- height: '30px',
- backgroundColor: 'white.white_5',
- },
- },
- },
-});
-
-export type SelectTriggerStyleProps = RecipeVariantProps;
-
-export const selectContentStyle = css({
- backgroundColor: 'black.black_75',
- borderRadius: 10,
- border: '1px solid',
- borderColor: 'black.black_50',
- color: 'white',
-});
-
-export const selectItemStyle = css({
- color: 'white',
- textStyle: 'glyph16.regular',
-
- _hover: {
- backgroundColor: 'white.white_5',
- },
- _focus: {
- backgroundColor: 'white.white_5',
- },
-});
diff --git a/packages/ui/panda/src/components/Select/Select.tsx b/packages/ui/panda/src/components/Select/Select.tsx
deleted file mode 100644
index 9b66581f..00000000
--- a/packages/ui/panda/src/components/Select/Select.tsx
+++ /dev/null
@@ -1,84 +0,0 @@
-'use client';
-
-import * as React from 'react';
-import * as SelectPrimitive from '@radix-ui/react-select';
-import { Check, ChevronDown } from 'lucide-react';
-import { createStyleContext } from '@shadow-panda/style-context';
-import { styled } from '_panda/jsx';
-import { select, icon } from '_panda/recipes';
-import { cx } from '_panda/css';
-import { selectContentStyle, selectItemStyle, selectTriggerStyle, SelectTriggerStyleProps } from './Select.styles';
-
-const { withProvider, withContext } = createStyleContext(select);
-
-const Trigger = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef & SelectTriggerStyleProps
->(({ children, ...props }, ref) => (
-
- {children}
-
-
-
-
-));
-Trigger.displayName = SelectPrimitive.Trigger.displayName;
-
-const Viewport = withContext(SelectPrimitive.Viewport, 'viewport');
-
-const Content = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ children, position = 'popper', ...props }, ref) => (
-
-
- {children}
-
-
-));
-Content.displayName = SelectPrimitive.Content.displayName;
-
-const ItemIndicator = withContext(styled(SelectPrimitive.ItemIndicator), 'itemIndicator');
-
-const Item = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ children, ...props }, ref) => (
-
-
-
-
-
- {children}
-
-));
-Item.displayName = SelectPrimitive.Item.displayName;
-
-const SelectRoot = withProvider(styled(SelectPrimitive.Root), 'root');
-const SelectGroup = withContext(styled(SelectPrimitive.Group), 'group');
-const SelectValue = withContext(styled(SelectPrimitive.Value), 'value');
-const SelectTrigger = withContext(styled(Trigger), 'trigger');
-const SelectContent = withContext(styled(Content), 'content');
-const SelectLabel = withContext(styled(SelectPrimitive.Label), 'label');
-const SelectItem = withContext(styled(Item), 'item');
-const SelectSeparator = withContext(styled(SelectPrimitive.Separator), 'separator');
-
-export const Select = Object.assign(SelectRoot, {
- Group: SelectGroup,
- Value: SelectValue,
- Trigger: SelectTrigger,
- Content: SelectContent,
- Label: SelectLabel,
- Item: SelectItem,
- Separator: SelectSeparator,
-});
diff --git a/packages/ui/panda/src/components/Select/index.ts b/packages/ui/panda/src/components/Select/index.ts
deleted file mode 100644
index f5430298..00000000
--- a/packages/ui/panda/src/components/Select/index.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-/**
- * Chip 컴포넌트와 동일합니다.
- * 디자인 가이드 상 이름이 Chip임으로 통일하는 것이 좋을 것 같아요.
- * @deprecated
- */
-export * from './Select';
diff --git a/packages/ui/panda/src/components/Skeleton/Skeleton.tsx b/packages/ui/panda/src/components/Skeleton/Skeleton.tsx
deleted file mode 100644
index 996ac221..00000000
--- a/packages/ui/panda/src/components/Skeleton/Skeleton.tsx
+++ /dev/null
@@ -1,4 +0,0 @@
-import { styled } from '_panda/jsx';
-import { skeletonStyle } from './cva';
-
-export const Skeleton = styled('div', skeletonStyle);
diff --git a/packages/ui/panda/src/components/Skeleton/cva.tsx b/packages/ui/panda/src/components/Skeleton/cva.tsx
deleted file mode 100644
index 65ddbcba..00000000
--- a/packages/ui/panda/src/components/Skeleton/cva.tsx
+++ /dev/null
@@ -1,26 +0,0 @@
-import { cva } from '_panda/css';
-
-export const skeletonStyle = cva({
- base: {
- overflow: 'hidden',
- backgroundSize: '200% 100%',
- animation: `skeletonLoading 1.5s infinite linear`,
- background:
- 'linear-gradient(90deg, token(colors.gray.800) 25%, token(colors.gray.600) 50%, token(colors.gray.200) 75%, token(colors.gray.800) 100%)',
- },
- variants: {
- color: {
- white: {
- backgroundColor: 'white_10',
- background:
- 'linear-gradient(90deg, token(colors.gray.800) 25%, token(colors.gray.600) 50%, token(colors.gray.200) 75%, token(colors.gray.800) 100%)',
- },
- black: {
- backgroundColor: 'black_10',
- },
- },
- },
- defaultVariants: {
- color: 'white',
- },
-});
diff --git a/packages/ui/panda/src/components/Skeleton/index.ts b/packages/ui/panda/src/components/Skeleton/index.ts
deleted file mode 100644
index 0dbc6dac..00000000
--- a/packages/ui/panda/src/components/Skeleton/index.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-export { Skeleton } from './Skeleton';
-export { skeletonStyle } from './cva';
diff --git a/packages/ui/panda/src/components/Textfield/TextField.stories.tsx b/packages/ui/panda/src/components/Textfield/TextField.stories.tsx
deleted file mode 100644
index cb44aaf9..00000000
--- a/packages/ui/panda/src/components/Textfield/TextField.stories.tsx
+++ /dev/null
@@ -1,38 +0,0 @@
-import type { Meta, StoryObj } from '@storybook/react';
-import { TextField } from './TextField';
-
-const meta: Meta = {
- title: 'Components/TextField',
- component: TextField,
- tags: ['autodocs'],
-};
-
-export default meta;
-type Story = StoryObj;
-
-export const Default: Story = {
- args: {
- placeholder: '텍스트를 입력하세요',
- },
-};
-
-export const WithValue: Story = {
- args: {
- placeholder: '텍스트를 입력하세요',
- defaultValue: '입력된 텍스트',
- },
-};
-
-export const WithError: Story = {
- args: {
- placeholder: '텍스트를 입력하세요',
- error: '올바른 텍스트를 입력해주세요',
- },
-};
-
-export const Disabled: Story = {
- args: {
- placeholder: '텍스트를 입력하세요',
- disabled: true,
- },
-};
diff --git a/packages/ui/panda/src/components/Textfield/TextField.tsx b/packages/ui/panda/src/components/Textfield/TextField.tsx
deleted file mode 100644
index 433ad002..00000000
--- a/packages/ui/panda/src/components/Textfield/TextField.tsx
+++ /dev/null
@@ -1,37 +0,0 @@
-import { css, cx } from '_panda/css';
-import { ComponentProps } from 'react';
-
-interface TextFieldProps extends ComponentProps<'input'> {
- error?: string;
-}
-
-export const TextField = ({ error, ...props }: TextFieldProps) => {
- return (
-
- );
-};
-
-const textFieldStyle = css({
- height: '55px',
- padding: '14px 20px',
- alignItems: 'flex-start',
- gap: '8px',
- borderRadius: '8px',
- border: '1px solid',
- borderColor: 'white.white_25',
- color: 'white',
- textStyle: 'glyph16.regular',
- width: '100%',
- _placeholder: {
- color: 'white.white_50',
- },
-});
-
-const errorStyle = css({
- textStyle: 'glyph14.regular',
- color: 'brand.coral',
- mt: '6px',
-});
diff --git a/packages/ui/panda/src/components/Textfield/Textarea.stories.tsx b/packages/ui/panda/src/components/Textfield/Textarea.stories.tsx
deleted file mode 100644
index b2d5e2ee..00000000
--- a/packages/ui/panda/src/components/Textfield/Textarea.stories.tsx
+++ /dev/null
@@ -1,31 +0,0 @@
-import type { Meta, StoryObj } from '@storybook/react';
-import { TextArea } from './Textarea';
-
-const meta: Meta = {
- title: 'Components/TextArea',
- component: TextArea,
- tags: ['autodocs'],
-};
-
-export default meta;
-type Story = StoryObj;
-
-export const Default: Story = {
- args: {
- placeholder: '텍스트를 입력하세요',
- },
-};
-
-export const WithValue: Story = {
- args: {
- placeholder: '텍스트를 입력하세요',
- defaultValue: '입력된 텍스트입니다.\n여러 줄의 텍스트를 입력할 수 있습니다.',
- },
-};
-
-export const Disabled: Story = {
- args: {
- placeholder: '텍스트를 입력하세요',
- disabled: true,
- },
-};
diff --git a/packages/ui/panda/src/components/Textfield/Textarea.tsx b/packages/ui/panda/src/components/Textfield/Textarea.tsx
deleted file mode 100644
index 51e189b1..00000000
--- a/packages/ui/panda/src/components/Textfield/Textarea.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-import { cx, css } from '_panda/css';
-import { ComponentProps } from 'react';
-
-export const TextArea = (props: ComponentProps<'textarea'>) => {
- return ;
-};
-
-const textAreaStyle = css({
- borderRadius: '8px',
- border: '1px solid',
- borderColor: 'white.white_25',
- width: '100%',
- minHeight: '102px',
- padding: '16px 12px 8px 20px',
- flexShrink: 0,
- color: 'white',
- resize: 'none',
- _placeholder: {
- color: 'white.white_50',
- },
-});
diff --git a/packages/ui/panda/src/components/Textfield/index.ts b/packages/ui/panda/src/components/Textfield/index.ts
deleted file mode 100644
index 90297c69..00000000
--- a/packages/ui/panda/src/components/Textfield/index.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-export { TextField } from './TextField';
-export { TextArea } from './Textarea';
diff --git a/packages/ui/panda/src/components/Tooltip/Tooltip.stories.tsx b/packages/ui/panda/src/components/Tooltip/Tooltip.stories.tsx
deleted file mode 100644
index dae5e136..00000000
--- a/packages/ui/panda/src/components/Tooltip/Tooltip.stories.tsx
+++ /dev/null
@@ -1,60 +0,0 @@
-import type { Meta, StoryObj } from '@storybook/react';
-import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from './Tooltip';
-
-const meta: Meta = {
- title: 'Components/Tooltip',
- component: Tooltip,
- tags: ['autodocs'],
- parameters: {
- layout: 'centered',
- },
-};
-
-export default meta;
-type Story = StoryObj;
-
-export const Default: Story = {
- render: () => (
-
-
- 마우스를 올려보세요
- 이것은 툴팁입니다
-
-
- ),
-};
-
-export const WithLongContent: Story = {
- render: () => (
-
-
- 마우스를 올려보세요
- 이것은 긴 내용을 가진 툴팁입니다. 여러 줄의 텍스트를 포함할 수 있습니다.
-
-
- ),
-};
-
-export const WithCustomPosition: Story = {
- render: () => (
-
-
- 마우스를 올려보세요
-
- 오른쪽에 표시되는 툴팁입니다
-
-
-
- ),
-};
-
-export const WithNoDelay: Story = {
- render: () => (
-
-
- 마우스를 올려보세요
- 지연 시간이 없는 툴팁입니다 (0ms)
-
-
- ),
-};
diff --git a/packages/ui/panda/src/components/Tooltip/Tooltip.tsx b/packages/ui/panda/src/components/Tooltip/Tooltip.tsx
deleted file mode 100644
index a3fc402a..00000000
--- a/packages/ui/panda/src/components/Tooltip/Tooltip.tsx
+++ /dev/null
@@ -1,38 +0,0 @@
-'use client';
-
-import * as TooltipPrimitive from '@radix-ui/react-tooltip';
-import { createStyleContext } from '@shadow-panda/style-context';
-import { css, cx } from '_panda/css';
-import { styled } from '_panda/jsx';
-import { tooltip } from '_panda/recipes';
-import React from 'react';
-
-const { withProvider, withContext } = createStyleContext(tooltip);
-
-const Content = React.forwardRef<
- React.ElementRef,
- React.ComponentPropsWithoutRef
->(({ children, ...props }, ref) => (
-
- {children}
-
-));
-
-const tooltipContentStyle = css({
- base: {
- borderRadius: '8px',
- background: '#404148',
- backdropFilter: 'blur(7px)',
- color: 'white',
- textStyle: 'glyph14.regular',
- border: '1px solid #404148',
- padding: '12px 16px',
- },
-});
-
-export const TooltipProvider = TooltipPrimitive.Provider;
-export const Tooltip = withProvider(styled(TooltipPrimitive.Root), 'root');
-export const TooltipTrigger = withContext(styled(TooltipPrimitive.Trigger), 'trigger');
-export const TooltipContent = withContext(styled(Content), 'content', {
- sideOffset: 4,
-});
diff --git a/packages/ui/panda/src/components/Tooltip/index.ts b/packages/ui/panda/src/components/Tooltip/index.ts
deleted file mode 100644
index 7594a8f0..00000000
--- a/packages/ui/panda/src/components/Tooltip/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export * from './Tooltip';
diff --git a/packages/ui/panda/src/components/index.ts b/packages/ui/panda/src/components/index.ts
deleted file mode 100644
index e3cf91d1..00000000
--- a/packages/ui/panda/src/components/index.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-export * from './Button';
-export * from './Card';
-export * from './Skeleton';
-export * from './Banner';
-export * from './Textfield';
-export * from './Accordion';
-export * from './Dialog';
-export * from './Select';
-export * from './CheckBox';
-export * from './Label';
-export * from './SearchBar';
-export * from './Chip';
-export * from './DropdownMenu';
-export * from './Tooltip';
-export * from './ScrollArea';
diff --git a/packages/ui/panda/src/index.ts b/packages/ui/panda/src/index.ts
deleted file mode 100644
index 1de607e0..00000000
--- a/packages/ui/panda/src/index.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-export * from './components';
-export * from './theme';
-export * from './animation';
-
-export * as utilities from './utilities';
diff --git a/packages/ui/panda/src/theme/index.ts b/packages/ui/panda/src/theme/index.ts
deleted file mode 100644
index d201a6fa..00000000
--- a/packages/ui/panda/src/theme/index.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-export * from './tokens';
-export * from './semanticTokens';
-export * from './textStyles';
-export * from './keyframes';
-export * from './media';
diff --git a/packages/ui/panda/src/theme/keyframes.ts b/packages/ui/panda/src/theme/keyframes.ts
deleted file mode 100644
index a7f95559..00000000
--- a/packages/ui/panda/src/theme/keyframes.ts
+++ /dev/null
@@ -1,107 +0,0 @@
-import { defineKeyframes } from '@pandacss/dev';
-
-export const keyframes = defineKeyframes({
- fadeIn: {
- from: {
- opacity: 0,
- },
- to: {
- opacity: 1,
- },
- },
- fadeInUp: {
- from: {
- opacity: 0,
- transform: 'translateY(20px)',
- },
- to: {
- opacity: 1,
- transform: 'translateY(0)',
- },
- },
-
- jump: {
- '0%': {
- transform: 'translateY(0)',
- },
- '50%': {
- transform: 'translateY(-10px)',
- },
- '100%': {
- transform: 'translateY(0)',
- },
- },
- bounce: {
- '0%, 20%, 50%, 80%, 100%': {
- transform: 'translateY(0)',
- },
- '40%': {
- transform: 'translateY(-30px)',
- },
- '60%': {
- transform: 'translateY(-20px)',
- },
- },
- move: {
- '0%': {
- rotate: '-2deg',
- },
- '50%': {
- rotate: '2deg',
- },
- '100%': {
- rotate: '-2deg',
- },
- },
- move_5: {
- '0%': {
- rotate: '-5deg',
- },
- '50%': {
- rotate: '5deg',
- },
- '100%': {
- rotate: '-5deg',
- },
- },
- slide: {
- '0%': {
- transform: 'translate3d(0, 0, 0)',
- },
- '100%': {
- transform: 'translate3d(-100%, 0, 0)',
- },
- },
- slideFromRight: {
- from: {
- transform: 'translateX(30%)',
- },
- to: {
- transform: 'translateX(0)',
- },
- },
- slideFromLeft: {
- from: {
- transform: 'translateX(-30%)',
- },
- to: {
- transform: 'translateX(0)',
- },
- },
- skeletonLoading: {
- '0%': {
- backgroundPosition: '200% 0',
- },
- '100%': {
- backgroundPosition: '-200% 0',
- },
- },
- animateSpin: {
- from: {
- transform: 'rotate(0deg)',
- },
- to: {
- transform: 'rotate(360deg)',
- },
- },
-});
diff --git a/packages/ui/panda/src/theme/media.ts b/packages/ui/panda/src/theme/media.ts
deleted file mode 100644
index 7ef02be8..00000000
--- a/packages/ui/panda/src/theme/media.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-export const mediaBreakpoints = {
- mobile: 768,
- tablet: 1024,
- pc: 1440,
-};
-
-export const media = {
- mobile: `@media (max-width: ${mediaBreakpoints.mobile}px)`,
- tablet: `@media (max-width: ${mediaBreakpoints.tablet}px)`,
- pc: `@media (max-width: ${mediaBreakpoints.pc}px)`,
- desktop: `@media (min-width: ${mediaBreakpoints.mobile}px)`,
-};
diff --git a/packages/ui/panda/src/theme/semanticTokens.ts b/packages/ui/panda/src/theme/semanticTokens.ts
deleted file mode 100644
index fded4708..00000000
--- a/packages/ui/panda/src/theme/semanticTokens.ts
+++ /dev/null
@@ -1,36 +0,0 @@
-import { defineSemanticTokens } from '@pandacss/dev';
-import { BLACK, WHITE, BRAND, GRAY } from '@gitanimals/ui-token';
-import { objectKeys } from '@gitanimals/util-typescript';
-
-export const semanticTokens = defineSemanticTokens({
- colors: {
- brand: {
- DEFAULT: { value: BRAND.sky },
- ...objectKeys(BRAND).reduce>((acc, key) => {
- acc[key] = { value: BRAND[key] };
- return acc;
- }, {}),
- },
- black: {
- DEFAULT: { value: BLACK.black },
- ...objectKeys(BLACK).reduce>((acc, key) => {
- acc[key] = { value: BLACK[key] };
- return acc;
- }, {}),
- },
- white: {
- DEFAULT: { value: WHITE.white },
- ...objectKeys(WHITE).reduce>((acc, key) => {
- acc[key] = { value: WHITE[key] };
- return acc;
- }, {}),
- },
- gray: {
- DEFAULT: { value: GRAY.gray_000 },
- ...objectKeys(GRAY).reduce>((acc, key) => {
- acc[key] = { value: GRAY[key] };
- return acc;
- }, {}),
- },
- },
-});
diff --git a/packages/ui/panda/src/theme/textStyles.ts b/packages/ui/panda/src/theme/textStyles.ts
deleted file mode 100644
index 38f00c44..00000000
--- a/packages/ui/panda/src/theme/textStyles.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { TextStyles, defineTextStyles } from '@pandacss/dev';
-import { GLYPH } from '@gitanimals/ui-token';
-
-const glyphTextStyles = Object.entries(GLYPH).reduce((acc, [key, value]) => {
- const styles = Object.entries(value).reduce((_acc, [key, value]) => {
- _acc[key] = { value: value };
- return _acc;
- }, {});
-
- acc[key] = styles;
- return acc;
-}, {});
-
-export const textStyles = defineTextStyles({
- ...glyphTextStyles,
-});
diff --git a/packages/ui/panda/src/theme/tokens.ts b/packages/ui/panda/src/theme/tokens.ts
deleted file mode 100644
index a6b0b016..00000000
--- a/packages/ui/panda/src/theme/tokens.ts
+++ /dev/null
@@ -1,45 +0,0 @@
-import { defineTokens } from '@pandacss/dev';
-import { COLORS } from '@gitanimals/ui-token';
-import { objectKeys } from '@gitanimals/util-typescript';
-
-const colors = objectKeys(COLORS).reduce>((acc, key) => {
- acc[key] = { value: COLORS[key] };
- return acc;
-}, {});
-
-export const tokens = defineTokens({
- colors,
- fonts: {
- body: {
- value: 'system-ui, sans-serif',
- },
- mono: {
- value: 'Menlo, monospace',
- },
- dnf: {
- value: 'DNFBitBitv2, monospace',
- },
- product: {
- value: 'Product Sans, system-ui, sans-serif',
- },
- dosgothic: {
- value: 'DOSGothic, system-ui, sans-serif',
- },
- },
- zIndex: {
- hide: { value: '-1' },
- base: { value: '0' },
- aboveDefault: { value: '1' },
- floating: { value: '2' },
- dropdown: { value: '1000' },
- sticky: { value: '1100' },
- header: { value: '1200' },
- overlay: { value: '1300' },
- drawer: { value: '1400' },
- modal: { value: '1500' },
- popover: { value: '1600' },
- toast: { value: '1700' },
- tooltip: { value: '1800' },
- loading: { value: '9999' },
- },
-});
diff --git a/packages/ui/panda/src/utilities/index.ts b/packages/ui/panda/src/utilities/index.ts
deleted file mode 100644
index 140057c7..00000000
--- a/packages/ui/panda/src/utilities/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export * from './noSelect';
diff --git a/packages/ui/panda/src/utilities/noSelect.ts b/packages/ui/panda/src/utilities/noSelect.ts
deleted file mode 100644
index e1f38dc4..00000000
--- a/packages/ui/panda/src/utilities/noSelect.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { defineUtility } from '@pandacss/dev';
-
-export const noSelect = defineUtility({
- className: 'no-select',
- values: {
- true: 'true',
- false: 'false',
- },
- transform(value) {
- if (value === 'true') {
- return {
- userSelect: 'none',
- WebkitUserSelect: 'none',
- MozUserSelect: 'none',
- msUserSelect: 'none',
- WebkitUserDrag: 'none',
- MozUserDrag: 'none',
- userDrag: 'none',
- };
- }
- return {};
- },
-});
diff --git a/packages/ui/panda/tsconfig.json b/packages/ui/panda/tsconfig.json
deleted file mode 100644
index dcbd0f5f..00000000
--- a/packages/ui/panda/tsconfig.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "extends": "@gitanimals/typescript-config/react-library.json",
- "compilerOptions": {
- "paths": {
- "_panda/*": ["./styled-system/*"]
- },
- "types": ["@pandacss/dev", "@storybook/react"]
- },
- "include": ["src", "**/*.ts", "**/*.tsx", "styled-system", "../../../apps/web/src/components/MediaQuery"],
- "exclude": ["node_modules"]
-}
diff --git a/packages/ui/panda/turbo/generators/config.ts b/packages/ui/panda/turbo/generators/config.ts
deleted file mode 100644
index b3facf1f..00000000
--- a/packages/ui/panda/turbo/generators/config.ts
+++ /dev/null
@@ -1,30 +0,0 @@
-import type { PlopTypes } from "@turbo/gen";
-
-// Learn more about Turborepo Generators at https://turbo.build/repo/docs/core-concepts/monorepos/code-generation
-
-export default function generator(plop: PlopTypes.NodePlopAPI): void {
- // A simple generator to add a new React component to the internal UI library
- plop.setGenerator("react-component", {
- description: "Adds a new react component",
- prompts: [
- {
- type: "input",
- name: "name",
- message: "What is the name of the component?",
- },
- ],
- actions: [
- {
- type: "add",
- path: "src/{{kebabCase name}}.tsx",
- templateFile: "templates/component.hbs",
- },
- {
- type: "append",
- path: "package.json",
- pattern: /"exports": {(?)/g,
- template: '"./{{kebabCase name}}": "./src/{{kebabCase name}}.tsx",',
- },
- ],
- });
-}
diff --git a/packages/ui/panda/turbo/generators/templates/component.hbs b/packages/ui/panda/turbo/generators/templates/component.hbs
deleted file mode 100644
index d968b9e3..00000000
--- a/packages/ui/panda/turbo/generators/templates/component.hbs
+++ /dev/null
@@ -1,8 +0,0 @@
-export const {{ pascalCase name }} = ({ children }: { children: React.ReactNode }) => {
- return (
-
-
{{ pascalCase name }} Component
- {children}
-
- );
-};
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index a1f00218..fb8739cb 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -33,124 +33,6 @@ importers:
specifier: ^5.4.5
version: 5.4.5
- apps/admin:
- dependencies:
- '@gitanimals/api':
- specifier: workspace:*
- version: link:../../packages/api
- '@gitanimals/asset-font':
- specifier: workspace:*
- version: link:../../packages/asset/font
- '@gitanimals/exception':
- specifier: workspace:*
- version: link:../../packages/exception
- '@gitanimals/ui-panda':
- specifier: workspace:*
- version: link:../../packages/ui/panda
- '@radix-ui/react-avatar':
- specifier: ^1.1.0
- version: 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-checkbox':
- specifier: ^1.1.1
- version: 1.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-dropdown-menu':
- specifier: ^2.1.1
- version: 2.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-navigation-menu':
- specifier: ^1.2.0
- version: 1.2.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-slot':
- specifier: ^1.1.0
- version: 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-tabs':
- specifier: ^1.1.0
- version: 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@remix-run/node':
- specifier: ^2.10.2
- version: 2.10.3(typescript@5.4.5)
- '@remix-run/react':
- specifier: ^2.10.2
- version: 2.10.3(react-dom@18.3.1(react@18.2.0))(react@18.2.0)(typescript@5.4.5)
- '@remix-run/serve':
- specifier: ^2.10.2
- version: 2.10.3(typescript@5.4.5)
- '@shadow-panda/style-context':
- specifier: ^0.7.1
- version: 0.7.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@tanstack/react-query':
- specifier: ^5.32.0
- version: 5.45.0(react@18.2.0)
- '@tanstack/react-table':
- specifier: ^8.19.3
- version: 8.19.3(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- isbot:
- specifier: ^4.1.0
- version: 4.4.0
- lucide-react:
- specifier: ^0.408.0
- version: 0.408.0(react@18.2.0)
- react:
- specifier: ^18
- version: 18.2.0
- react-dom:
- specifier: ^18.3.1
- version: 18.3.1(react@18.2.0)
- devDependencies:
- '@gitanimals/eslint-config':
- specifier: workspace:*
- version: link:../../packages/eslint-config
- '@gitanimals/typescript-config':
- specifier: workspace:*
- version: link:../../packages/typescript-config
- '@pandacss/dev':
- specifier: ^0.41.0
- version: 0.41.0(jsdom@20.0.3)(typescript@5.4.5)
- '@remix-run/dev':
- specifier: ^2.10.2
- version: 2.10.3(@remix-run/react@2.10.3(react-dom@18.3.1(react@18.2.0))(react@18.2.0)(typescript@5.4.5))(@remix-run/serve@2.10.3(typescript@5.4.5))(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1)(ts-node@10.9.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/node@20.11.24)(typescript@5.4.5))(typescript@5.4.5)(vite@5.3.5(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1))
- '@shadow-panda/preset':
- specifier: ^0.7.1
- version: 0.7.1(@pandacss/dev@0.41.0(jsdom@20.0.3)(typescript@5.4.5))
- '@types/react':
- specifier: ^18
- version: 18.2.61
- '@types/react-dom':
- specifier: ^18.2.7
- version: 18.2.19
- '@typescript-eslint/eslint-plugin':
- specifier: ^6.7.4
- version: 6.17.0(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/parser':
- specifier: ^6.7.4
- version: 6.17.0(eslint@8.57.0)(typescript@5.4.5)
- eslint:
- specifier: ^8.38.0
- version: 8.57.0
- eslint-import-resolver-typescript:
- specifier: ^3.6.1
- version: 3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.57.0)
- eslint-plugin-import:
- specifier: ^2.28.1
- version: 2.29.1(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
- eslint-plugin-jsx-a11y:
- specifier: ^6.7.1
- version: 6.8.0(eslint@8.57.0)
- eslint-plugin-react:
- specifier: ^7.33.2
- version: 7.33.2(eslint@8.57.0)
- eslint-plugin-react-hooks:
- specifier: ^4.6.0
- version: 4.6.0(eslint@8.57.0)
- typescript:
- specifier: ^5.4.5
- version: 5.4.5
- vite:
- specifier: ^5.1.0
- version: 5.3.5(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1)
- vite-tsconfig-paths:
- specifier: ^4.2.1
- version: 4.3.2(typescript@5.4.5)(vite@5.3.5(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1))
-
apps/admin-main:
dependencies:
'@radix-ui/react-accordion':
@@ -391,9 +273,6 @@ importers:
'@gitanimals/ui-icon':
specifier: workspace:*
version: link:../../packages/ui/icon
- '@gitanimals/ui-panda':
- specifier: workspace:*
- version: link:../../packages/ui/panda
'@gitanimals/ui-tailwind':
specifier: workspace:*
version: link:../../packages/ui/tailwind
@@ -418,9 +297,6 @@ importers:
'@radix-ui/react-tooltip':
specifier: ^1.1.6
version: 1.1.6(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@shadow-panda/style-context':
- specifier: ^0.7.1
- version: 0.7.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
'@supabase/supabase-js':
specifier: ^2.75.0
version: 2.75.0
@@ -506,12 +382,6 @@ importers:
'@next/bundle-analyzer':
specifier: ^14.2.5
version: 14.2.5
- '@pandacss/dev':
- specifier: ^0.41.0
- version: 0.41.0(jsdom@20.0.3)(typescript@5.4.5)
- '@shadow-panda/preset':
- specifier: ^0.7.1
- version: 0.7.1(@pandacss/dev@0.41.0(jsdom@20.0.3)(typescript@5.4.5))
'@storybook/addon-essentials':
specifier: ^8.0.9
version: 8.1.9(@types/react-dom@18.2.19)(@types/react@18.2.61)(prettier@3.2.5)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
@@ -861,121 +731,6 @@ importers:
specifier: ^5.4.5
version: 5.4.5
- packages/ui/panda:
- dependencies:
- '@gitanimals/react':
- specifier: workspace:*
- version: link:../../lib/react
- '@radix-ui/react-accordion':
- specifier: ^1.2.1
- version: 1.2.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-checkbox':
- specifier: ^1.1.1
- version: 1.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-dialog':
- specifier: ^1.1.2
- version: 1.1.2(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-dropdown-menu':
- specifier: ^2.1.1
- version: 2.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-label':
- specifier: ^2.1.1
- version: 2.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-scroll-area':
- specifier: ^1.2.10
- version: 1.2.10(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-select':
- specifier: ^2.1.2
- version: 2.1.2(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-tooltip':
- specifier: ^1.1.6
- version: 1.1.6(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@react-spring/web':
- specifier: ^9.7.5
- version: 9.7.5(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@shadow-panda/style-context':
- specifier: ^0.7.1
- version: 0.7.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- lucide-react:
- specifier: ^0.408.0
- version: 0.408.0(react@18.2.0)
- devDependencies:
- '@chromatic-com/storybook':
- specifier: ^1.9.0
- version: 1.9.0(react@18.2.0)
- '@gitanimals/eslint-config':
- specifier: workspace:*
- version: link:../../eslint-config
- '@gitanimals/typescript-config':
- specifier: workspace:*
- version: link:../../typescript-config
- '@gitanimals/ui-token':
- specifier: workspace:*
- version: link:../token
- '@gitanimals/util-typescript':
- specifier: workspace:*
- version: link:../../util/typescript
- '@pandacss/dev':
- specifier: ^0.41.0
- version: 0.41.0(jsdom@20.0.3)(typescript@5.4.5)
- '@shadow-panda/preset':
- specifier: ^0.7.1
- version: 0.7.1(@pandacss/dev@0.41.0(jsdom@20.0.3)(typescript@5.4.5))
- '@storybook/addon-essentials':
- specifier: ^8.0.9
- version: 8.1.9(@types/react-dom@18.2.19)(@types/react@18.2.61)(prettier@3.2.5)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@storybook/addon-interactions':
- specifier: ^8.0.9
- version: 8.1.9(@jest/globals@29.7.0)(@types/jest@29.5.14)(jest@29.7.0(@types/node@20.11.24)(ts-node@10.9.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/node@20.11.24)(typescript@5.4.5)))(vitest@3.1.1(@types/debug@4.1.12)(@types/node@20.11.24)(jsdom@20.0.3)(lightningcss@1.30.2)(terser@5.31.1))
- '@storybook/addon-links':
- specifier: ^8.0.9
- version: 8.1.9(react@18.2.0)
- '@storybook/addon-onboarding':
- specifier: ^8.0.9
- version: 8.1.9(react@18.2.0)
- '@storybook/blocks':
- specifier: ^8.0.9
- version: 8.1.9(@types/react-dom@18.2.19)(@types/react@18.2.61)(prettier@3.2.5)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@storybook/nextjs':
- specifier: ^8.0.9
- version: 8.1.9(@jest/globals@29.7.0)(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/jest@29.5.14)(esbuild@0.20.2)(jest@29.7.0(@types/node@20.11.24)(ts-node@10.9.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/node@20.11.24)(typescript@5.4.5)))(next@14.2.3(@babel/core@7.28.0)(react-dom@18.3.1(react@18.2.0))(react@18.2.0))(prettier@3.2.5)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@5.4.5)(vitest@3.1.1(@types/debug@4.1.12)(@types/node@20.11.24)(jsdom@20.0.3)(lightningcss@1.30.2)(terser@5.31.1))(webpack-hot-middleware@2.26.1)(webpack@5.92.0(@swc/core@1.15.7(@swc/helpers@0.5.5))(esbuild@0.20.2))
- '@storybook/react':
- specifier: ^8.0.9
- version: 8.1.9(prettier@3.2.5)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)(typescript@5.4.5)
- '@storybook/test':
- specifier: ^8.0.9
- version: 8.1.9(@jest/globals@29.7.0)(@types/jest@29.5.14)(jest@29.7.0(@types/node@20.11.24)(ts-node@10.9.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/node@20.11.24)(typescript@5.4.5)))(vitest@3.1.1(@types/debug@4.1.12)(@types/node@20.11.24)(jsdom@20.0.3)(lightningcss@1.30.2)(terser@5.31.1))
- '@turbo/gen':
- specifier: ^1.12.4
- version: 1.12.4(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/node@20.11.24)(typescript@5.4.5)
- '@types/eslint':
- specifier: ^8.56.5
- version: 8.56.5
- '@types/node':
- specifier: ^20.11.24
- version: 20.11.24
- '@types/react':
- specifier: ^18
- version: 18.2.61
- '@types/react-dom':
- specifier: ^18.2.19
- version: 18.2.19
- eslint:
- specifier: ^8.57.0
- version: 8.57.0
- eslint-plugin-storybook:
- specifier: ^0.8.0
- version: 0.8.0(eslint@8.57.0)(typescript@5.4.5)
- react:
- specifier: ^18
- version: 18.2.0
- storybook:
- specifier: ^8.0.9
- version: 8.1.9(@babel/preset-env@7.24.7(@babel/core@7.28.0))(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- typescript:
- specifier: ^5.4.5
- version: 5.4.5
-
packages/ui/tailwind:
dependencies:
'@gitanimals/ui-token':
@@ -1080,7 +835,7 @@ importers:
version: 3.4.19(yaml@2.4.3)
tsup:
specifier: ^8.5.1
- version: 8.5.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(jiti@2.6.1)(postcss@8.5.6)(typescript@5.4.5)(yaml@2.4.3)
+ version: 8.5.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(jiti@1.21.7)(postcss@8.5.6)(typescript@5.4.5)(yaml@2.4.3)
typescript:
specifier: ^5.4.5
version: 5.4.5
@@ -1182,10 +937,6 @@ packages:
resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.24.7':
- resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==}
- engines: {node: '>=6.9.0'}
-
'@babel/core@7.28.0':
resolution: {integrity: sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==}
engines: {node: '>=6.9.0'}
@@ -1388,10 +1139,6 @@ packages:
resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.7':
- resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==}
- engines: {node: '>=6.9.0'}
-
'@babel/helpers@7.27.6':
resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==}
engines: {node: '>=6.9.0'}
@@ -1470,12 +1217,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.24.7':
- resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-dynamic-import@7.8.3':
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
@@ -1990,10 +1731,6 @@ packages:
'@babel/regjsgen@0.8.0':
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- '@babel/runtime-corejs3@7.22.10':
- resolution: {integrity: sha512-IcixfV2Jl3UrqZX4c81+7lVg5++2ufYJyAFW3Aux/ZTvY6LVYYhJ9rMgnbX0zGVq6eqfVpnoatTjZdVki/GmWA==}
- engines: {node: '>=6.9.0'}
-
'@babel/runtime@7.27.6':
resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==}
engines: {node: '>=6.9.0'}
@@ -2040,18 +1777,6 @@ packages:
resolution: {integrity: sha512-LkLKv7SWu/6kGep1ft2HA1T/cm14wU0zoW71gE4cZRcgUoRQJtyhITFTLHrjqAxz6bVqNgqzQtd5oBZ2nK3L3g==}
engines: {node: '>=16.0.0', yarn: '>=1.22.18'}
- '@chromatic-com/storybook@1.9.0':
- resolution: {integrity: sha512-vYQ+TcfktEE3GHnLZXHCzXF/sN9dw+KivH8a5cmPyd9YtQs7fZtHrEgsIjWpYycXiweKMo1Lm1RZsjxk8DH3rA==}
- engines: {node: '>=16.0.0', yarn: '>=1.22.18'}
-
- '@clack/core@0.3.4':
- resolution: {integrity: sha512-H4hxZDXgHtWTwV3RAVenqcC4VbJZNegbBjlPvzOzCouXtS2y3sDvlO3IsbrPNWuLWPPlYVYPghQdSF64683Ldw==}
-
- '@clack/prompts@0.7.0':
- resolution: {integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==}
- bundledDependencies:
- - is-unicode-supported
-
'@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
@@ -2060,18 +1785,6 @@ packages:
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
- '@csstools/postcss-cascade-layers@4.0.6':
- resolution: {integrity: sha512-Xt00qGAQyqAODFiFEJNkTpSUz5VfYqnDLECdlA/Vv17nl/OIV5QfTRHGAXrBGG5YcJyHpJ+GF9gF/RZvOQz4oA==}
- engines: {node: ^14 || ^16 || >=18}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/selector-specificity@3.1.1':
- resolution: {integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==}
- engines: {node: ^14 || ^16 || >=18}
- peerDependencies:
- postcss-selector-parser: ^6.0.13
-
'@discoveryjs/json-ext@0.5.7':
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
@@ -2079,9 +1792,6 @@ packages:
'@emnapi/runtime@1.2.0':
resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==}
- '@emotion/hash@0.9.2':
- resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
-
'@emotion/is-prop-valid@1.2.2':
resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==}
@@ -2117,12 +1827,6 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.17.6':
- resolution: {integrity: sha512-YnYSCceN/dUzUr5kdtUzB+wZprCafuD89Hs0Aqv9QSdwhYQybhXTaSTcrl6X/aWThn1a/j0eEpUBGOE7269REg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
-
'@esbuild/android-arm64@0.20.2':
resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
engines: {node: '>=12'}
@@ -2147,12 +1851,6 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.17.6':
- resolution: {integrity: sha512-bSC9YVUjADDy1gae8RrioINU6e1lCkg3VGVwm0QQ2E1CWcC4gnMce9+B6RpxuSsrsXsk1yojn7sp1fnG8erE2g==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
-
'@esbuild/android-arm@0.20.2':
resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
engines: {node: '>=12'}
@@ -2177,12 +1875,6 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.17.6':
- resolution: {integrity: sha512-MVcYcgSO7pfu/x34uX9u2QIZHmXAB7dEiLQC5bBl5Ryqtpj9lT2sg3gNDEsrPEmimSJW2FXIaxqSQ501YLDsZQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
-
'@esbuild/android-x64@0.20.2':
resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
engines: {node: '>=12'}
@@ -2207,12 +1899,6 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.17.6':
- resolution: {integrity: sha512-bsDRvlbKMQMt6Wl08nHtFz++yoZHsyTOxnjfB2Q95gato+Yi4WnRl13oC2/PJJA9yLCoRv9gqT/EYX0/zDsyMA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
'@esbuild/darwin-arm64@0.20.2':
resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
engines: {node: '>=12'}
@@ -2237,12 +1923,6 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.17.6':
- resolution: {integrity: sha512-xh2A5oPrYRfMFz74QXIQTQo8uA+hYzGWJFoeTE8EvoZGHb+idyV4ATaukaUvnnxJiauhs/fPx3vYhU4wiGfosg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
'@esbuild/darwin-x64@0.20.2':
resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
engines: {node: '>=12'}
@@ -2267,12 +1947,6 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.17.6':
- resolution: {integrity: sha512-EnUwjRc1inT4ccZh4pB3v1cIhohE2S4YXlt1OvI7sw/+pD+dIE4smwekZlEPIwY6PhU6oDWwITrQQm5S2/iZgg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
'@esbuild/freebsd-arm64@0.20.2':
resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
engines: {node: '>=12'}
@@ -2297,12 +1971,6 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.17.6':
- resolution: {integrity: sha512-Uh3HLWGzH6FwpviUcLMKPCbZUAFzv67Wj5MTwK6jn89b576SR2IbEp+tqUHTr8DIl0iDmBAf51MVaP7pw6PY5Q==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
-
'@esbuild/freebsd-x64@0.20.2':
resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
engines: {node: '>=12'}
@@ -2327,12 +1995,6 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.17.6':
- resolution: {integrity: sha512-bUR58IFOMJX523aDVozswnlp5yry7+0cRLCXDsxnUeQYJik1DukMY+apBsLOZJblpH+K7ox7YrKrHmJoWqVR9w==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
'@esbuild/linux-arm64@0.20.2':
resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
engines: {node: '>=12'}
@@ -2357,12 +2019,6 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.17.6':
- resolution: {integrity: sha512-7YdGiurNt7lqO0Bf/U9/arrPWPqdPqcV6JCZda4LZgEn+PTQ5SMEI4MGR52Bfn3+d6bNEGcWFzlIxiQdS48YUw==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
'@esbuild/linux-arm@0.20.2':
resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
engines: {node: '>=12'}
@@ -2387,12 +2043,6 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.17.6':
- resolution: {integrity: sha512-ujp8uoQCM9FRcbDfkqECoARsLnLfCUhKARTP56TFPog8ie9JG83D5GVKjQ6yVrEVdMie1djH86fm98eY3quQkQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
'@esbuild/linux-ia32@0.20.2':
resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
engines: {node: '>=12'}
@@ -2417,12 +2067,6 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.17.6':
- resolution: {integrity: sha512-y2NX1+X/Nt+izj9bLoiaYB9YXT/LoaQFYvCkVD77G/4F+/yuVXYCWz4SE9yr5CBMbOxOfBcy/xFL4LlOeNlzYQ==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
-
'@esbuild/linux-loong64@0.20.2':
resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
engines: {node: '>=12'}
@@ -2447,12 +2091,6 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.17.6':
- resolution: {integrity: sha512-09AXKB1HDOzXD+j3FdXCiL/MWmZP0Ex9eR8DLMBVcHorrWJxWmY8Nms2Nm41iRM64WVx7bA/JVHMv081iP2kUA==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
'@esbuild/linux-mips64el@0.20.2':
resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
engines: {node: '>=12'}
@@ -2477,12 +2115,6 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.17.6':
- resolution: {integrity: sha512-AmLhMzkM8JuqTIOhxnX4ubh0XWJIznEynRnZAVdA2mMKE6FAfwT2TWKTwdqMG+qEaeyDPtfNoZRpJbD4ZBv0Tg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
-
'@esbuild/linux-ppc64@0.20.2':
resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
engines: {node: '>=12'}
@@ -2507,12 +2139,6 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.17.6':
- resolution: {integrity: sha512-Y4Ri62PfavhLQhFbqucysHOmRamlTVK10zPWlqjNbj2XMea+BOs4w6ASKwQwAiqf9ZqcY9Ab7NOU4wIgpxwoSQ==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
'@esbuild/linux-riscv64@0.20.2':
resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
engines: {node: '>=12'}
@@ -2537,12 +2163,6 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.17.6':
- resolution: {integrity: sha512-SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
'@esbuild/linux-s390x@0.20.2':
resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
engines: {node: '>=12'}
@@ -2567,12 +2187,6 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.17.6':
- resolution: {integrity: sha512-a3yHLmOodHrzuNgdpB7peFGPx1iJ2x6m+uDvhP2CKdr2CwOaqEFMeSqYAHU7hG+RjCq8r2NFujcd/YsEsFgTGw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
'@esbuild/linux-x64@0.20.2':
resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
engines: {node: '>=12'}
@@ -2609,12 +2223,6 @@ packages:
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.17.6':
- resolution: {integrity: sha512-EanJqcU/4uZIBreTrnbnre2DXgXSa+Gjap7ifRfllpmyAU7YMvaXmljdArptTHmjrkkKm9BK6GH5D5Yo+p6y5A==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
-
'@esbuild/netbsd-x64@0.20.2':
resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
engines: {node: '>=12'}
@@ -2651,14 +2259,8 @@ packages:
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.17.6':
- resolution: {integrity: sha512-xaxeSunhQRsTNGFanoOkkLtnmMn5QbA0qBhNet/XLVsc+OVkpIWPHcr3zTW2gxVU5YOHFbIHR9ODuaUdNza2Vw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
- '@esbuild/openbsd-x64@0.20.2':
- resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
+ '@esbuild/openbsd-x64@0.20.2':
+ resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
@@ -2693,12 +2295,6 @@ packages:
cpu: [arm64]
os: [openharmony]
- '@esbuild/sunos-x64@0.17.6':
- resolution: {integrity: sha512-gnMnMPg5pfMkZvhHee21KbKdc6W3GR8/JuE0Da1kjwpK6oiFU3nqfHuVPgUX2rsOx9N2SadSQTIYV1CIjYG+xw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
-
'@esbuild/sunos-x64@0.20.2':
resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
engines: {node: '>=12'}
@@ -2723,12 +2319,6 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.17.6':
- resolution: {integrity: sha512-G95n7vP1UnGJPsVdKXllAJPtqjMvFYbN20e8RK8LVLhlTiSOH1sd7+Gt7rm70xiG+I5tM58nYgwWrLs6I1jHqg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
'@esbuild/win32-arm64@0.20.2':
resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
engines: {node: '>=12'}
@@ -2753,12 +2343,6 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.17.6':
- resolution: {integrity: sha512-96yEFzLhq5bv9jJo5JhTs1gI+1cKQ83cUpyxHuGqXVwQtY5Eq54ZEsKs8veKtiKwlrNimtckHEkj4mRh4pPjsg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
-
'@esbuild/win32-ia32@0.20.2':
resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
engines: {node: '>=12'}
@@ -2783,12 +2367,6 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.17.6':
- resolution: {integrity: sha512-n6d8MOyUrNp6G4VSpRcgjs5xj4A91svJSaiwLIDWVWEsZtpN5FA9NlBbZHDmAJc2e8e6SF4tkBD3HAvPF+7igA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
'@esbuild/win32-x64@0.20.2':
resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
engines: {node: '>=12'}
@@ -3170,12 +2748,6 @@ packages:
'@jridgewell/trace-mapping@0.3.9':
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
- '@jspm/core@2.0.1':
- resolution: {integrity: sha512-Lg3PnLp0QXpxwLIAuuJboLeRaIhrgJjeuh797QADg3xz8wGLugQOS5DpsE8A6i6Adgzf+bacllkKZG3J0tGfDw==}
-
- '@mdx-js/mdx@2.3.0':
- resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==}
-
'@mdx-js/react@3.0.1':
resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==}
peerDependencies:
@@ -3275,22 +2847,6 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@npmcli/fs@3.1.1':
- resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- '@npmcli/git@4.1.0':
- resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- '@npmcli/package-json@4.0.1':
- resolution: {integrity: sha512-lRCEGdHZomFsURroh522YvA/2cVb9oPIJrjHanCJZkiasz1BzcnLr3tBJhlV7S86MBJBuAQ33is2D60YitZL2Q==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- '@npmcli/promise-spawn@6.0.2':
- resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
'@octokit/auth-token@5.1.1':
resolution: {integrity: sha512-rh3G3wDO8J9wSjfI436JUKzHIxq8NaiL0tVeB2aXmG6p/9859aUOAjA9pmSPNGGZxfwmaJ9ozOJImuNVJdpvbA==}
engines: {node: '>= 18'}
@@ -3321,58 +2877,6 @@ packages:
'@octokit/types@13.5.0':
resolution: {integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==}
- '@pandacss/config@0.41.0':
- resolution: {integrity: sha512-YocA9BQzH+fvgp4sGBt7H/sgUWEvU5mlSgyMwcu7w8DSbLaHr/14X1fXjEIty28QUL0Y0MKOY3V4nBD65Ejp1w==}
-
- '@pandacss/core@0.41.0':
- resolution: {integrity: sha512-l6GA+AmB5Fq6qGEoAflSEl01xlB0orMmiXXu1fEwhC/yDMLRt7farFLgjsi0FHeudu6YDQrjQACwIs/mCdotSw==}
-
- '@pandacss/dev@0.41.0':
- resolution: {integrity: sha512-HuXz56SQJufuvq2HFHyymUA9Pr2c2T56VnC1khG14phgZGJ0Po7iUU8SUkbusWfZxpEOzrVYEkP8LcUbho+x6g==}
- hasBin: true
-
- '@pandacss/extractor@0.41.0':
- resolution: {integrity: sha512-5CGJq75lcRTTdU0B1g5JPsyrl3FAyrv9d2jvNERqaKRUwf4O212Mf4xYgiohXlHF1/AYY3ZrMS9oN7Kv4BQCzg==}
-
- '@pandacss/generator@0.41.0':
- resolution: {integrity: sha512-xB5W8vNAxCOmaGNBQFDx9gcq2pnYJfXNRJ+nxu9zEEOu+LKad3VeBgJH3u5Ff52x6ashJpulCPF41X5OLEYzUA==}
-
- '@pandacss/is-valid-prop@0.41.0':
- resolution: {integrity: sha512-BE6h6CsJk14ugIRrsazJtN3fcg+KDFRat1Bs93YFKH6jd4DOb1yUyVvC70jKqPVvg70zEcV8acZ7VdcU5TLu+w==}
-
- '@pandacss/logger@0.41.0':
- resolution: {integrity: sha512-68FX0ZSWZY52WGtUm9MrFSgm9DmBlKgoqx1aCNsGWF7DFP1Uo048jcT2ihwgpGonhtHCU/9wIzP6k9gBpcmYOQ==}
-
- '@pandacss/node@0.41.0':
- resolution: {integrity: sha512-ib4JdWELTX4KbxUG3BCc9j3zHI9AZ9q+qlWL5mjg5tRw0cReWnXSA2Xv7n+0oW14ib9ekgB7+wi3no4uVgmPCg==}
-
- '@pandacss/parser@0.41.0':
- resolution: {integrity: sha512-Q6ntciVgxv9y2yaYpbfTFcQ62yjUDkSEONTHp2wweG75omRPWvmng0lfpXcdz+Yd75Ug/BOaycBB8fZ4HZdFdw==}
-
- '@pandacss/postcss@0.41.0':
- resolution: {integrity: sha512-9YFqhwrnK6Rsc7KL8B2cWaCOGx7Sq6unXBNUPbgTr6stdf5NASzp89To7CccvLAfmpTgQZPedNU22mK64fAhLg==}
-
- '@pandacss/preset-base@0.41.0':
- resolution: {integrity: sha512-hvrC3pk8pK+bOMmBbTCUbYLPTjHshggke48YYqGCXF2UAoWm0DAZff5pO2IlZDjV3ljlPrNMIJaS7hGhuTQfDw==}
-
- '@pandacss/preset-panda@0.15.5':
- resolution: {integrity: sha512-ZYv/6H/hqA2AP+gx58KPJBDJU+/oCDoUDpZ/mmWbqpS/D+7mMxJOonhvW/b2BQMxFdy4TehBFL3N8wW3ftXRqA==}
-
- '@pandacss/preset-panda@0.41.0':
- resolution: {integrity: sha512-lzYqZfcii6u6zq97OJ1HVF/ioP5L+nfedCeuBohrjiNqFtok2GXhIE0cKaaIlRin3G/RBI/ywsQOXzB62FUcaA==}
-
- '@pandacss/shared@0.41.0':
- resolution: {integrity: sha512-A7mDifxawWfDjKAm1XHDmgRxneYsok11AMX5ggsXrcac8BU7sZN6pQRF0TdNOcVY9rxRcNmDdKbkM0VOZfaIpA==}
-
- '@pandacss/token-dictionary@0.41.0':
- resolution: {integrity: sha512-fO+1R55tzIs1HYiqLnQDqTNQ7RJTpxQGF54XASQVsUCNnX4yoD68OuxeLORzo6wWnlzVQzWnjMO1hMVPPYlazw==}
-
- '@pandacss/types@0.15.5':
- resolution: {integrity: sha512-3XNmWN/UhOgTiPUCBOBJEtwgxPOcSCZIP5fY9F/xc0BrwMUcZzcT0AKb7fWq0xY2U4w6SreS3HeoMyINWq7c6A==}
-
- '@pandacss/types@0.41.0':
- resolution: {integrity: sha512-WGFxRozTK+6lQOk1nPfJ1H/5wJyT0mm68rIMNX8dtDAbessPdKZAz0orgIJ9INijbdPRtFUWlDTrJ4F0MgD2dA==}
-
'@panva/hkdf@1.2.1':
resolution: {integrity: sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==}
@@ -3417,9 +2921,6 @@ packages:
'@polka/url@1.0.0-next.25':
resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
- '@radix-ui/number@1.1.0':
- resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==}
-
'@radix-ui/number@1.1.1':
resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
@@ -3432,19 +2933,6 @@ packages:
'@radix-ui/primitive@1.1.3':
resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
- '@radix-ui/react-accordion@1.2.1':
- resolution: {integrity: sha512-bg/l7l5QzUjgsh8kjwDFommzAshnUsuVMV5NM56QVCm+7ZckYdd9P/ExR8xG/Oup0OajVxNLaHJ1tb8mXk+nzQ==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-accordion@1.2.12':
resolution: {integrity: sha512-T4nygeh9YE9dLRPhAHSeOZi7HBXo+0kYIPJXayZfvWOWA0+n3dESrZbjfDPUABkUNym6Hd+f2IR113To8D2GPA==}
peerDependencies:
@@ -3523,19 +3011,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-avatar@1.1.0':
- resolution: {integrity: sha512-Q/PbuSMk/vyAd/UoIShVGZ7StHHeRFYU7wXmi5GV+8cLXflZAEpHL/F697H1klrzxKXNtZ97vWiC0q3RKUH8UA==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-avatar@1.1.11':
resolution: {integrity: sha512-0Qk603AHGV28BOBO34p7IgD5m+V5Sg/YovfayABkoDDBM5d3NCx0Mp4gGrjzLGes1jV5eNOE1r3itqOR33VC6Q==}
peerDependencies:
@@ -3549,19 +3024,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-checkbox@1.1.1':
- resolution: {integrity: sha512-0i/EKJ222Afa1FE0C6pNJxDq1itzcl3HChE9DwskA4th4KRse8ojx8a1nVcOjwJdbpDLcz7uol77yYnQNMHdKw==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-checkbox@1.3.3':
resolution: {integrity: sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==}
peerDependencies:
@@ -3575,19 +3037,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-collapsible@1.1.1':
- resolution: {integrity: sha512-1///SnrfQHJEofLokyczERxQbWfCGQlQ2XsCZMucVs6it+lq9iw4vXy+uDn1edlb58cOZOWSldnfPAYcT4O/Yg==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-collapsible@1.1.12':
resolution: {integrity: sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA==}
peerDependencies:
@@ -3716,19 +3165,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-dialog@1.1.2':
- resolution: {integrity: sha512-Yj4dZtqa2o+kG61fzB0H2qUvmwBA2oyQroGLyNtBj1beo1khoQ3q1a2AO8rrQYjd8256CO9+N8L9tvsS+bnIyA==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-direction@1.1.0':
resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
peerDependencies:
@@ -3760,19 +3196,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-dismissable-layer@1.1.1':
- resolution: {integrity: sha512-QSxg29lfr/xcev6kSz7MAlmDnzbP1eI/Dwn3Tp1ip0KT5CUELsxkekFEMVBEoykI3oV39hKT4TKZzBNMbcTZYQ==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-dismissable-layer@1.1.11':
resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
peerDependencies:
@@ -3834,15 +3257,6 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-focus-guards@1.1.1':
- resolution: {integrity: sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==}
- peerDependencies:
- '@types/react': ^18
- react: ^18
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
'@radix-ui/react-focus-guards@1.1.3':
resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
peerDependencies:
@@ -3909,19 +3323,6 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-label@2.1.1':
- resolution: {integrity: sha512-UUw5E4e/2+4kFMH7+YxORXGWggtY6sM8WIwh5RZchhLuUg2H1hc98Py+pr8HMz6rdaYrK2t296ZEjYLOCO5uUw==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-label@2.1.8':
resolution: {integrity: sha512-FmXs37I6hSBVDlO4y764TNz1rLgKwjJMQ0EGte6F3Cb3f4bIuHB/iLa/8I9VKkmOy+gNHq8rql3j686ACVV21A==}
peerDependencies:
@@ -3974,19 +3375,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-navigation-menu@1.2.0':
- resolution: {integrity: sha512-OQ8tcwAOR0DhPlSY3e4VMXeHiol7la4PPdJWhhwJiJA+NLX0SaCaonOkRnI3gCDHoZ7Fo7bb/G6q25fRM2Y+3Q==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-navigation-menu@1.2.14':
resolution: {integrity: sha512-YB9mTFQvCOAQMHU+C/jVl96WmuWeltyUEpRJJky51huhds5W2FQr1J8D/16sQlf0ozxkPK8uF3niQMdUwZPv5w==}
peerDependencies:
@@ -4065,19 +3453,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-portal@1.1.2':
- resolution: {integrity: sha512-WeDYLGPxJb/5EGBoedyJbT0MpoULmwnIPMJMSldkuiMsBAv7N1cRdsTWZWht9vpPOiN3qyiGAtbK2is47/uMFg==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-portal@1.1.3':
resolution: {integrity: sha512-NciRqhXnGojhT93RPyDaMPfLH3ZSl4jjIFbZQ1b/vxvZEdHsBZ49wP9w8L3HzUQwep01LcWtkUvm0OVB5JAHTw==}
peerDependencies:
@@ -4117,19 +3492,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-presence@1.1.1':
- resolution: {integrity: sha512-IeFXVi4YS1K0wVZzXNrbaaUvIJ3qdY+/Ih4eHFhWA9SwGR9UDX7Ck8abvL57C4cv3wwMvUE0OG69Qc3NCcTe/A==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-presence@1.1.2':
resolution: {integrity: sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==}
peerDependencies:
@@ -4273,19 +3635,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-select@2.1.2':
- resolution: {integrity: sha512-rZJtWmorC7dFRi0owDmoijm6nSJH1tVw64QGiNIZ9PNLyBDtG+iAq+XGsya052At4BfarzY/Dhv9wrrUr6IMZA==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-select@2.2.6':
resolution: {integrity: sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==}
peerDependencies:
@@ -4374,19 +3723,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-tabs@1.1.0':
- resolution: {integrity: sha512-bZgOKB/LtZIij75FSuPzyEti/XBhJH52ExgtdVqjCIh+Nx/FW+LhnbXtbCzIi34ccyMsyOja8T0thCzoHFXNKA==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-tabs@1.1.13':
resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==}
peerDependencies:
@@ -4542,15 +3878,6 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-previous@1.1.0':
- resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==}
- peerDependencies:
- '@types/react': ^18
- react: ^18
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
'@radix-ui/react-use-previous@1.1.1':
resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
peerDependencies:
@@ -4596,19 +3923,6 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-visually-hidden@1.1.0':
- resolution: {integrity: sha512-N8MDZqtgCgG5S3aV60INAB475osJousYpZ4cTJ2cFbMpdHS5Y6loLTH8LPtkj2QN0x93J30HT/M3qJXM0+lyeQ==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': '*'
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@radix-ui/react-visually-hidden@1.1.1':
resolution: {integrity: sha512-vVfA2IZ9q/J+gEamvj761Oq1FpWgCDaNOOIfbPVp2MVPLEomUr5+Vf7kJGwQ24YxZSlQVar7Bes8kyTo5Dshpg==}
peerDependencies:
@@ -4668,45 +3982,6 @@ packages:
react: ^18
react-dom: ^18.3.1
- '@remix-run/dev@2.10.3':
- resolution: {integrity: sha512-ZbSslRCPVsXispbu1t/khMrMwJ34R695tGujnya696nAW0v8rocVhEwaUpvR2iwnvGKN372gv4SdJrjnYz45kw==}
- engines: {node: '>=18.0.0'}
- hasBin: true
- peerDependencies:
- '@remix-run/react': ^2.10.3
- '@remix-run/serve': ^2.10.3
- typescript: ^5.4.5
- vite: ^5.1.0
- wrangler: ^3.28.2
- peerDependenciesMeta:
- '@remix-run/serve':
- optional: true
- typescript:
- optional: true
- vite:
- optional: true
- wrangler:
- optional: true
-
- '@remix-run/express@2.10.3':
- resolution: {integrity: sha512-EkSBQAz3ykoGTrCEP2hC1TOn9tQ3zlcWYeJnECinZzzHQ0ERHP6cKlEYV+pOmY1oRDxn8lMxVa+OL+krDA+xbA==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- express: ^4.19.2
- typescript: ^5.4.5
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@remix-run/node@2.10.3':
- resolution: {integrity: sha512-LBqsgADJKW7tYdJZZi2wu20gfMm6UcOXbvb5U70P2jCNxjJvuIw1gXVvNXRJKAdxPKLonjm8cSpfoI6HeQKEDg==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- typescript: ^5.4.5
- peerDependenciesMeta:
- typescript:
- optional: true
-
'@remix-run/react@2.10.3':
resolution: {integrity: sha512-nqXlUJzG3zgllsMio20AICbSsF8va0jOnMakl/+oJpFbQqCyFkvYqr+BViBc4Befp5VK54jqJzDnY4kL9zwNvA==}
engines: {node: '>=18.0.0'}
@@ -4722,11 +3997,6 @@ packages:
resolution: {integrity: sha512-L3jkqmqoSVBVKHfpGZmLrex0lxR5SucGA0sUfFzGctehw+S/ggL9L/0NnC5mw6P8HUWpFZ3nQw3cRApjjWx9Sw==}
engines: {node: '>=14.0.0'}
- '@remix-run/serve@2.10.3':
- resolution: {integrity: sha512-UZyBdob26/e9cECDH4uspDw3xQyZSzHY+iNFVpRO1Iyk1NW1JDW4ImmHGXQSzq4ZKYNLV/ZktLkhY0f91Azt8Q==}
- engines: {node: '>=18.0.0'}
- hasBin: true
-
'@remix-run/server-runtime@2.10.3':
resolution: {integrity: sha512-vUl5jONUI6Lj0ICg9FSRFhoPzQdZ/7dpT1m7ID13DF5BEeF3t/9uCJS61XXWgQ/JEu7YRiwvZiwSRTrgM7zeWw==}
engines: {node: '>=18.0.0'}
@@ -4736,22 +4006,6 @@ packages:
typescript:
optional: true
- '@remix-run/web-blob@3.1.0':
- resolution: {integrity: sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g==}
-
- '@remix-run/web-fetch@4.4.2':
- resolution: {integrity: sha512-jgKfzA713/4kAW/oZ4bC3MoLWyjModOVDjFPNseVqcJKSafgIscrYL9G50SurEYLswPuoU3HzSbO0jQCMYWHhA==}
- engines: {node: ^10.17 || >=12.3}
-
- '@remix-run/web-file@3.1.0':
- resolution: {integrity: sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ==}
-
- '@remix-run/web-form-data@3.1.0':
- resolution: {integrity: sha512-NdeohLMdrb+pHxMQ/Geuzdp0eqPbea+Ieo8M8Jx2lGC6TBHsgHzYcBvr0LyPdPVycNRDEpWpiDdCOdCryo3f9A==}
-
- '@remix-run/web-stream@1.1.0':
- resolution: {integrity: sha512-KRJtwrjRV5Bb+pM7zxcTJkhIqWWSy+MYsIxHK+0m5atcznsf15YwUBWHWulZerV2+vvHH1Lp1DD7pw6qKW8SgA==}
-
'@rolldown/pluginutils@1.0.0-beta.27':
resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
@@ -4903,24 +4157,6 @@ packages:
'@rushstack/eslint-patch@1.5.1':
resolution: {integrity: sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==}
- '@shadow-panda/preset@0.7.1':
- resolution: {integrity: sha512-WPb0jAkAJHNBtn8zPWQUGTuQseo4sCdUCQNjCfe3Cb8BHub6wDZb6DLrpKNwIep9Szb98oAr5TV5Y93ikIgvSQ==}
- peerDependencies:
- '@pandacss/dev': 0.15.5
-
- '@shadow-panda/style-context@0.7.1':
- resolution: {integrity: sha512-1vNZewZvqUWyiSX0+BxIYrqPP/7QUgjqKITMw6RALdz6AqnlPIB+EBIvbnScsa++7NrnUbxe/XKem2wzeZy3RA==}
- peerDependencies:
- '@types/react': ^18
- '@types/react-dom': ^18.2
- react: ^18
- react-dom: ^18.3.1
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
-
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
@@ -5580,17 +4816,6 @@ packages:
peerDependencies:
react: ^18
- '@tanstack/react-table@8.19.3':
- resolution: {integrity: sha512-MtgPZc4y+cCRtU16y1vh1myuyZ2OdkWgMEBzyjYsoMWMicKZGZvcDnub3Zwb6XF2pj9iRMvm1SO1n57lS0vXLw==}
- engines: {node: '>=12'}
- peerDependencies:
- react: ^18
- react-dom: ^18.3.1
-
- '@tanstack/table-core@8.19.3':
- resolution: {integrity: sha512-IqREj9ADoml9zCAouIG/5kCGoyIxPFdqdyoxis9FisXFi5vT+iYfEfLosq4xkU/iDbMcEuAj+X8dWRLvKYDNoQ==}
- engines: {node: '>=12'}
-
'@testing-library/dom@10.4.0':
resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
engines: {node: '>=18'}
@@ -5634,12 +4859,6 @@ packages:
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
engines: {node: '>= 10'}
- '@tootallnate/quickjs-emscripten@0.23.0':
- resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
-
- '@ts-morph/common@0.22.0':
- resolution: {integrity: sha512-HqNBuV/oIlMKdkLshXd1zKBqNQCsuPEsgQOkfFQ/eUKjRlwndXW1AjN9LVkBEIukm00gGXSRmfkl0Wv5VXLnlw==}
-
'@tsconfig/node10@1.0.9':
resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
@@ -5652,17 +4871,6 @@ packages:
'@tsconfig/node16@1.0.4':
resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
- '@turbo/gen@1.12.4':
- resolution: {integrity: sha512-3Z8KZ6Vnc2x6rr8sNJ4QNYpkAttLBfb91uPzDlFDY7vgJg+vfXT8YWyZznVL+19ZixF2C/F4Ucp4/YjG2e1drg==}
- hasBin: true
-
- '@turbo/workspaces@1.12.4':
- resolution: {integrity: sha512-a1hF8Nr6MOeCpvlLR569dGTlzgRLj2Rxo6dTb4jtL+jhHwCb94A9kDPgcRnYGFr45mgulICarVaNZxDjw4/riQ==}
- hasBin: true
-
- '@types/acorn@4.0.6':
- resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
-
'@types/aria-query@5.0.4':
resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
@@ -5750,9 +4958,6 @@ packages:
'@types/eslint@8.56.5':
resolution: {integrity: sha512-u5/YPJHo1tvkSF2CE0USEkxon82Z5DBy2xR+qfyYNszpX9qcs4sT6uq2kBbj4BXY1+DBGDPnrhMZV3pKWGNukw==}
- '@types/estree-jsx@1.0.5':
- resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
-
'@types/estree@0.0.39':
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
@@ -5784,9 +4989,6 @@ packages:
'@types/gtag.js@0.0.19':
resolution: {integrity: sha512-KHoDzrf9rSd0mooKN576PjExpdk/XRrNu4RQnmigsScSTSidwyOUe9kDrHz9UPKjiBrx2QEsSkexbJSgS0j72w==}
- '@types/hast@2.3.10':
- resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==}
-
'@types/hast@3.0.4':
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
@@ -5799,9 +5001,6 @@ packages:
'@types/http-errors@2.0.4':
resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
- '@types/inquirer@6.5.0':
- resolution: {integrity: sha512-rjaYQ9b9y/VFGOpqBEXRavc3jh0a+e6evAbI31tMda8VlPaSy0AZJfXsvmIe3wklc7W6C3zCSfleuMXR7NOyXw==}
-
'@types/istanbul-lib-coverage@2.0.6':
resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
@@ -5829,9 +5028,6 @@ packages:
'@types/lodash@4.17.5':
resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==}
- '@types/mdast@3.0.15':
- resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
-
'@types/mdx@2.0.13':
resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==}
@@ -5847,9 +5043,6 @@ packages:
'@types/ms@0.7.34':
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
- '@types/node@17.0.45':
- resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
-
'@types/node@18.19.34':
resolution: {integrity: sha512-eXF4pfBNV5DAMKGbI02NnDtWrQ40hAN558/2vvS4gMpMIxaf6JmD7YjnZbq0Q9TDSSkKBamime8ewRoomHdt4g==}
@@ -5915,18 +5108,9 @@ packages:
'@types/stack-utils@2.0.3':
resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
- '@types/through@0.0.30':
- resolution: {integrity: sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==}
-
- '@types/tinycolor2@1.4.6':
- resolution: {integrity: sha512-iEN8J0BoMnsWBqjVbWH/c0G0Hh7O21lpR2/+PrvAVgWdzL7eexIFm4JN/Wn10PTcmNdtS6U67r499mlWMXOxNw==}
-
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
- '@types/unist@2.0.10':
- resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
-
'@types/unist@3.0.2':
resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
@@ -6177,18 +5361,6 @@ packages:
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@vanilla-extract/babel-plugin-debug-ids@1.0.6':
- resolution: {integrity: sha512-C188vUEYmw41yxg3QooTs8r1IdbDQQ2mH7L5RkORBnHx74QlmsNfqVmKwAVTgrlYt8JoRaWMtPfGm/Ql0BNQrA==}
-
- '@vanilla-extract/css@1.15.3':
- resolution: {integrity: sha512-mxoskDAxdQAspbkmQRxBvolUi1u1jnyy9WZGm+GeH8V2wwhEvndzl1QoK7w8JfA0WFevTxbev5d+i+xACZlPhA==}
-
- '@vanilla-extract/integration@6.5.0':
- resolution: {integrity: sha512-E2YcfO8vA+vs+ua+gpvy1HRqvgWbI+MTlUpxA8FvatOvybuNcWAY0CKwQ/Gpj7rswYKtC6C7+xw33emM6/ImdQ==}
-
- '@vanilla-extract/private@1.0.5':
- resolution: {integrity: sha512-6YXeOEKYTA3UV+RC8DeAjFk+/okoNz/h88R+McnzA2zpaVqTR/Ep+vszkWYlGBcMNO7vEkqbq5nT/JMMvhi+tw==}
-
'@vercel/analytics@1.5.0':
resolution: {integrity: sha512-MYsBzfPki4gthY5HnYN7jgInhAZ7Ac1cYDoRWFomwGHWEX7odTEzbtg9kf/QSo7XEsEAqlQugA6gJ2WS2DEa3g==}
peerDependencies:
@@ -6306,21 +5478,6 @@ packages:
'@vitest/utils@3.1.1':
resolution: {integrity: sha512-1XIjflyaU2k3HMArJ50bwSh3wKWPD6Q47wz/NUSmRV0zNywPc4w79ARjg/i/aNINHwA+mIALhUVqD9/aUvZNgg==}
- '@vue/compiler-core@3.4.19':
- resolution: {integrity: sha512-gj81785z0JNzRcU0Mq98E56e4ltO1yf8k5PQ+tV/7YHnbZkrM0fyFyuttnN8ngJZjbpofWE/m4qjKBiLl8Ju4w==}
-
- '@vue/compiler-dom@3.4.19':
- resolution: {integrity: sha512-vm6+cogWrshjqEHTzIDCp72DKtea8Ry/QVpQRYoyTIg9k7QZDX6D8+HGURjtmatfgM8xgCFtJJaOlCaRYRK3QA==}
-
- '@vue/compiler-sfc@3.4.19':
- resolution: {integrity: sha512-LQ3U4SN0DlvV0xhr1lUsgLCYlwQfUfetyPxkKYu7dkfvx7g3ojrGAkw0AERLOKYXuAGnqFsEuytkdcComei3Yg==}
-
- '@vue/compiler-ssr@3.4.19':
- resolution: {integrity: sha512-P0PLKC4+u4OMJ8sinba/5Z/iDT84uMRRlrWzadgLA69opCpI1gG4N55qDSC+dedwq2fJtzmGald05LWR5TFfLw==}
-
- '@vue/shared@3.4.19':
- resolution: {integrity: sha512-/KliRRHMF6LoiThEy+4c1Z4KB/gbPrGjWwJR+crg2otgrf/egKzRaCPvJ51S5oetgsgXLfc4Rm5ZgrKHZrtMSw==}
-
'@web3-storage/multipart-parser@1.0.0':
resolution: {integrity: sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==}
@@ -6392,9 +5549,6 @@ packages:
resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==}
engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
- '@zxing/text-encoding@0.9.0':
- resolution: {integrity: sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==}
-
abab@2.0.6:
resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
deprecated: Use your platform's native atob() and btoa() methods instead
@@ -6464,10 +5618,6 @@ packages:
resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==}
engines: {node: '>= 14'}
- aggregate-error@3.1.0:
- resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
- engines: {node: '>=8'}
-
ajv-formats@2.1.1:
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
peerDependencies:
@@ -6492,10 +5642,6 @@ packages:
ajv@8.16.0:
resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==}
- ansi-colors@4.1.3:
- resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
- engines: {node: '>=6'}
-
ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
@@ -6620,9 +5766,6 @@ packages:
resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
engines: {node: '>= 0.4'}
- array.prototype.tosorted@1.1.2:
- resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==}
-
array.prototype.tosorted@1.1.4:
resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
engines: {node: '>= 0.4'}
@@ -6651,18 +5794,10 @@ packages:
ast-types-flow@0.0.8:
resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
- ast-types@0.13.4:
- resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
- engines: {node: '>=4'}
-
ast-types@0.16.1:
resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
engines: {node: '>=4'}
- astring@1.8.6:
- resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==}
- hasBin: true
-
async@3.2.5:
resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
@@ -6760,9 +5895,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- bail@2.0.2:
- resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
-
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
@@ -6777,14 +5909,6 @@ packages:
resolution: {integrity: sha512-B0xUquLkiGLgHhpPBqvl7GWegWBUNuujQ6kXd/r1U38ElPT6Ok8KZ8e+FpUGEc2ZoRQUzq/aUnaKFc/svWUGSg==}
hasBin: true
- basic-auth@2.0.1:
- resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
- engines: {node: '>= 0.8'}
-
- basic-ftp@5.0.3:
- resolution: {integrity: sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==}
- engines: {node: '>=10.0.0'}
-
before-after-hook@3.0.2:
resolution: {integrity: sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==}
@@ -6864,11 +5988,6 @@ packages:
browserify-zlib@0.2.0:
resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==}
- browserslist@4.23.0:
- resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
-
browserslist@4.23.1:
resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -6909,12 +6028,6 @@ packages:
builtin-status-codes@3.0.0:
resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
- builtins@5.0.1:
- resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
-
- bundle-n-require@1.1.1:
- resolution: {integrity: sha512-EB2wFjXF106LQLe/CYnKCMCdLeTW47AtcEtUfiqAOgr2a08k0+YgRklur2aLfEYHlhz6baMskZ8L2U92Hh0vyA==}
-
bundle-name@3.0.0:
resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==}
engines: {node: '>=12'}
@@ -6941,10 +6054,6 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- cacache@17.1.4:
- resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
call-bind-apply-helpers@1.0.2:
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
engines: {node: '>= 0.4'}
@@ -6965,9 +6074,6 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- camel-case@3.0.0:
- resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==}
-
camel-case@4.1.2:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
@@ -6983,9 +6089,6 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- caniuse-api@3.0.0:
- resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
-
caniuse-lite@1.0.30001633:
resolution: {integrity: sha512-6sT0yf/z5jqf8tISAgpJDrmwOpLsrpnyCdD/lOZKvKkkJK4Dn0X5i7KF7THEZhOq+30bmhwBlNEaqPUiHiKtZg==}
@@ -6996,9 +6099,6 @@ packages:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
engines: {node: '>=4'}
- ccount@2.0.1:
- resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
-
chai@4.4.1:
resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
engines: {node: '>=4'}
@@ -7023,28 +6123,10 @@ packages:
resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
- change-case@3.1.0:
- resolution: {integrity: sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==}
-
char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
- character-entities-html4@2.1.0:
- resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
-
- character-entities-legacy@3.0.0:
- resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
-
- character-entities@2.0.2:
- resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
-
- character-reference-invalid@2.0.1:
- resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
-
- chardet@0.7.0:
- resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
-
check-error@1.0.3:
resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
@@ -7119,10 +6201,6 @@ packages:
resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
engines: {node: '>=4'}
- clean-stack@2.2.0:
- resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
- engines: {node: '>=6'}
-
clean-webpack-plugin@4.0.0:
resolution: {integrity: sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==}
engines: {node: '>=10.0.0'}
@@ -7149,10 +6227,6 @@ packages:
resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==}
engines: {node: '>=18'}
- cli-width@3.0.0:
- resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
- engines: {node: '>= 10'}
-
client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
@@ -7182,9 +6256,6 @@ packages:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- code-block-writer@12.0.0:
- resolution: {integrity: sha512-q4dMFMlXtKR3XNBHyMHt/3pwYNA69EDk00lloMOaaUMKPUXBw6lpXtbu3MMVG6/uOihGnRDOlkyqsONEUj60+w==}
-
collect-v8-coverage@1.0.2:
resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
@@ -7215,13 +6286,6 @@ packages:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
- comma-separated-tokens@2.0.3:
- resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
-
- commander@10.0.1:
- resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
- engines: {node: '>=14'}
-
commander@12.1.0:
resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
engines: {node: '>=18'}
@@ -7266,9 +6330,6 @@ packages:
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- confbox@0.1.7:
- resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
-
confbox@0.1.8:
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
@@ -7283,9 +6344,6 @@ packages:
console-browserify@1.2.0:
resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
- constant-case@2.0.0:
- resolution: {integrity: sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==}
-
constants-browserify@1.0.0:
resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
@@ -7306,10 +6364,6 @@ packages:
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- cookie-signature@1.2.1:
- resolution: {integrity: sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==}
- engines: {node: '>=6.6.0'}
-
cookie@0.5.0:
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'}
@@ -7369,10 +6423,6 @@ packages:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
- crosspath@2.0.0:
- resolution: {integrity: sha512-ju88BYCQ2uvjO2bR+SsgLSTwTSctU+6Vp2ePbKPgSCZyy4MWZxYsT738DlKVRE5utUjobjPRm1MkTYKJxCmpTA==}
- engines: {node: '>=14.9.0'}
-
crypto-browserify@3.12.0:
resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==}
@@ -7411,12 +6461,6 @@ packages:
engines: {node: '>=4'}
hasBin: true
- cssnano-utils@5.0.0:
- resolution: {integrity: sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
cssom@0.3.8:
resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==}
@@ -7480,14 +6524,6 @@ packages:
damerau-levenshtein@1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
- data-uri-to-buffer@3.0.1:
- resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==}
- engines: {node: '>= 6'}
-
- data-uri-to-buffer@5.0.1:
- resolution: {integrity: sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg==}
- engines: {node: '>= 14'}
-
data-urls@3.0.2:
resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==}
engines: {node: '>=12'}
@@ -7553,9 +6589,6 @@ packages:
decimal.js@10.6.0:
resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
- decode-named-character-reference@1.0.2:
- resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
-
dedent@0.7.0:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
@@ -7579,16 +6612,9 @@ packages:
resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
engines: {node: '>= 0.4'}
- deep-extend@0.6.0:
- resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
- engines: {node: '>=4.0.0'}
-
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- deep-object-diff@1.1.9:
- resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==}
-
deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
@@ -7623,18 +6649,10 @@ packages:
defu@6.1.4:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
- degenerator@5.0.1:
- resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==}
- engines: {node: '>= 14'}
-
del@4.1.1:
resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==}
engines: {node: '>=6'}
- del@5.1.0:
- resolution: {integrity: sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==}
- engines: {node: '>=8'}
-
delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
@@ -7662,11 +6680,6 @@ packages:
resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==}
engines: {node: '>=12.20'}
- detect-libc@1.0.3:
- resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
- engines: {node: '>=0.10'}
- hasBin: true
-
detect-libc@2.0.3:
resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
@@ -7758,9 +6771,6 @@ packages:
domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
- dot-case@2.1.1:
- resolution: {integrity: sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==}
-
dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
@@ -7859,10 +6869,6 @@ packages:
entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- entities@4.5.0:
- resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
- engines: {node: '>=0.12'}
-
entities@6.0.1:
resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
engines: {node: '>=0.12'}
@@ -7876,9 +6882,6 @@ packages:
engines: {node: '>=4'}
hasBin: true
- err-code@2.0.3:
- resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
-
error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
@@ -7947,22 +6950,11 @@ packages:
esbuild-plugin-alias@0.2.1:
resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==}
- esbuild-plugins-node-modules-polyfill@1.6.4:
- resolution: {integrity: sha512-x3MCOvZrKDGAfqAYS/pZUUSwiN+XH7x84A+Prup0CZBJKuGfuGkTAC4g01D6JPs/GCM9wzZVfd8bmiy+cP/iXA==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- esbuild: ^0.14.0 || ^0.15.0 || ^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0
-
esbuild-register@3.5.0:
resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==}
peerDependencies:
esbuild: '>=0.12 <1'
- esbuild@0.17.6:
- resolution: {integrity: sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==}
- engines: {node: '>=12'}
- hasBin: true
-
esbuild@0.20.2:
resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
engines: {node: '>=12'}
@@ -8136,12 +7128,6 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- eslint-plugin-react@7.33.2:
- resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
-
eslint-plugin-react@7.37.5:
resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==}
engines: {node: '>=4'}
@@ -8262,28 +7248,6 @@ packages:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- estree-util-attach-comments@2.1.1:
- resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==}
-
- estree-util-build-jsx@2.2.2:
- resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==}
-
- estree-util-is-identifier-name@1.1.0:
- resolution: {integrity: sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ==}
-
- estree-util-is-identifier-name@2.1.0:
- resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==}
-
- estree-util-to-js@1.2.0:
- resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==}
-
- estree-util-value-to-estree@1.3.0:
- resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==}
- engines: {node: '>=12.0.0'}
-
- estree-util-visit@1.2.1:
- resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==}
-
estree-walker@1.0.1:
resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
@@ -8301,10 +7265,6 @@ packages:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
- eval@0.1.8:
- resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==}
- engines: {node: '>= 0.8'}
-
event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
@@ -8334,10 +7294,6 @@ packages:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
- exit-hook@2.2.1:
- resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==}
- engines: {node: '>=6'}
-
exit@0.1.2:
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
engines: {node: '>= 0.8.0'}
@@ -8357,10 +7313,6 @@ packages:
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
- external-editor@3.1.0:
- resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
- engines: {node: '>=4'}
-
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
@@ -8387,9 +7339,6 @@ packages:
fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
- fault@2.0.1:
- resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==}
-
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
@@ -8408,10 +7357,6 @@ packages:
fflate@0.4.8:
resolution: {integrity: sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==}
- figures@3.2.0:
- resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
- engines: {node: '>=8'}
-
file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -8420,9 +7365,6 @@ packages:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
- file-size@1.0.0:
- resolution: {integrity: sha512-tLIdonWTpABkU6Axg2yGChYdrOsy4V8xcm0IcyAP8fSsu6jiXLm5pgs083e4sq5fzNRZuAYolUbZyYmPvCKfwQ==}
-
file-system-cache@2.3.0:
resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==}
@@ -8473,9 +7415,6 @@ packages:
resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- find-yarn-workspace-root2@1.2.16:
- resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==}
-
fix-dts-default-cjs-exports@1.0.1:
resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
@@ -8528,10 +7467,6 @@ packages:
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
engines: {node: '>= 6'}
- format@0.2.2:
- resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==}
- engines: {node: '>=0.4.x'}
-
forwarded@0.2.0:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
@@ -8586,10 +7521,6 @@ packages:
resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
engines: {node: '>=14.14'}
- fs-extra@8.1.0:
- resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
- engines: {node: '>=6 <7 || >=8'}
-
fs-extra@9.1.0:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
@@ -8598,10 +7529,6 @@ packages:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
- fs-minipass@3.0.3:
- resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
fs-monkey@1.0.6:
resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==}
@@ -8635,9 +7562,6 @@ packages:
resolution: {integrity: sha512-Jh/AIwwgaxan+7ZUUmRLCjtchyDiqh4KjBJ5tW3plBZb5iL/BPcso8A5DlzeD9qlw0duCamnNdpFjxwaT0KyKg==}
engines: {node: '>=14'}
- generic-names@4.0.0:
- resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==}
-
gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
@@ -8676,10 +7600,6 @@ packages:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
- get-port@5.1.1:
- resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
- engines: {node: '>=8'}
-
get-proto@1.0.1:
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
engines: {node: '>= 0.4'}
@@ -8707,10 +7627,6 @@ packages:
get-tsconfig@4.7.2:
resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==}
- get-uri@6.0.1:
- resolution: {integrity: sha512-7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q==}
- engines: {node: '>= 14'}
-
giget@1.2.3:
resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==}
hasBin: true
@@ -8765,10 +7681,6 @@ packages:
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
- globby@10.0.2:
- resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==}
- engines: {node: '>=8'}
-
globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
@@ -8785,9 +7697,6 @@ packages:
resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==}
engines: {node: '>=0.10.0'}
- globrex@0.1.2:
- resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
-
google-auth-library@9.11.0:
resolution: {integrity: sha512-epX3ww/mNnhl6tL45EQ/oixsY8JLEgUFoT4A5E/5iAR4esld9Kqv6IJGk7EmGuOgDvaarwF95hU2+v7Irql9lw==}
engines: {node: '>=14'}
@@ -8810,10 +7719,6 @@ packages:
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- gradient-string@2.0.2:
- resolution: {integrity: sha512-rEDCuqUQ4tbD78TpzsMtt5OIf0cBCSDWSJtUDaF6JsAh+k0v9r++NzxNEG87oDZx9ZwGhD8DaezR2L/yrw0Jdw==}
- engines: {node: '>=10'}
-
graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
@@ -8897,35 +7802,19 @@ packages:
hast-util-is-element@3.0.0:
resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==}
- hast-util-to-estree@2.3.3:
- resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==}
-
hast-util-to-string@3.0.0:
resolution: {integrity: sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==}
- hast-util-whitespace@2.0.1:
- resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==}
-
he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
- header-case@1.0.1:
- resolution: {integrity: sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==}
-
hmac-drbg@1.0.1:
resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==}
- hookable@5.5.3:
- resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
-
hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
- hosted-git-info@6.1.1:
- resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
html-encoding-sniffer@3.0.0:
resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
engines: {node: '>=12'}
@@ -8971,10 +7860,6 @@ packages:
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
engines: {node: '>= 6'}
- http-proxy-agent@7.0.0:
- resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==}
- engines: {node: '>= 14'}
-
https-browserify@1.0.0:
resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==}
@@ -9067,26 +7952,12 @@ packages:
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- ini@1.3.8:
- resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
-
- inline-style-parser@0.1.1:
- resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
-
input-otp@1.4.2:
resolution: {integrity: sha512-l3jWwYNvrEa6NTCt7BECfCm48GvwuZzkoeG3gBL2w4CHeOXW3eKFmf9UNYkNfYc3mxMrthMnxjIE07MT0zLBQA==}
peerDependencies:
react: ^18
react-dom: ^18.3.1
- inquirer@7.3.3:
- resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==}
- engines: {node: '>=8.0.0'}
-
- inquirer@8.2.6:
- resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==}
- engines: {node: '>=12.0.0'}
-
internal-slot@1.0.6:
resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==}
engines: {node: '>= 0.4'}
@@ -9105,12 +7976,6 @@ packages:
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
- ip@1.1.8:
- resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==}
-
- ip@2.0.0:
- resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==}
-
ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
@@ -9119,12 +7984,6 @@ packages:
resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- is-alphabetical@2.0.1:
- resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
-
- is-alphanumerical@2.0.1:
- resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
-
is-arguments@1.1.1:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
engines: {node: '>= 0.4'}
@@ -9165,10 +8024,6 @@ packages:
resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
engines: {node: '>= 0.4'}
- is-buffer@2.0.5:
- resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
- engines: {node: '>=4'}
-
is-builtin-module@3.2.1:
resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
engines: {node: '>=6'}
@@ -9192,9 +8047,6 @@ packages:
resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
engines: {node: '>= 0.4'}
- is-decimal@2.0.1:
- resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
-
is-deflate@1.0.0:
resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==}
@@ -9247,9 +8099,6 @@ packages:
resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==}
engines: {node: '>=0.10.0'}
- is-hexadecimal@2.0.1:
- resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
-
is-inside-container@1.0.0:
resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
engines: {node: '>=14.16'}
@@ -9259,9 +8108,6 @@ packages:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
- is-lower-case@1.1.3:
- resolution: {integrity: sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==}
-
is-map@2.0.2:
resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
@@ -9316,10 +8162,6 @@ packages:
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
engines: {node: '>=8'}
- is-plain-obj@3.0.0:
- resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
- engines: {node: '>=10'}
-
is-plain-obj@4.1.0:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
@@ -9335,9 +8177,6 @@ packages:
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
- is-reference@3.0.2:
- resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
-
is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
@@ -9400,9 +8239,6 @@ packages:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
- is-upper-case@1.1.2:
- resolution: {integrity: sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==}
-
is-weakmap@2.0.1:
resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
@@ -9424,10 +8260,6 @@ packages:
resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
engines: {node: '>= 0.4'}
- is-what@4.1.16:
- resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
- engines: {node: '>=12.13'}
-
is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
@@ -9438,14 +8270,6 @@ packages:
isarray@2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
- isbinaryfile@4.0.10:
- resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==}
- engines: {node: '>= 8.0.0'}
-
- isbot@4.4.0:
- resolution: {integrity: sha512-8ZvOWUA68kyJO4hHJdWjyreq7TYNWTS9y15IzeqVdKxR9pPr3P/3r9AHcoIv9M0Rllkao5qWz2v1lmcyKIVCzQ==}
- engines: {node: '>=18'}
-
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
@@ -9496,9 +8320,6 @@ packages:
engines: {node: '>=10'}
hasBin: true
- javascript-stringify@2.1.0:
- resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==}
-
jest-changed-files@29.7.0:
resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -9726,10 +8547,6 @@ packages:
json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- json-parse-even-better-errors@3.0.2:
- resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
@@ -9751,12 +8568,6 @@ packages:
engines: {node: '>=6'}
hasBin: true
- jsonc-parser@3.2.1:
- resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
-
- jsonfile@4.0.0:
- resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
-
jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
@@ -9785,10 +8596,6 @@ packages:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- kleur@4.1.5:
- resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
- engines: {node: '>=6'}
-
klona@2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
@@ -9822,96 +8629,48 @@ packages:
cpu: [arm64]
os: [android]
- lightningcss-darwin-arm64@1.23.0:
- resolution: {integrity: sha512-kl4Pk3Q2lnE6AJ7Qaij47KNEfY2/UXRZBT/zqGA24B8qwkgllr/j7rclKOf1axcslNXvvUdztjo4Xqh39Yq1aA==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [darwin]
-
lightningcss-darwin-arm64@1.30.2:
resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
- lightningcss-darwin-x64@1.23.0:
- resolution: {integrity: sha512-KeRFCNoYfDdcolcFXvokVw+PXCapd2yHS1Diko1z1BhRz/nQuD5XyZmxjWdhmhN/zj5sH8YvWsp0/lPLVzqKpg==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [darwin]
-
lightningcss-darwin-x64@1.30.2:
resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
- lightningcss-freebsd-x64@1.23.0:
- resolution: {integrity: sha512-xhnhf0bWPuZxcqknvMDRFFo2TInrmQRWZGB0f6YoAsZX8Y+epfjHeeOIGCfAmgF0DgZxHwYc8mIR5tQU9/+ROA==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [freebsd]
-
lightningcss-freebsd-x64@1.30.2:
resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
- lightningcss-linux-arm-gnueabihf@1.23.0:
- resolution: {integrity: sha512-fBamf/bULvmWft9uuX+bZske236pUZEoUlaHNBjnueaCTJ/xd8eXgb0cEc7S5o0Nn6kxlauMBnqJpF70Bgq3zg==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm]
- os: [linux]
-
lightningcss-linux-arm-gnueabihf@1.30.2:
resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
- lightningcss-linux-arm64-gnu@1.23.0:
- resolution: {integrity: sha512-RS7sY77yVLOmZD6xW2uEHByYHhQi5JYWmgVumYY85BfNoVI3DupXSlzbw+b45A9NnVKq45+oXkiN6ouMMtTwfg==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [linux]
-
lightningcss-linux-arm64-gnu@1.30.2:
resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-arm64-musl@1.23.0:
- resolution: {integrity: sha512-cU00LGb6GUXCwof6ACgSMKo3q7XYbsyTj0WsKHLi1nw7pV0NCq8nFTn6ZRBYLoKiV8t+jWl0Hv8KkgymmK5L5g==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [linux]
-
lightningcss-linux-arm64-musl@1.30.2:
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-x64-gnu@1.23.0:
- resolution: {integrity: sha512-q4jdx5+5NfB0/qMbXbOmuC6oo7caPnFghJbIAV90cXZqgV8Am3miZhC4p+sQVdacqxfd+3nrle4C8icR3p1AYw==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [linux]
-
lightningcss-linux-x64-gnu@1.30.2:
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-linux-x64-musl@1.23.0:
- resolution: {integrity: sha512-G9Ri3qpmF4qef2CV/80dADHKXRAQeQXpQTLx7AiQrBYQHqBjB75oxqj06FCIe5g4hNCqLPnM9fsO4CyiT1sFSQ==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [linux]
-
lightningcss-linux-x64-musl@1.30.2:
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
engines: {node: '>= 12.0.0'}
@@ -9924,22 +8683,12 @@ packages:
cpu: [arm64]
os: [win32]
- lightningcss-win32-x64-msvc@1.23.0:
- resolution: {integrity: sha512-1rcBDJLU+obPPJM6qR5fgBUiCdZwZLafZM5f9kwjFLkb/UBNIzmae39uCSmh71nzPCTXZqHbvwu23OWnWEz+eg==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [win32]
-
lightningcss-win32-x64-msvc@1.30.2:
resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
- lightningcss@1.23.0:
- resolution: {integrity: sha512-SEArWKMHhqn/0QzOtclIwH5pXIYQOUEkF8DgICd/105O+GCgd7jxjNod/QPnBCSWvpRHQBGVz5fQ9uScby03zA==}
- engines: {node: '>= 12.0.0'}
-
lightningcss@1.30.2:
resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
engines: {node: '>= 12.0.0'}
@@ -9968,10 +8717,6 @@ packages:
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- load-yaml-file@0.2.0:
- resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==}
- engines: {node: '>=6'}
-
loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
@@ -9984,10 +8729,6 @@ packages:
resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==}
engines: {node: '>= 12.13.0'}
- local-pkg@0.5.0:
- resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
- engines: {node: '>=14'}
-
locate-path@3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
engines: {node: '>=6'}
@@ -10004,34 +8745,18 @@ packages:
resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- lodash.camelcase@4.3.0:
- resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
-
lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- lodash.get@4.4.2:
- resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
-
- lodash.memoize@4.1.2:
- resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
-
lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
lodash.sortby@4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
- lodash.uniq@4.5.0:
- resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
-
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- log-symbols@3.0.0:
- resolution: {integrity: sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==}
- engines: {node: '>=8'}
-
log-symbols@4.1.0:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
@@ -10040,12 +8765,6 @@ packages:
resolution: {integrity: sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==}
engines: {node: '>=18'}
- longest-streak@3.1.0:
- resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
-
- look-it-up@2.1.0:
- resolution: {integrity: sha512-nMoGWW2HurtuJf6XAL56FWTDCWLOTSsanrgwOyaR5Y4e3zfG5N/0cU5xWZSEU3tBxhQugRbV1xL9jb+ug7yZww==}
-
loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
@@ -10065,12 +8784,6 @@ packages:
loupe@3.1.3:
resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==}
- lower-case-first@1.0.2:
- resolution: {integrity: sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==}
-
- lower-case@1.1.4:
- resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==}
-
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -10085,10 +8798,6 @@ packages:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
- lru-cache@7.18.3:
- resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
- engines: {node: '>=12'}
-
lucide-react@0.408.0:
resolution: {integrity: sha512-8kETAAeWmOvtGIr7HPHm51DXoxlfkNncQ5FZWXR+abX8saQwMYXANWIkUstaYtcKSo/imOe/q+tVFA8ANzdSVA==}
peerDependencies:
@@ -10140,10 +8849,6 @@ packages:
map-or-similar@1.5.0:
resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==}
- markdown-extensions@1.1.1:
- resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==}
- engines: {node: '>=0.10.0'}
-
markdown-to-jsx@7.3.2:
resolution: {integrity: sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==}
engines: {node: '>= 10'}
@@ -10157,42 +8862,6 @@ packages:
md5.js@1.3.5:
resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
- mdast-util-definitions@5.1.2:
- resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
-
- mdast-util-from-markdown@1.3.1:
- resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
-
- mdast-util-frontmatter@1.0.1:
- resolution: {integrity: sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==}
-
- mdast-util-mdx-expression@1.3.2:
- resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==}
-
- mdast-util-mdx-jsx@2.1.4:
- resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==}
-
- mdast-util-mdx@2.0.1:
- resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==}
-
- mdast-util-mdxjs-esm@1.3.1:
- resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==}
-
- mdast-util-phrasing@3.0.1:
- resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==}
-
- mdast-util-to-hast@12.3.0:
- resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
-
- mdast-util-to-markdown@1.5.0:
- resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
-
- mdast-util-to-string@3.2.0:
- resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
-
- media-query-parser@2.0.2:
- resolution: {integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==}
-
media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
@@ -10204,10 +8873,6 @@ packages:
memoizerific@1.11.3:
resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==}
- merge-anything@5.1.7:
- resolution: {integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==}
- engines: {node: '>=12.13'}
-
merge-descriptors@1.0.1:
resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
@@ -10222,120 +8887,30 @@ packages:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
- microdiff@1.3.2:
- resolution: {integrity: sha512-pKy60S2febliZIbwdfEQKTtL5bLNxOyiRRmD400gueYl9XcHyNGxzHSlJWn9IMHwYXT0yohPYL08+bGozVk8cQ==}
+ micromatch@4.0.7:
+ resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
+ engines: {node: '>=8.6'}
- micromark-core-commonmark@1.1.0:
- resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==}
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
+ engines: {node: '>=8.6'}
- micromark-extension-frontmatter@1.1.1:
- resolution: {integrity: sha512-m2UH9a7n3W8VAH9JO9y01APpPKmNNNs71P0RbknEmYSaZU5Ghogv38BYO94AI5Xw6OYfxZRdHZZ2nYjs/Z+SZQ==}
+ miller-rabin@4.0.1:
+ resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==}
+ hasBin: true
- micromark-extension-mdx-expression@1.0.8:
- resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==}
+ mime-db@1.52.0:
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
- micromark-extension-mdx-jsx@1.0.5:
- resolution: {integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==}
+ mime-types@2.1.35:
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+ engines: {node: '>= 0.6'}
- micromark-extension-mdx-md@1.0.1:
- resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==}
-
- micromark-extension-mdxjs-esm@1.0.5:
- resolution: {integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==}
-
- micromark-extension-mdxjs@1.0.1:
- resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==}
-
- micromark-factory-destination@1.1.0:
- resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==}
-
- micromark-factory-label@1.1.0:
- resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==}
-
- micromark-factory-mdx-expression@1.0.9:
- resolution: {integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==}
-
- micromark-factory-space@1.1.0:
- resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==}
-
- micromark-factory-title@1.1.0:
- resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==}
-
- micromark-factory-whitespace@1.1.0:
- resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==}
-
- micromark-util-character@1.2.0:
- resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==}
-
- micromark-util-chunked@1.1.0:
- resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==}
-
- micromark-util-classify-character@1.1.0:
- resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==}
-
- micromark-util-combine-extensions@1.1.0:
- resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==}
-
- micromark-util-decode-numeric-character-reference@1.1.0:
- resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==}
-
- micromark-util-decode-string@1.1.0:
- resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==}
-
- micromark-util-encode@1.1.0:
- resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==}
-
- micromark-util-events-to-acorn@1.2.3:
- resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==}
-
- micromark-util-html-tag-name@1.2.0:
- resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==}
-
- micromark-util-normalize-identifier@1.1.0:
- resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==}
-
- micromark-util-resolve-all@1.1.0:
- resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==}
-
- micromark-util-sanitize-uri@1.2.0:
- resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==}
-
- micromark-util-subtokenize@1.1.0:
- resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==}
-
- micromark-util-symbol@1.1.0:
- resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==}
-
- micromark-util-types@1.1.0:
- resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==}
-
- micromark@3.2.0:
- resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
-
- micromatch@4.0.7:
- resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
- engines: {node: '>=8.6'}
-
- micromatch@4.0.8:
- resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
- engines: {node: '>=8.6'}
-
- miller-rabin@4.0.1:
- resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==}
- hasBin: true
-
- mime-db@1.52.0:
- resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
- engines: {node: '>= 0.6'}
-
- mime-types@2.1.35:
- resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
- engines: {node: '>= 0.6'}
-
- mime@1.6.0:
- resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
- engines: {node: '>=4'}
- hasBin: true
+ mime@1.6.0:
+ resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
+ engines: {node: '>=4'}
+ hasBin: true
mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
@@ -10373,18 +8948,6 @@ packages:
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass-collect@1.0.2:
- resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
- engines: {node: '>= 8'}
-
- minipass-flush@1.0.5:
- resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
- engines: {node: '>= 8'}
-
- minipass-pipeline@1.2.4:
- resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
- engines: {node: '>=8'}
-
minipass@3.3.6:
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
@@ -10414,33 +8977,14 @@ packages:
mkdirp-classic@0.5.3:
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
- mkdirp@0.5.6:
- resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
- hasBin: true
-
mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
- mkdirp@3.0.1:
- resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
- engines: {node: '>=10'}
- hasBin: true
-
- mlly@1.7.1:
- resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
-
mlly@1.8.0:
resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==}
- modern-ahocorasick@1.0.1:
- resolution: {integrity: sha512-yoe+JbhTClckZ67b2itRtistFKf8yPYelHLc7e5xAwtNAXxM6wJTUx2C7QeVSJFDzKT7bCIFyBVybPMKvmB9AA==}
-
- morgan@1.10.0:
- resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==}
- engines: {node: '>= 0.8.0'}
-
motion-dom@12.38.0:
resolution: {integrity: sha512-pdkHLD8QYRp8VfiNLb8xIBJis1byQ9gPT3Jnh2jqfFtAsWUA3dEepDlsWe/xMpO8McV+VdpKVcp+E+TGJEtOoA==}
@@ -10461,14 +9005,6 @@ packages:
react-dom:
optional: true
- mri@1.2.0:
- resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
- engines: {node: '>=4'}
-
- mrmime@1.0.1:
- resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
- engines: {node: '>=10'}
-
mrmime@2.0.0:
resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
engines: {node: '>=10'}
@@ -10482,9 +9018,6 @@ packages:
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- mute-stream@0.0.8:
- resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
-
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
@@ -10493,11 +9026,6 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@3.3.7:
- resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
-
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
@@ -10508,10 +9036,6 @@ packages:
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- netmask@2.0.2:
- resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
- engines: {node: '>= 0.4.0'}
-
next-auth@4.24.7:
resolution: {integrity: sha512-iChjE8ov/1K/z98gdKbn2Jw+2vLgJtVV39X+rCP5SGnVQuco7QOr19FRNGMIrD8d3LYhHWV9j9sKLzq1aDWWQQ==}
peerDependencies:
@@ -10558,9 +9082,6 @@ packages:
sass:
optional: true
- no-case@2.3.2:
- resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==}
-
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
@@ -10571,10 +9092,6 @@ packages:
resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
engines: {node: '>= 0.10.5'}
- node-eval@2.0.0:
- resolution: {integrity: sha512-Ap+L9HznXAVeJj3TJ1op6M6bg5xtTq8L5CU/PJxtkhea/DrIxdTknGKIECKd/v/Lgql95iuMAYvIzBNd0pmcMg==}
- engines: {node: '>= 4'}
-
node-fetch-native@1.6.4:
resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
@@ -10590,10 +9107,6 @@ packages:
node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- node-plop@0.26.3:
- resolution: {integrity: sha512-Cov028YhBZ5aB7MdMWJEmwyBig43aGL5WT4vdoB28Oitau1zZAcHUn8Sgfk9HM33TqhtLJ9PlM/O0Mv+QpV/4Q==}
- engines: {node: '>=8.9.4'}
-
node-polyfill-webpack-plugin@2.0.1:
resolution: {integrity: sha512-ZUMiCnZkP1LF0Th2caY6J/eKKoA0TefpoVa68m/LQU1I/mE8rGt4fNYGgNuCcK+aG8P8P43nbeJ2RqJMOL/Y1A==}
engines: {node: '>=12'}
@@ -10612,30 +9125,10 @@ packages:
normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
- normalize-package-data@5.0.0:
- resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- npm-install-checks@6.3.0:
- resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- npm-normalize-package-bin@3.0.1:
- resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- npm-package-arg@10.1.0:
- resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- npm-pick-manifest@8.0.2:
- resolution: {integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
@@ -10706,10 +9199,6 @@ packages:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
- object-path@0.11.8:
- resolution: {integrity: sha512-YJjNZrlXJFM42wTBn6zgOJVar9KFJvzx6sTWDte8sWZF//cnjl0BxHNpfZx+ZffXX63A9q0b1zsFiBX4g4X5KA==}
- engines: {node: '>= 10.12.0'}
-
object.assign@4.1.4:
resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
engines: {node: '>= 0.4'}
@@ -10737,9 +9226,6 @@ packages:
object.groupby@1.0.1:
resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==}
- object.hasown@1.1.3:
- resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==}
-
object.values@1.1.7:
resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
engines: {node: '>= 0.4'}
@@ -10758,10 +9244,6 @@ packages:
resolution: {integrity: sha512-IF4PcGgzAr6XXSff26Sk/+P4KZFJVuHAJZj3wgO3vX2bMdNVp/QXTP3P7CEm9V1IdG8lDLY3HhiqpsE/nOwpPw==}
engines: {node: ^10.13.0 || >=12.0.0}
- on-finished@2.3.0:
- resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
- engines: {node: '>= 0.8'}
-
on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
@@ -10800,10 +9282,6 @@ packages:
resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
engines: {node: '>= 0.8.0'}
- ora@4.1.1:
- resolution: {integrity: sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==}
- engines: {node: '>=8'}
-
ora@5.4.1:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
@@ -10811,13 +9289,6 @@ packages:
os-browserify@0.3.0:
resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==}
- os-tmpdir@1.0.2:
- resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
- engines: {node: '>=0.10.0'}
-
- outdent@0.8.0:
- resolution: {integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==}
-
overlay-kit@1.8.5:
resolution: {integrity: sha512-BNtfOsfMNzo22x+uMNtV8nix53VTbA0XMENtwdvaEUmtXCjUE6go2xK4XSlNnSGyQfmB6c04uUCuFQtS5ZAAEQ==}
peerDependencies:
@@ -10860,26 +9331,10 @@ packages:
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
engines: {node: '>=6'}
- p-map@3.0.0:
- resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
- engines: {node: '>=8'}
-
- p-map@4.0.0:
- resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
- engines: {node: '>=10'}
-
p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- pac-proxy-agent@7.0.0:
- resolution: {integrity: sha512-t4tRAMx0uphnZrio0S0Jw9zg3oDbz1zVhQ/Vy18FjLfP1XOLNUEjaVxYCYRI6NS+BsMBXKIzV6cTLOkO9AtywA==}
- engines: {node: '>= 14'}
-
- pac-resolver@7.0.0:
- resolution: {integrity: sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==}
- engines: {node: '>= 14'}
-
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
@@ -10889,9 +9344,6 @@ packages:
pako@1.0.11:
resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
- param-case@2.1.1:
- resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==}
-
param-case@3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
@@ -10903,17 +9355,10 @@ packages:
resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==}
engines: {node: '>= 0.10'}
- parse-entities@4.0.1:
- resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
-
parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
- parse-ms@2.1.0:
- resolution: {integrity: sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==}
- engines: {node: '>=6'}
-
parse5@7.3.0:
resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
@@ -10921,18 +9366,12 @@ packages:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
- pascal-case@2.0.1:
- resolution: {integrity: sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==}
-
pascal-case@3.1.2:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
- path-case@2.1.1:
- resolution: {integrity: sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==}
-
path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
@@ -11002,15 +9441,6 @@ packages:
peek-stream@1.1.3:
resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==}
- perfect-debounce@1.0.0:
- resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
-
- periscopic@3.1.0:
- resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
-
- picocolors@1.0.1:
- resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
-
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
@@ -11063,12 +9493,6 @@ packages:
resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
engines: {node: '>=14.16'}
- pkg-types@1.0.3:
- resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
-
- pkg-types@1.1.1:
- resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==}
-
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
@@ -11088,24 +9512,6 @@ packages:
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
engines: {node: '>= 0.4'}
- postcss-discard-duplicates@5.1.0:
- resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
- engines: {node: ^10 || ^12 || >=14.0}
- peerDependencies:
- postcss: ^8.2.15
-
- postcss-discard-duplicates@7.0.0:
- resolution: {integrity: sha512-bAnSuBop5LpAIUmmOSsuvtKAAKREB6BBIYStWUTGq8oG5q9fClDMMuY8i4UPI/cEcDx2TN+7PMnXYIId20UVDw==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-discard-empty@7.0.0:
- resolution: {integrity: sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
postcss-import@15.1.0:
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
@@ -11118,18 +9524,6 @@ packages:
peerDependencies:
postcss: ^8.4.21
- postcss-load-config@4.0.2:
- resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
- engines: {node: '>= 14'}
- peerDependencies:
- postcss: '>=8.0.9'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- postcss:
- optional: true
- ts-node:
- optional: true
-
postcss-load-config@6.0.1:
resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
engines: {node: '>= 18'}
@@ -11161,18 +9555,6 @@ packages:
webpack:
optional: true
- postcss-merge-rules@7.0.0:
- resolution: {integrity: sha512-Zty3VlOsD6VSjBMu6PiHCVpLegtBT/qtZRVBcSeyEZ6q1iU5qTYT0WtEoLRV+YubZZguS5/ycfP+NRiKfjv6aw==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-minify-selectors@7.0.0:
- resolution: {integrity: sha512-f00CExZhD6lNw2vTZbcnmfxVgaVKzUw6IRsIFX3JTT8GdsoABc1WnhhGwL1i8YPJ3sSWw39fv7XPtvLb+3Uitw==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
postcss-modules-extract-imports@3.1.0:
resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
engines: {node: ^10 || ^12 || >= 14}
@@ -11197,33 +9579,12 @@ packages:
peerDependencies:
postcss: ^8.1.0
- postcss-modules@6.0.0:
- resolution: {integrity: sha512-7DGfnlyi/ju82BRzTIjWS5C4Tafmzl3R79YP/PASiocj+aa6yYphHhhKUOEoXQToId5rgyFgJ88+ccOUydjBXQ==}
- peerDependencies:
- postcss: ^8.0.0
-
- postcss-nested@6.0.1:
- resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
- engines: {node: '>=12.0'}
- peerDependencies:
- postcss: ^8.2.14
-
postcss-nested@6.2.0:
resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
- postcss-normalize-whitespace@7.0.0:
- resolution: {integrity: sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
- postcss-selector-parser@6.0.16:
- resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
- engines: {node: '>=4'}
-
postcss-selector-parser@6.1.2:
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
@@ -11235,10 +9596,6 @@ packages:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.4.38:
- resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
- engines: {node: ^10 || ^12 || >=14}
-
postcss@8.5.6:
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
@@ -11251,10 +9608,6 @@ packages:
preact@10.23.2:
resolution: {integrity: sha512-kKYfePf9rzKnxOAKDpsWhg/ysrHPqT+yQ7UW4JjdnqjFIeNUnNcEJvhuA8fDenxAGWzUqtd51DfVg7xp/8T9NA==}
- preferred-pm@3.1.2:
- resolution: {integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==}
- engines: {node: '>=10'}
-
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -11298,14 +9651,6 @@ packages:
resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==}
engines: {node: '>= 0.8'}
- pretty-ms@7.0.1:
- resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==}
- engines: {node: '>=10'}
-
- proc-log@3.0.0:
- resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
@@ -11313,18 +9658,6 @@ packages:
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
engines: {node: '>= 0.6.0'}
- promise-inflight@1.0.1:
- resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
- peerDependencies:
- bluebird: '*'
- peerDependenciesMeta:
- bluebird:
- optional: true
-
- promise-retry@2.0.1:
- resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
- engines: {node: '>=10'}
-
prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
@@ -11332,17 +9665,10 @@ packages:
prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
- property-information@6.5.0:
- resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
-
proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
- proxy-agent@6.3.0:
- resolution: {integrity: sha512-0LdR757eTj/JfuU7TL2YCuAZnxWXu3tkJbg4Oq3geW/qFNT/32T0sp2HnZ9O0lMR4q3vwAt0+xCA8SR0WAD0og==}
- engines: {node: '>= 14'}
-
proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
@@ -11413,10 +9739,6 @@ packages:
resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
engines: {node: '>= 0.8'}
- rc@1.2.8:
- resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
- hasBin: true
-
react-colorful@5.6.1:
resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==}
peerDependencies:
@@ -11535,16 +9857,6 @@ packages:
'@types/react':
optional: true
- react-remove-scroll@2.6.0:
- resolution: {integrity: sha512-I2U4JVEsQenxDAKaVa3VZ/JeJZe0/2DxPWL8Tj8yLKctQJQiZM52pn/GWFpSp8dftjM3pSAHVJZscAnC/y+ySQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': ^18
- react: ^18
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
react-remove-scroll@2.7.2:
resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
engines: {node: '>=10'}
@@ -11715,9 +10027,6 @@ packages:
regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- regenerator-runtime@0.14.0:
- resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
-
regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
@@ -11740,13 +10049,6 @@ packages:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
- registry-auth-token@3.3.2:
- resolution: {integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==}
-
- registry-url@3.1.0:
- resolution: {integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==}
- engines: {node: '>=0.10.0'}
-
regjsparser@0.10.0:
resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==}
hasBin: true
@@ -11765,22 +10067,6 @@ packages:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
- remark-frontmatter@4.0.1:
- resolution: {integrity: sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==}
-
- remark-mdx-frontmatter@1.1.1:
- resolution: {integrity: sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==}
- engines: {node: '>=12.2.0'}
-
- remark-mdx@2.3.0:
- resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==}
-
- remark-parse@10.0.2:
- resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
-
- remark-rehype@10.1.0:
- resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
-
renderkid@3.0.0:
resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
@@ -11792,9 +10078,6 @@ packages:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
- require-like@0.1.2:
- resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==}
-
requireindex@1.2.0:
resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==}
engines: {node: '>=0.10.5'}
@@ -11821,10 +10104,6 @@ packages:
resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==}
engines: {node: '>=12'}
- resolve.exports@2.0.2:
- resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
- engines: {node: '>=10'}
-
resolve.exports@2.0.3:
resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
engines: {node: '>=10'}
@@ -11848,10 +10127,6 @@ packages:
resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- retry@0.12.0:
- resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
- engines: {node: '>= 4'}
-
reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
@@ -11901,24 +10176,9 @@ packages:
resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
engines: {node: '>=12'}
- run-async@2.4.1:
- resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
- engines: {node: '>=0.12.0'}
-
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- rxjs@6.6.7:
- resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
- engines: {npm: '>=2.0.0'}
-
- rxjs@7.8.1:
- resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
-
- sade@1.8.1:
- resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
- engines: {node: '>=6'}
-
safe-array-concat@1.0.1:
resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==}
engines: {node: '>=0.4'}
@@ -12007,9 +10267,6 @@ packages:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
- sentence-case@2.1.1:
- resolution: {integrity: sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==}
-
serialize-javascript@4.0.0:
resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
@@ -12125,21 +10382,6 @@ packages:
resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==}
engines: {node: '>=18'}
- smart-buffer@4.2.0:
- resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
- engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
-
- snake-case@2.1.0:
- resolution: {integrity: sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==}
-
- socks-proxy-agent@8.0.1:
- resolution: {integrity: sha512-59EjPbbgg8U3x62hhKOFVAmySQUcfRQ4C7Q/D5sEHnZTQRrQlNKINks44DMR1gwXp0p4LaVIeccX2KHTTcHVqQ==}
- engines: {node: '>= 14'}
-
- socks@2.7.1:
- resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
- engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
-
sonner@1.5.0:
resolution: {integrity: sha512-FBjhG/gnnbN6FY0jaNnqZOMmB73R+5IiyYAw8yBj7L54ER7HB3fOSE5OFiQiE2iXWxeXKvg6fIP4LtVppHEdJA==}
peerDependencies:
@@ -12162,10 +10404,6 @@ packages:
source-list-map@2.0.1:
resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
- source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
- engines: {node: '>=0.10.0'}
-
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
@@ -12214,10 +10452,6 @@ packages:
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- ssri@10.0.6:
- resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
stack-utils@2.0.6:
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
@@ -12268,9 +10502,6 @@ packages:
stream-shift@1.0.3:
resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
- stream-slice@0.1.2:
- resolution: {integrity: sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==}
-
streamsearch@1.1.0:
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
engines: {node: '>=10.0.0'}
@@ -12279,9 +10510,6 @@ packages:
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
engines: {node: '>=0.6.19'}
- string-hash@1.1.3:
- resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==}
-
string-length@4.0.2:
resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
engines: {node: '>=10'}
@@ -12336,9 +10564,6 @@ packages:
string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
- stringify-entities@4.0.4:
- resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
-
stringify-object@3.3.0:
resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
engines: {node: '>=4'}
@@ -12379,10 +10604,6 @@ packages:
resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==}
engines: {node: '>=12'}
- strip-json-comments@2.0.1:
- resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
- engines: {node: '>=0.10.0'}
-
strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
@@ -12393,9 +10614,6 @@ packages:
peerDependencies:
webpack: ^5.0.0
- style-to-object@0.4.4:
- resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
-
styled-jsx@5.1.1:
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
@@ -12430,9 +10648,6 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- swap-case@1.1.2:
- resolution: {integrity: sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ==}
-
symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
@@ -12537,9 +10752,6 @@ packages:
through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
- through@2.3.8:
- resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
-
timers-browserify@2.0.12:
resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==}
engines: {node: '>=0.6.0'}
@@ -12550,9 +10762,6 @@ packages:
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
- tinycolor2@1.6.0:
- resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
-
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
@@ -12560,9 +10769,6 @@ packages:
resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
engines: {node: '>=12.0.0'}
- tinygradient@1.1.5:
- resolution: {integrity: sha512-8nIfc2vgQ4TeLnk2lFj4tRLvvJwEfQuabdsmvDdQPT0xlk9TaNtpGd6nNRxXoK6vQhN6RSzj+Cnp5tTQmpxmbw==}
-
tinypool@1.0.2:
resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -12583,17 +10789,10 @@ packages:
resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
engines: {node: '>=14.0.0'}
- title-case@2.1.1:
- resolution: {integrity: sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==}
-
titleize@3.0.0:
resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==}
engines: {node: '>=12'}
- tmp@0.0.33:
- resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
- engines: {node: '>=0.6.0'}
-
tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
@@ -12612,9 +10811,6 @@ packages:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- toml@3.0.0:
- resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==}
-
totalist@3.0.1:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
@@ -12637,12 +10833,6 @@ packages:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
- trim-lines@3.0.1:
- resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
-
- trough@2.2.0:
- resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
-
ts-api-utils@1.3.0:
resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
engines: {node: '>=16'}
@@ -12653,22 +10843,9 @@ packages:
resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
engines: {node: '>=6.10'}
- ts-evaluator@1.2.0:
- resolution: {integrity: sha512-ncSGek1p92bj2ifB7s9UBgryHCkU9vwC5d+Lplt12gT9DH+e41X8dMoHRQjIMeAvyG7j9dEnuHmwgOtuRIQL+Q==}
- engines: {node: '>=14.19.0'}
- peerDependencies:
- jsdom: '>=14.x || >=15.x || >=16.x || >=17.x || >=18.x || >=19.x || >=20.x || >=21.x || >=22.x'
- typescript: ^5.4.5
- peerDependenciesMeta:
- jsdom:
- optional: true
-
ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- ts-morph@21.0.1:
- resolution: {integrity: sha512-dbDtVdEAncKctzrVZ+Nr7kHpHkv+0JDJb2MjjpBaj8bFeCkePU9rHfMklmhuLFnpeq/EJZk2IhStY6NzqgjOkg==}
-
ts-node@10.9.1:
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
@@ -12683,9 +10860,6 @@ packages:
'@swc/wasm':
optional: true
- ts-pattern@5.0.8:
- resolution: {integrity: sha512-aafbuAQOTEeWmA7wtcL94w6I89EgLD7F+IlWkr596wYxeb0oveWDO5dQpv85YP0CGbxXT/qXBIeV6IYLcoZ2uA==}
-
ts-pnp@1.2.0:
resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
engines: {node: '>=6'}
@@ -12695,26 +10869,6 @@ packages:
typescript:
optional: true
- tsconfck@3.0.2:
- resolution: {integrity: sha512-6lWtFjwuhS3XI4HsX4Zg0izOI3FU/AI9EGVlPEUMDIhvLPMD4wkiof0WCoDgW7qY+Dy198g4d9miAqUHWHFH6Q==}
- engines: {node: ^18 || >=20}
- hasBin: true
- peerDependencies:
- typescript: ^5.4.5
- peerDependenciesMeta:
- typescript:
- optional: true
-
- tsconfck@3.1.1:
- resolution: {integrity: sha512-00eoI6WY57SvZEVjm13stEVE90VkEdJAFGgpFLTsZbJyW/LwFQ7uQxJHWpZ2hzSWgCPKc9AnBnNP+0X7o3hAmQ==}
- engines: {node: ^18 || >=20}
- hasBin: true
- peerDependencies:
- typescript: ^5.4.5
- peerDependenciesMeta:
- typescript:
- optional: true
-
tsconfig-paths-webpack-plugin@4.1.0:
resolution: {integrity: sha512-xWFISjviPydmtmgeUAuXp4N1fky+VCtfhOkDUFIv5ea7p4wuTomI4QTrXvFBX2S4jZsmyTSrStQl+E+4w+RzxA==}
engines: {node: '>=10.13.0'}
@@ -12897,10 +11051,6 @@ packages:
undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
- undici@6.19.4:
- resolution: {integrity: sha512-i3uaEUwNdkRq2qtTRRJb13moW5HWqviu7Vl7oYRYz++uPtGHJj+x7TGjcEuwS5Mt2P4nA0U9dhIX3DdB6JGY0g==}
- engines: {node: '>=18.17'}
-
unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
@@ -12921,17 +11071,6 @@ packages:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
- unified@10.1.2:
- resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
-
- unique-filename@3.0.0:
- resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- unique-slug@4.0.0:
- resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
unique-string@2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
engines: {node: '>=8'}
@@ -12940,46 +11079,18 @@ packages:
resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==}
engines: {node: '>=12'}
- unist-util-generated@2.0.1:
- resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==}
-
- unist-util-is@5.2.1:
- resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
-
unist-util-is@6.0.0:
resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
- unist-util-position-from-estree@1.1.2:
- resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==}
-
- unist-util-position@4.0.4:
- resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
-
- unist-util-remove-position@4.0.2:
- resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==}
-
- unist-util-stringify-position@3.0.3:
- resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
-
- unist-util-visit-parents@5.1.3:
- resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
-
unist-util-visit-parents@6.0.1:
resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
- unist-util-visit@4.1.2:
- resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
-
unist-util-visit@5.0.0:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
universal-user-agent@7.0.2:
resolution: {integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==}
- universalify@0.1.2:
- resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
- engines: {node: '>= 4.0.0'}
-
universalify@0.2.0:
resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
engines: {node: '>= 4.0.0'}
@@ -13022,15 +11133,6 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
- update-check@1.5.4:
- resolution: {integrity: sha512-5YHsflzHP4t1G+8WGPlvKbJEbAJGCgw+Em+dGR1KmBUbr1J36SJBqlHLjR7oob7sco5hWHGQVcr9B2poIVDDTQ==}
-
- upper-case-first@1.1.2:
- resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==}
-
- upper-case@1.1.3:
- resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==}
-
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
@@ -13120,11 +11222,6 @@ packages:
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
hasBin: true
- uvu@0.5.6:
- resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
- engines: {node: '>=8'}
- hasBin: true
-
v8-compile-cache-lib@3.0.1:
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
@@ -13135,10 +11232,6 @@ packages:
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
- validate-npm-package-name@5.0.0:
- resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
@@ -13149,33 +11242,14 @@ packages:
react: ^18
react-dom: ^18.3.1
- vfile-message@3.1.4:
- resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
-
- vfile@5.3.7:
- resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
-
victory-vendor@36.9.2:
resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==}
- vite-node@1.6.0:
- resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
-
vite-node@3.1.1:
resolution: {integrity: sha512-V+IxPAE2FvXpTCHXyNem0M+gWm6J7eRyWPR6vYoG/Gl+IscNOjXzztUhimQgTxaAoUoj40Qqimaa0NLIOOAH4w==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vite-tsconfig-paths@4.3.2:
- resolution: {integrity: sha512-0Vd/a6po6Q+86rPlntHye7F31zA2URZMbH8M3saAZ/xR9QoGN/L21bxEGfXdWmFdNkqPpRdxFT7nmNe12e9/uA==}
- peerDependencies:
- vite: '*'
- peerDependenciesMeta:
- vite:
- optional: true
-
vite@5.3.5:
resolution: {integrity: sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -13364,13 +11438,6 @@ packages:
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
- web-encoding@1.1.5:
- resolution: {integrity: sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==}
-
- web-streams-polyfill@3.3.3:
- resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
- engines: {node: '>= 8'}
-
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
@@ -13462,10 +11529,6 @@ packages:
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
engines: {node: '>= 0.4'}
- which-pm@2.0.0:
- resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==}
- engines: {node: '>=8.15'}
-
which-typed-array@1.1.13:
resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==}
engines: {node: '>= 0.4'}
@@ -13479,11 +11542,6 @@ packages:
engines: {node: '>= 8'}
hasBin: true
- which@3.0.1:
- resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- hasBin: true
-
why-is-node-running@2.3.0:
resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
engines: {node: '>=8'}
@@ -13549,10 +11607,6 @@ packages:
workbox-window@6.6.0:
resolution: {integrity: sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==}
- wrap-ansi@6.2.0:
- resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
- engines: {node: '>=8'}
-
wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
@@ -13679,9 +11733,6 @@ packages:
react:
optional: true
- zwitch@2.0.4:
- resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
-
snapshots:
'@aashutoshrathi/word-wrap@1.2.6': {}
@@ -13727,26 +11778,6 @@ snapshots:
'@babel/compat-data@7.28.0': {}
- '@babel/core@7.24.7':
- dependencies:
- '@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helpers': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
- convert-source-map: 2.0.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/core@7.28.0':
dependencies:
'@ampproject/remapping': 2.2.1
@@ -13849,21 +11880,6 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.7
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -13953,17 +11969,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-transforms@7.24.7(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -14014,15 +12019,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.7
- '@babel/helper-optimise-call-expression': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-replace-supers@7.24.7(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -14089,11 +12085,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.24.7':
- dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.7
-
'@babel/helpers@7.27.6':
dependencies:
'@babel/template': 7.27.2
@@ -14197,11 +12188,6 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
optional: true
- '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -14255,11 +12241,6 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
optional: true
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -14359,11 +12340,6 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.7
optional: true
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -14552,15 +12528,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -14776,16 +12743,6 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-typescript@7.24.7(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -14932,17 +12889,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.24.7(@babel/core@7.24.7)':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.7)
- transitivePeerDependencies:
- - supports-color
-
'@babel/preset-typescript@7.24.7(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -14965,11 +12911,6 @@ snapshots:
'@babel/regjsgen@0.8.0': {}
- '@babel/runtime-corejs3@7.22.10':
- dependencies:
- core-js-pure: 3.32.1
- regenerator-runtime: 0.14.0
-
'@babel/runtime@7.27.6': {}
'@babel/template@7.24.7':
@@ -15056,45 +12997,13 @@ snapshots:
- '@chromatic-com/playwright'
- react
- '@chromatic-com/storybook@1.9.0(react@18.2.0)':
- dependencies:
- chromatic: 11.5.4
- filesize: 10.1.2
- jsonfile: 6.1.0
- react-confetti: 6.1.0(react@18.2.0)
- strip-ansi: 7.1.0
- transitivePeerDependencies:
- - '@chromatic-com/cypress'
- - '@chromatic-com/playwright'
- - react
-
- '@clack/core@0.3.4':
- dependencies:
- picocolors: 1.1.1
- sisteransi: 1.0.5
-
- '@clack/prompts@0.7.0':
- dependencies:
- '@clack/core': 0.3.4
- picocolors: 1.0.1
- sisteransi: 1.0.5
-
'@colors/colors@1.5.0':
optional: true
'@cspotcode/source-map-support@0.8.1':
dependencies:
'@jridgewell/trace-mapping': 0.3.9
-
- '@csstools/postcss-cascade-layers@4.0.6(postcss@8.4.38)':
- dependencies:
- '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.2)
- postcss: 8.4.38
- postcss-selector-parser: 6.1.2
-
- '@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.2)':
- dependencies:
- postcss-selector-parser: 6.1.2
+ optional: true
'@discoveryjs/json-ext@0.5.7': {}
@@ -15103,8 +13012,6 @@ snapshots:
tslib: 2.6.2
optional: true
- '@emotion/hash@0.9.2': {}
-
'@emotion/is-prop-valid@1.2.2':
dependencies:
'@emotion/memoize': 0.8.1
@@ -15129,9 +13036,6 @@ snapshots:
'@esbuild/aix-ppc64@0.27.2':
optional: true
- '@esbuild/android-arm64@0.17.6':
- optional: true
-
'@esbuild/android-arm64@0.20.2':
optional: true
@@ -15144,9 +13048,6 @@ snapshots:
'@esbuild/android-arm64@0.27.2':
optional: true
- '@esbuild/android-arm@0.17.6':
- optional: true
-
'@esbuild/android-arm@0.20.2':
optional: true
@@ -15159,9 +13060,6 @@ snapshots:
'@esbuild/android-arm@0.27.2':
optional: true
- '@esbuild/android-x64@0.17.6':
- optional: true
-
'@esbuild/android-x64@0.20.2':
optional: true
@@ -15174,9 +13072,6 @@ snapshots:
'@esbuild/android-x64@0.27.2':
optional: true
- '@esbuild/darwin-arm64@0.17.6':
- optional: true
-
'@esbuild/darwin-arm64@0.20.2':
optional: true
@@ -15189,9 +13084,6 @@ snapshots:
'@esbuild/darwin-arm64@0.27.2':
optional: true
- '@esbuild/darwin-x64@0.17.6':
- optional: true
-
'@esbuild/darwin-x64@0.20.2':
optional: true
@@ -15204,9 +13096,6 @@ snapshots:
'@esbuild/darwin-x64@0.27.2':
optional: true
- '@esbuild/freebsd-arm64@0.17.6':
- optional: true
-
'@esbuild/freebsd-arm64@0.20.2':
optional: true
@@ -15219,9 +13108,6 @@ snapshots:
'@esbuild/freebsd-arm64@0.27.2':
optional: true
- '@esbuild/freebsd-x64@0.17.6':
- optional: true
-
'@esbuild/freebsd-x64@0.20.2':
optional: true
@@ -15234,9 +13120,6 @@ snapshots:
'@esbuild/freebsd-x64@0.27.2':
optional: true
- '@esbuild/linux-arm64@0.17.6':
- optional: true
-
'@esbuild/linux-arm64@0.20.2':
optional: true
@@ -15249,9 +13132,6 @@ snapshots:
'@esbuild/linux-arm64@0.27.2':
optional: true
- '@esbuild/linux-arm@0.17.6':
- optional: true
-
'@esbuild/linux-arm@0.20.2':
optional: true
@@ -15264,9 +13144,6 @@ snapshots:
'@esbuild/linux-arm@0.27.2':
optional: true
- '@esbuild/linux-ia32@0.17.6':
- optional: true
-
'@esbuild/linux-ia32@0.20.2':
optional: true
@@ -15279,9 +13156,6 @@ snapshots:
'@esbuild/linux-ia32@0.27.2':
optional: true
- '@esbuild/linux-loong64@0.17.6':
- optional: true
-
'@esbuild/linux-loong64@0.20.2':
optional: true
@@ -15294,9 +13168,6 @@ snapshots:
'@esbuild/linux-loong64@0.27.2':
optional: true
- '@esbuild/linux-mips64el@0.17.6':
- optional: true
-
'@esbuild/linux-mips64el@0.20.2':
optional: true
@@ -15309,9 +13180,6 @@ snapshots:
'@esbuild/linux-mips64el@0.27.2':
optional: true
- '@esbuild/linux-ppc64@0.17.6':
- optional: true
-
'@esbuild/linux-ppc64@0.20.2':
optional: true
@@ -15324,9 +13192,6 @@ snapshots:
'@esbuild/linux-ppc64@0.27.2':
optional: true
- '@esbuild/linux-riscv64@0.17.6':
- optional: true
-
'@esbuild/linux-riscv64@0.20.2':
optional: true
@@ -15339,9 +13204,6 @@ snapshots:
'@esbuild/linux-riscv64@0.27.2':
optional: true
- '@esbuild/linux-s390x@0.17.6':
- optional: true
-
'@esbuild/linux-s390x@0.20.2':
optional: true
@@ -15354,9 +13216,6 @@ snapshots:
'@esbuild/linux-s390x@0.27.2':
optional: true
- '@esbuild/linux-x64@0.17.6':
- optional: true
-
'@esbuild/linux-x64@0.20.2':
optional: true
@@ -15375,9 +13234,6 @@ snapshots:
'@esbuild/netbsd-arm64@0.27.2':
optional: true
- '@esbuild/netbsd-x64@0.17.6':
- optional: true
-
'@esbuild/netbsd-x64@0.20.2':
optional: true
@@ -15396,9 +13252,6 @@ snapshots:
'@esbuild/openbsd-arm64@0.27.2':
optional: true
- '@esbuild/openbsd-x64@0.17.6':
- optional: true
-
'@esbuild/openbsd-x64@0.20.2':
optional: true
@@ -15417,9 +13270,6 @@ snapshots:
'@esbuild/openharmony-arm64@0.27.2':
optional: true
- '@esbuild/sunos-x64@0.17.6':
- optional: true
-
'@esbuild/sunos-x64@0.20.2':
optional: true
@@ -15432,9 +13282,6 @@ snapshots:
'@esbuild/sunos-x64@0.27.2':
optional: true
- '@esbuild/win32-arm64@0.17.6':
- optional: true
-
'@esbuild/win32-arm64@0.20.2':
optional: true
@@ -15447,9 +13294,6 @@ snapshots:
'@esbuild/win32-arm64@0.27.2':
optional: true
- '@esbuild/win32-ia32@0.17.6':
- optional: true
-
'@esbuild/win32-ia32@0.20.2':
optional: true
@@ -15462,9 +13306,6 @@ snapshots:
'@esbuild/win32-ia32@0.27.2':
optional: true
- '@esbuild/win32-x64@0.17.6':
- optional: true
-
'@esbuild/win32-x64@0.20.2':
optional: true
@@ -15944,31 +13785,8 @@ snapshots:
'@jridgewell/trace-mapping@0.3.9':
dependencies:
'@jridgewell/resolve-uri': 3.1.1
- '@jridgewell/sourcemap-codec': 1.4.15
-
- '@jspm/core@2.0.1': {}
-
- '@mdx-js/mdx@2.3.0':
- dependencies:
- '@types/estree-jsx': 1.0.5
- '@types/mdx': 2.0.13
- estree-util-build-jsx: 2.2.2
- estree-util-is-identifier-name: 2.1.0
- estree-util-to-js: 1.2.0
- estree-walker: 3.0.3
- hast-util-to-estree: 2.3.3
- markdown-extensions: 1.1.1
- periscopic: 3.1.0
- remark-mdx: 2.3.0
- remark-parse: 10.0.2
- remark-rehype: 10.1.0
- unified: 10.1.2
- unist-util-position-from-estree: 1.1.2
- unist-util-stringify-position: 3.0.3
- unist-util-visit: 4.1.2
- vfile: 5.3.7
- transitivePeerDependencies:
- - supports-color
+ '@jridgewell/sourcemap-codec': 1.5.5
+ optional: true
'@mdx-js/react@3.0.1(@types/react@18.2.61)(react@18.2.0)':
dependencies:
@@ -16053,39 +13871,6 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.15.0
- '@npmcli/fs@3.1.1':
- dependencies:
- semver: 7.7.2
-
- '@npmcli/git@4.1.0':
- dependencies:
- '@npmcli/promise-spawn': 6.0.2
- lru-cache: 7.18.3
- npm-pick-manifest: 8.0.2
- proc-log: 3.0.0
- promise-inflight: 1.0.1
- promise-retry: 2.0.1
- semver: 7.7.2
- which: 3.0.1
- transitivePeerDependencies:
- - bluebird
-
- '@npmcli/package-json@4.0.1':
- dependencies:
- '@npmcli/git': 4.1.0
- glob: 10.3.10
- hosted-git-info: 6.1.1
- json-parse-even-better-errors: 3.0.2
- normalize-package-data: 5.0.0
- proc-log: 3.0.0
- semver: 7.6.2
- transitivePeerDependencies:
- - bluebird
-
- '@npmcli/promise-spawn@6.0.2':
- dependencies:
- which: 3.0.1
-
'@octokit/auth-token@5.1.1': {}
'@octokit/core@6.1.2':
@@ -16126,172 +13911,6 @@ snapshots:
dependencies:
'@octokit/openapi-types': 22.2.0
- '@pandacss/config@0.41.0':
- dependencies:
- '@pandacss/logger': 0.41.0
- '@pandacss/preset-base': 0.41.0
- '@pandacss/preset-panda': 0.41.0
- '@pandacss/shared': 0.41.0
- '@pandacss/types': 0.41.0
- bundle-n-require: 1.1.1
- escalade: 3.1.2
- merge-anything: 5.1.7
- microdiff: 1.3.2
- typescript: 5.4.5
-
- '@pandacss/core@0.41.0':
- dependencies:
- '@csstools/postcss-cascade-layers': 4.0.6(postcss@8.4.38)
- '@pandacss/is-valid-prop': 0.41.0
- '@pandacss/logger': 0.41.0
- '@pandacss/shared': 0.41.0
- '@pandacss/token-dictionary': 0.41.0
- '@pandacss/types': 0.41.0
- browserslist: 4.23.0
- hookable: 5.5.3
- lightningcss: 1.23.0
- lodash.merge: 4.6.2
- outdent: 0.8.0
- postcss: 8.4.38
- postcss-discard-duplicates: 7.0.0(postcss@8.4.38)
- postcss-discard-empty: 7.0.0(postcss@8.4.38)
- postcss-merge-rules: 7.0.0(postcss@8.4.38)
- postcss-minify-selectors: 7.0.0(postcss@8.4.38)
- postcss-nested: 6.0.1(postcss@8.4.38)
- postcss-normalize-whitespace: 7.0.0(postcss@8.4.38)
- postcss-selector-parser: 6.0.16
- ts-pattern: 5.0.8
-
- '@pandacss/dev@0.41.0(jsdom@20.0.3)(typescript@5.4.5)':
- dependencies:
- '@clack/prompts': 0.7.0
- '@pandacss/config': 0.41.0
- '@pandacss/logger': 0.41.0
- '@pandacss/node': 0.41.0(jsdom@20.0.3)(typescript@5.4.5)
- '@pandacss/postcss': 0.41.0(jsdom@20.0.3)(typescript@5.4.5)
- '@pandacss/preset-panda': 0.41.0
- '@pandacss/shared': 0.41.0
- '@pandacss/token-dictionary': 0.41.0
- '@pandacss/types': 0.41.0
- cac: 6.7.14
- transitivePeerDependencies:
- - jsdom
- - typescript
-
- '@pandacss/extractor@0.41.0(jsdom@20.0.3)(typescript@5.4.5)':
- dependencies:
- '@pandacss/shared': 0.41.0
- ts-evaluator: 1.2.0(jsdom@20.0.3)(typescript@5.4.5)
- ts-morph: 21.0.1
- transitivePeerDependencies:
- - jsdom
- - typescript
-
- '@pandacss/generator@0.41.0':
- dependencies:
- '@pandacss/core': 0.41.0
- '@pandacss/is-valid-prop': 0.41.0
- '@pandacss/logger': 0.41.0
- '@pandacss/shared': 0.41.0
- '@pandacss/token-dictionary': 0.41.0
- '@pandacss/types': 0.41.0
- javascript-stringify: 2.1.0
- outdent: 0.8.0
- pluralize: 8.0.0
- postcss: 8.4.38
- ts-pattern: 5.0.8
-
- '@pandacss/is-valid-prop@0.41.0': {}
-
- '@pandacss/logger@0.41.0':
- dependencies:
- '@pandacss/types': 0.41.0
- kleur: 4.1.5
-
- '@pandacss/node@0.41.0(jsdom@20.0.3)(typescript@5.4.5)':
- dependencies:
- '@pandacss/config': 0.41.0
- '@pandacss/core': 0.41.0
- '@pandacss/extractor': 0.41.0(jsdom@20.0.3)(typescript@5.4.5)
- '@pandacss/generator': 0.41.0
- '@pandacss/logger': 0.41.0
- '@pandacss/parser': 0.41.0(jsdom@20.0.3)(typescript@5.4.5)
- '@pandacss/shared': 0.41.0
- '@pandacss/token-dictionary': 0.41.0
- '@pandacss/types': 0.41.0
- browserslist: 4.23.0
- chokidar: 3.6.0
- fast-glob: 3.3.2
- file-size: 1.0.0
- filesize: 10.1.2
- fs-extra: 11.2.0
- glob-parent: 6.0.2
- is-glob: 4.0.3
- lodash.merge: 4.6.2
- look-it-up: 2.1.0
- outdent: 0.8.0
- perfect-debounce: 1.0.0
- pkg-types: 1.0.3
- pluralize: 8.0.0
- postcss: 8.4.38
- preferred-pm: 3.1.2
- prettier: 3.2.5
- ts-morph: 21.0.1
- ts-pattern: 5.0.8
- tsconfck: 3.0.2(typescript@5.4.5)
- transitivePeerDependencies:
- - jsdom
- - typescript
-
- '@pandacss/parser@0.41.0(jsdom@20.0.3)(typescript@5.4.5)':
- dependencies:
- '@pandacss/config': 0.41.0
- '@pandacss/core': 0.41.0
- '@pandacss/extractor': 0.41.0(jsdom@20.0.3)(typescript@5.4.5)
- '@pandacss/logger': 0.41.0
- '@pandacss/shared': 0.41.0
- '@pandacss/types': 0.41.0
- '@vue/compiler-sfc': 3.4.19
- magic-string: 0.30.10
- ts-morph: 21.0.1
- ts-pattern: 5.0.8
- transitivePeerDependencies:
- - jsdom
- - typescript
-
- '@pandacss/postcss@0.41.0(jsdom@20.0.3)(typescript@5.4.5)':
- dependencies:
- '@pandacss/node': 0.41.0(jsdom@20.0.3)(typescript@5.4.5)
- postcss: 8.4.38
- transitivePeerDependencies:
- - jsdom
- - typescript
-
- '@pandacss/preset-base@0.41.0':
- dependencies:
- '@pandacss/types': 0.41.0
-
- '@pandacss/preset-panda@0.15.5':
- dependencies:
- '@pandacss/types': 0.15.5
-
- '@pandacss/preset-panda@0.41.0':
- dependencies:
- '@pandacss/types': 0.41.0
-
- '@pandacss/shared@0.41.0': {}
-
- '@pandacss/token-dictionary@0.41.0':
- dependencies:
- '@pandacss/logger': 0.41.0
- '@pandacss/shared': 0.41.0
- '@pandacss/types': 0.41.0
- ts-pattern: 5.0.8
-
- '@pandacss/types@0.15.5': {}
-
- '@pandacss/types@0.41.0': {}
-
'@panva/hkdf@1.2.1': {}
'@pkgjs/parseargs@0.11.0':
@@ -16325,8 +13944,6 @@ snapshots:
'@polka/url@1.0.0-next.25': {}
- '@radix-ui/number@1.1.0': {}
-
'@radix-ui/number@1.1.1': {}
'@radix-ui/primitive@1.1.0': {}
@@ -16335,24 +13952,7 @@ snapshots:
'@radix-ui/primitive@1.1.3': {}
- '@radix-ui/react-accordion@1.2.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collapsible': 1.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
- '@radix-ui/react-accordion@1.2.12(@types/react-dom@18.3.7(@types/react@18.2.61))(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
+ '@radix-ui/react-accordion@1.2.12(@types/react-dom@18.3.7(@types/react@18.2.61))(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/primitive': 1.1.3
'@radix-ui/react-collapsible': 1.1.12(@types/react-dom@18.3.7(@types/react@18.2.61))(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
@@ -16419,18 +14019,6 @@ snapshots:
'@types/react': 18.2.61
'@types/react-dom': 18.3.7(@types/react@18.2.61)
- '@radix-ui/react-avatar@1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/react-context': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@radix-ui/react-avatar@1.1.11(@types/react-dom@18.3.7(@types/react@18.2.61))(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/react-context': 1.1.3(@types/react@18.2.61)(react@18.2.0)
@@ -16444,22 +14032,6 @@ snapshots:
'@types/react': 18.2.61
'@types/react-dom': 18.3.7(@types/react@18.2.61)
- '@radix-ui/react-checkbox@1.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-context': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@radix-ui/react-checkbox@1.3.3(@types/react-dom@18.3.7(@types/react@18.2.61))(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/primitive': 1.1.3
@@ -16476,22 +14048,6 @@ snapshots:
'@types/react': 18.2.61
'@types/react-dom': 18.3.7(@types/react@18.2.61)
- '@radix-ui/react-collapsible@1.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@radix-ui/react-collapsible@1.1.12(@types/react-dom@18.3.7(@types/react@18.2.61))(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/primitive': 1.1.3
@@ -16632,28 +14188,6 @@ snapshots:
'@types/react': 18.2.61
'@types/react-dom': 18.3.7(@types/react@18.2.61)
- '@radix-ui/react-dialog@1.1.2(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- aria-hidden: 1.2.4
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- react-remove-scroll: 2.6.0(@types/react@18.2.61)(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@radix-ui/react-direction@1.1.0(@types/react@18.2.61)(react@18.2.0)':
dependencies:
react: 18.2.0
@@ -16679,19 +14213,6 @@ snapshots:
'@types/react': 18.2.61
'@types/react-dom': 18.2.19
- '@radix-ui/react-dismissable-layer@1.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/primitive': 1.1.3
@@ -16767,12 +14288,6 @@ snapshots:
optionalDependencies:
'@types/react': 18.2.61
- '@radix-ui/react-focus-guards@1.1.1(@types/react@18.2.61)(react@18.2.0)':
- dependencies:
- react: 18.2.0
- optionalDependencies:
- '@types/react': 18.2.61
-
'@radix-ui/react-focus-guards@1.1.3(@types/react@18.2.61)(react@18.2.0)':
dependencies:
react: 18.2.0
@@ -16843,15 +14358,6 @@ snapshots:
optionalDependencies:
'@types/react': 18.2.61
- '@radix-ui/react-label@2.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@radix-ui/react-label@2.1.8(@types/react-dom@18.3.7(@types/react@18.2.61))(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@18.3.7(@types/react@18.2.61))(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
@@ -16931,28 +14437,6 @@ snapshots:
'@types/react': 18.2.61
'@types/react-dom': 18.3.7(@types/react@18.2.61)
- '@radix-ui/react-navigation-menu@1.2.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-context': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@radix-ui/react-navigation-menu@1.2.14(@types/react-dom@18.3.7(@types/react@18.2.61))(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/primitive': 1.1.3
@@ -17062,16 +14546,6 @@ snapshots:
'@types/react': 18.2.61
'@types/react-dom': 18.2.19
- '@radix-ui/react-portal@1.1.2(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@radix-ui/react-portal@1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
@@ -17112,16 +14586,6 @@ snapshots:
'@types/react': 18.2.61
'@types/react-dom': 18.2.19
- '@radix-ui/react-presence@1.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@radix-ui/react-presence@1.1.2(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@18.2.61)(react@18.2.0)
@@ -17293,35 +14757,6 @@ snapshots:
'@types/react': 18.2.61
'@types/react-dom': 18.3.7(@types/react@18.2.61)
- '@radix-ui/react-select@2.1.2(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- aria-hidden: 1.2.4
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- react-remove-scroll: 2.6.0(@types/react@18.2.61)(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@radix-ui/react-select@2.2.6(@types/react-dom@18.3.7(@types/react@18.2.61))(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/number': 1.1.1
@@ -17422,22 +14857,6 @@ snapshots:
'@types/react': 18.2.61
'@types/react-dom': 18.3.7(@types/react@18.2.61)
- '@radix-ui/react-tabs@1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.0
- '@radix-ui/react-context': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.61)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@radix-ui/react-tabs@1.1.13(@types/react-dom@18.3.7(@types/react@18.2.61))(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/primitive': 1.1.3
@@ -17587,12 +15006,6 @@ snapshots:
optionalDependencies:
'@types/react': 18.2.61
- '@radix-ui/react-use-previous@1.1.0(@types/react@18.2.61)(react@18.2.0)':
- dependencies:
- react: 18.2.0
- optionalDependencies:
- '@types/react': 18.2.61
-
'@radix-ui/react-use-previous@1.1.1(@types/react@18.2.61)(react@18.2.0)':
dependencies:
react: 18.2.0
@@ -17627,15 +15040,6 @@ snapshots:
optionalDependencies:
'@types/react': 18.2.61
- '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)
@@ -17690,101 +15094,6 @@ snapshots:
react: 18.2.0
react-dom: 18.3.1(react@18.2.0)
- '@remix-run/dev@2.10.3(@remix-run/react@2.10.3(react-dom@18.3.1(react@18.2.0))(react@18.2.0)(typescript@5.4.5))(@remix-run/serve@2.10.3(typescript@5.4.5))(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1)(ts-node@10.9.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/node@20.11.24)(typescript@5.4.5))(typescript@5.4.5)(vite@5.3.5(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1))':
- dependencies:
- '@babel/core': 7.24.7
- '@babel/generator': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7)
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
- '@mdx-js/mdx': 2.3.0
- '@npmcli/package-json': 4.0.1
- '@remix-run/node': 2.10.3(typescript@5.4.5)
- '@remix-run/react': 2.10.3(react-dom@18.3.1(react@18.2.0))(react@18.2.0)(typescript@5.4.5)
- '@remix-run/router': 1.18.0
- '@remix-run/server-runtime': 2.10.3(typescript@5.4.5)
- '@types/mdx': 2.0.13
- '@vanilla-extract/integration': 6.5.0(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1)
- arg: 5.0.2
- cacache: 17.1.4
- chalk: 4.1.2
- chokidar: 3.6.0
- cross-spawn: 7.0.3
- dotenv: 16.0.3
- es-module-lexer: 1.5.3
- esbuild: 0.17.6
- esbuild-plugins-node-modules-polyfill: 1.6.4(esbuild@0.17.6)
- execa: 5.1.1
- exit-hook: 2.2.1
- express: 4.19.2
- fs-extra: 10.1.0
- get-port: 5.1.1
- gunzip-maybe: 1.4.2
- jsesc: 3.0.2
- json5: 2.2.3
- lodash: 4.17.21
- lodash.debounce: 4.0.8
- minimatch: 9.0.4
- ora: 5.4.1
- picocolors: 1.0.1
- picomatch: 2.3.1
- pidtree: 0.6.0
- postcss: 8.4.38
- postcss-discard-duplicates: 5.1.0(postcss@8.4.38)
- postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/node@20.11.24)(typescript@5.4.5))
- postcss-modules: 6.0.0(postcss@8.4.38)
- prettier: 3.2.5
- pretty-ms: 7.0.1
- react-refresh: 0.14.2
- remark-frontmatter: 4.0.1
- remark-mdx-frontmatter: 1.1.1
- semver: 7.6.2
- set-cookie-parser: 2.6.0
- tar-fs: 2.1.1
- tsconfig-paths: 4.2.0
- ws: 7.5.10
- optionalDependencies:
- '@remix-run/serve': 2.10.3(typescript@5.4.5)
- typescript: 5.4.5
- vite: 5.3.5(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1)
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - bluebird
- - bufferutil
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - ts-node
- - utf-8-validate
-
- '@remix-run/express@2.10.3(express@4.19.2)(typescript@5.4.5)':
- dependencies:
- '@remix-run/node': 2.10.3(typescript@5.4.5)
- express: 4.19.2
- optionalDependencies:
- typescript: 5.4.5
-
- '@remix-run/node@2.10.3(typescript@5.4.5)':
- dependencies:
- '@remix-run/server-runtime': 2.10.3(typescript@5.4.5)
- '@remix-run/web-fetch': 4.4.2
- '@web3-storage/multipart-parser': 1.0.0
- cookie-signature: 1.2.1
- source-map-support: 0.5.21
- stream-slice: 0.1.2
- undici: 6.19.4
- optionalDependencies:
- typescript: 5.4.5
-
'@remix-run/react@2.10.3(react-dom@18.3.1(react@18.2.0))(react@18.2.0)(typescript@5.4.5)':
dependencies:
'@remix-run/router': 1.18.0
@@ -17796,22 +15105,10 @@ snapshots:
turbo-stream: 2.2.0
optionalDependencies:
typescript: 5.4.5
+ optional: true
- '@remix-run/router@1.18.0': {}
-
- '@remix-run/serve@2.10.3(typescript@5.4.5)':
- dependencies:
- '@remix-run/express': 2.10.3(express@4.19.2)(typescript@5.4.5)
- '@remix-run/node': 2.10.3(typescript@5.4.5)
- chokidar: 3.6.0
- compression: 1.7.4
- express: 4.19.2
- get-port: 5.1.1
- morgan: 1.10.0
- source-map-support: 0.5.21
- transitivePeerDependencies:
- - supports-color
- - typescript
+ '@remix-run/router@1.18.0':
+ optional: true
'@remix-run/server-runtime@2.10.3(typescript@5.4.5)':
dependencies:
@@ -17820,42 +15117,15 @@ snapshots:
'@web3-storage/multipart-parser': 1.0.0
cookie: 0.6.0
set-cookie-parser: 2.6.0
- source-map: 0.7.4
+ source-map: 0.7.6
turbo-stream: 2.2.0
optionalDependencies:
typescript: 5.4.5
+ optional: true
- '@remix-run/web-blob@3.1.0':
- dependencies:
- '@remix-run/web-stream': 1.1.0
- web-encoding: 1.1.5
+ '@rolldown/pluginutils@1.0.0-beta.27': {}
- '@remix-run/web-fetch@4.4.2':
- dependencies:
- '@remix-run/web-blob': 3.1.0
- '@remix-run/web-file': 3.1.0
- '@remix-run/web-form-data': 3.1.0
- '@remix-run/web-stream': 1.1.0
- '@web3-storage/multipart-parser': 1.0.0
- abort-controller: 3.0.0
- data-uri-to-buffer: 3.0.1
- mrmime: 1.0.1
-
- '@remix-run/web-file@3.1.0':
- dependencies:
- '@remix-run/web-blob': 3.1.0
-
- '@remix-run/web-form-data@3.1.0':
- dependencies:
- web-encoding: 1.1.5
-
- '@remix-run/web-stream@1.1.0':
- dependencies:
- web-streams-polyfill: 3.3.3
-
- '@rolldown/pluginutils@1.0.0-beta.27': {}
-
- '@rollup/plugin-babel@5.3.1(@babel/core@7.28.0)(@types/babel__core@7.20.5)(rollup@2.79.2)':
+ '@rollup/plugin-babel@5.3.1(@babel/core@7.28.0)(@types/babel__core@7.20.5)(rollup@2.79.2)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-module-imports': 7.24.7
@@ -17966,19 +15236,6 @@ snapshots:
'@rushstack/eslint-patch@1.5.1': {}
- '@shadow-panda/preset@0.7.1(@pandacss/dev@0.41.0(jsdom@20.0.3)(typescript@5.4.5))':
- dependencies:
- '@pandacss/dev': 0.41.0(jsdom@20.0.3)(typescript@5.4.5)
- '@pandacss/preset-panda': 0.15.5
-
- '@shadow-panda/style-context@0.7.1(@types/react-dom@18.2.19)(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
- '@types/react-dom': 18.2.19
-
'@sinclair/typebox@0.27.8': {}
'@sindresorhus/merge-streams@2.3.0': {}
@@ -19224,14 +16481,6 @@ snapshots:
'@tanstack/query-core': 5.45.0
react: 18.2.0
- '@tanstack/react-table@8.19.3(react-dom@18.3.1(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@tanstack/table-core': 8.19.3
- react: 18.2.0
- react-dom: 18.3.1(react@18.2.0)
-
- '@tanstack/table-core@8.19.3': {}
-
'@testing-library/dom@10.4.0':
dependencies:
'@babel/code-frame': 7.27.1
@@ -19291,61 +16540,17 @@ snapshots:
'@tootallnate/once@2.0.0':
optional: true
- '@tootallnate/quickjs-emscripten@0.23.0': {}
-
- '@ts-morph/common@0.22.0':
- dependencies:
- fast-glob: 3.3.2
- minimatch: 9.0.4
- mkdirp: 3.0.1
- path-browserify: 1.0.1
-
- '@tsconfig/node10@1.0.9': {}
-
- '@tsconfig/node12@1.0.11': {}
-
- '@tsconfig/node14@1.0.3': {}
-
- '@tsconfig/node16@1.0.4': {}
+ '@tsconfig/node10@1.0.9':
+ optional: true
- '@turbo/gen@1.12.4(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/node@20.11.24)(typescript@5.4.5)':
- dependencies:
- '@turbo/workspaces': 1.12.4
- chalk: 2.4.2
- commander: 10.0.1
- fs-extra: 10.1.0
- inquirer: 8.2.6
- minimatch: 9.0.4
- node-plop: 0.26.3
- proxy-agent: 6.3.0
- ts-node: 10.9.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/node@20.11.24)(typescript@5.4.5)
- update-check: 1.5.4
- validate-npm-package-name: 5.0.0
- transitivePeerDependencies:
- - '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- - supports-color
- - typescript
+ '@tsconfig/node12@1.0.11':
+ optional: true
- '@turbo/workspaces@1.12.4':
- dependencies:
- chalk: 2.4.2
- commander: 10.0.1
- execa: 5.1.1
- fast-glob: 3.3.2
- fs-extra: 10.1.0
- gradient-string: 2.0.2
- inquirer: 8.2.6
- js-yaml: 4.1.0
- ora: 4.1.1
- rimraf: 3.0.2
- semver: 7.7.2
- update-check: 1.5.4
+ '@tsconfig/node14@1.0.3':
+ optional: true
- '@types/acorn@4.0.6':
- dependencies:
- '@types/estree': 1.0.5
+ '@tsconfig/node16@1.0.4':
+ optional: true
'@types/aria-query@5.0.4': {}
@@ -19379,7 +16584,8 @@ snapshots:
dependencies:
'@types/node': 20.11.24
- '@types/cookie@0.6.0': {}
+ '@types/cookie@0.6.0':
+ optional: true
'@types/cross-spawn@6.0.6':
dependencies:
@@ -19414,6 +16620,7 @@ snapshots:
'@types/debug@4.1.12':
dependencies:
'@types/ms': 0.7.34
+ optional: true
'@types/detect-port@1.3.5': {}
@@ -19439,10 +16646,6 @@ snapshots:
'@types/estree': 1.0.5
'@types/json-schema': 7.0.12
- '@types/estree-jsx@1.0.5':
- dependencies:
- '@types/estree': 1.0.5
-
'@types/estree@0.0.39': {}
'@types/estree@0.0.51': {}
@@ -19484,10 +16687,6 @@ snapshots:
'@types/gtag.js@0.0.19': {}
- '@types/hast@2.3.10':
- dependencies:
- '@types/unist': 2.0.10
-
'@types/hast@3.0.4':
dependencies:
'@types/unist': 3.0.2
@@ -19498,11 +16697,6 @@ snapshots:
'@types/http-errors@2.0.4': {}
- '@types/inquirer@6.5.0':
- dependencies:
- '@types/through': 0.0.30
- rxjs: 6.6.7
-
'@types/istanbul-lib-coverage@2.0.6':
optional: true
@@ -19532,10 +16726,6 @@ snapshots:
'@types/lodash@4.17.5': {}
- '@types/mdast@3.0.15':
- dependencies:
- '@types/unist': 2.0.10
-
'@types/mdx@2.0.13': {}
'@types/mime@1.3.5': {}
@@ -19544,9 +16734,8 @@ snapshots:
'@types/mixpanel-browser@2.50.1': {}
- '@types/ms@0.7.34': {}
-
- '@types/node@17.0.45': {}
+ '@types/ms@0.7.34':
+ optional: true
'@types/node@18.19.34':
dependencies:
@@ -19619,16 +16808,8 @@ snapshots:
'@types/stack-utils@2.0.3':
optional: true
- '@types/through@0.0.30':
- dependencies:
- '@types/node': 20.11.24
-
- '@types/tinycolor2@1.4.6': {}
-
'@types/trusted-types@2.0.7': {}
- '@types/unist@2.0.10': {}
-
'@types/unist@3.0.2': {}
'@types/uuid@9.0.8': {}
@@ -19645,26 +16826,6 @@ snapshots:
'@types/yargs-parser': 21.0.3
optional: true
- '@typescript-eslint/eslint-plugin@6.17.0(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)':
- dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 6.17.0(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/scope-manager': 6.17.0
- '@typescript-eslint/type-utils': 6.17.0(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/utils': 6.17.0(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 6.17.0
- debug: 4.3.4
- eslint: 8.57.0
- graphemer: 1.4.0
- ignore: 5.3.1
- natural-compare: 1.4.0
- semver: 7.6.2
- ts-api-utils: 1.3.0(typescript@5.4.5)
- optionalDependencies:
- typescript: 5.4.5
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/eslint-plugin@6.17.0(@typescript-eslint/parser@6.17.0(eslint@9.34.0(jiti@2.6.1))(typescript@5.4.5))(eslint@9.34.0(jiti@2.6.1))(typescript@5.4.5)':
dependencies:
'@eslint-community/regexpp': 4.10.0
@@ -19725,19 +16886,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5)':
- dependencies:
- '@typescript-eslint/scope-manager': 6.17.0
- '@typescript-eslint/types': 6.17.0
- '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 6.17.0
- debug: 4.3.4
- eslint: 8.57.0
- optionalDependencies:
- typescript: 5.4.5
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/parser@6.17.0(eslint@9.34.0(jiti@2.6.1))(typescript@5.4.5)':
dependencies:
'@typescript-eslint/scope-manager': 6.17.0
@@ -19820,18 +16968,6 @@ snapshots:
'@typescript-eslint/types': 8.0.0-alpha.28
'@typescript-eslint/visitor-keys': 8.0.0-alpha.28
- '@typescript-eslint/type-utils@6.17.0(eslint@8.57.0)(typescript@5.4.5)':
- dependencies:
- '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.5)
- '@typescript-eslint/utils': 6.17.0(eslint@8.57.0)(typescript@5.4.5)
- debug: 4.3.4
- eslint: 8.57.0
- ts-api-utils: 1.3.0(typescript@5.4.5)
- optionalDependencies:
- typescript: 5.4.5
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/type-utils@6.17.0(eslint@9.34.0(jiti@2.6.1))(typescript@5.4.5)':
dependencies:
'@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.5)
@@ -19969,21 +17105,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.5)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@types/json-schema': 7.0.12
- '@types/semver': 7.5.0
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5)
- eslint: 8.57.0
- eslint-scope: 5.1.1
- semver: 7.7.2
- transitivePeerDependencies:
- - supports-color
- - typescript
-
'@typescript-eslint/utils@5.62.0(eslint@9.34.0(jiti@2.6.1))(typescript@5.4.5)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.34.0(jiti@2.6.1))
@@ -19999,20 +17120,6 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@6.17.0(eslint@8.57.0)(typescript@5.4.5)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@types/json-schema': 7.0.12
- '@types/semver': 7.5.0
- '@typescript-eslint/scope-manager': 6.17.0
- '@typescript-eslint/types': 6.17.0
- '@typescript-eslint/typescript-estree': 6.17.0(typescript@5.4.5)
- eslint: 8.57.0
- semver: 7.6.2
- transitivePeerDependencies:
- - supports-color
- - typescript
-
'@typescript-eslint/utils@6.17.0(eslint@9.34.0(jiti@2.6.1))(typescript@5.4.5)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.34.0(jiti@2.6.1))
@@ -20098,57 +17205,6 @@ snapshots:
'@ungap/structured-clone@1.2.0': {}
- '@vanilla-extract/babel-plugin-debug-ids@1.0.6':
- dependencies:
- '@babel/core': 7.28.0
- transitivePeerDependencies:
- - supports-color
-
- '@vanilla-extract/css@1.15.3':
- dependencies:
- '@emotion/hash': 0.9.2
- '@vanilla-extract/private': 1.0.5
- css-what: 6.1.0
- cssesc: 3.0.0
- csstype: 3.1.3
- dedent: 1.5.3
- deep-object-diff: 1.1.9
- deepmerge: 4.3.1
- media-query-parser: 2.0.2
- modern-ahocorasick: 1.0.1
- picocolors: 1.1.1
- transitivePeerDependencies:
- - babel-plugin-macros
-
- '@vanilla-extract/integration@6.5.0(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1)':
- dependencies:
- '@babel/core': 7.28.0
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.28.0)
- '@vanilla-extract/babel-plugin-debug-ids': 1.0.6
- '@vanilla-extract/css': 1.15.3
- esbuild: 0.17.6
- eval: 0.1.8
- find-up: 5.0.0
- javascript-stringify: 2.1.0
- lodash: 4.17.21
- mlly: 1.7.1
- outdent: 0.8.0
- vite: 5.4.21(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1)
- vite-node: 1.6.0(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1)
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
-
- '@vanilla-extract/private@1.0.5': {}
-
'@vercel/analytics@1.5.0(@remix-run/react@2.10.3(react-dom@18.3.1(react@18.2.0))(react@18.2.0)(typescript@5.4.5))(next@14.2.3(@babel/core@7.28.0)(react-dom@18.3.1(react@18.2.0))(react@18.2.0))(react@18.2.0)':
optionalDependencies:
'@remix-run/react': 2.10.3(react-dom@18.3.1(react@18.2.0))(react@18.2.0)(typescript@5.4.5)
@@ -20307,39 +17363,8 @@ snapshots:
loupe: 3.1.3
tinyrainbow: 2.0.0
- '@vue/compiler-core@3.4.19':
- dependencies:
- '@babel/parser': 7.28.0
- '@vue/shared': 3.4.19
- entities: 4.5.0
- estree-walker: 2.0.2
- source-map-js: 1.2.1
-
- '@vue/compiler-dom@3.4.19':
- dependencies:
- '@vue/compiler-core': 3.4.19
- '@vue/shared': 3.4.19
-
- '@vue/compiler-sfc@3.4.19':
- dependencies:
- '@babel/parser': 7.28.0
- '@vue/compiler-core': 3.4.19
- '@vue/compiler-dom': 3.4.19
- '@vue/compiler-ssr': 3.4.19
- '@vue/shared': 3.4.19
- estree-walker: 2.0.2
- magic-string: 0.30.17
- postcss: 8.5.6
- source-map-js: 1.2.1
-
- '@vue/compiler-ssr@3.4.19':
- dependencies:
- '@vue/compiler-dom': 3.4.19
- '@vue/shared': 3.4.19
-
- '@vue/shared@3.4.19': {}
-
- '@web3-storage/multipart-parser@1.0.0': {}
+ '@web3-storage/multipart-parser@1.0.0':
+ optional: true
'@webassemblyjs/ast@1.12.1':
dependencies:
@@ -20438,9 +17463,6 @@ snapshots:
'@types/emscripten': 1.39.13
tslib: 1.14.1
- '@zxing/text-encoding@0.9.0':
- optional: true
-
abab@2.0.6:
optional: true
@@ -20471,10 +17493,6 @@ snapshots:
dependencies:
acorn: 8.10.0
- acorn-jsx@5.3.2(acorn@8.11.3):
- dependencies:
- acorn: 8.11.3
-
acorn-jsx@5.3.2(acorn@8.15.0):
dependencies:
acorn: 8.15.0
@@ -20511,11 +17529,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- aggregate-error@3.1.0:
- dependencies:
- clean-stack: 2.2.0
- indent-string: 4.0.0
-
ajv-formats@2.1.1(ajv@8.16.0):
optionalDependencies:
ajv: 8.16.0
@@ -20543,11 +17556,10 @@ snapshots:
require-from-string: 2.0.2
uri-js: 4.4.1
- ansi-colors@4.1.3: {}
-
ansi-escapes@4.3.2:
dependencies:
type-fest: 0.21.3
+ optional: true
ansi-escapes@6.2.1: {}
@@ -20580,13 +17592,15 @@ snapshots:
app-root-dir@1.0.2: {}
- arg@4.1.3: {}
+ arg@4.1.3:
+ optional: true
arg@5.0.2: {}
argparse@1.0.10:
dependencies:
sprintf-js: 1.0.3
+ optional: true
argparse@2.0.1: {}
@@ -20679,14 +17693,6 @@ snapshots:
es-abstract: 1.24.1
es-shim-unscopables: 1.0.2
- array.prototype.tosorted@1.1.2:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.22.3
- es-shim-unscopables: 1.0.2
- get-intrinsic: 1.2.4
-
array.prototype.tosorted@1.1.4:
dependencies:
call-bind: 1.0.7
@@ -20735,16 +17741,10 @@ snapshots:
ast-types-flow@0.0.8: {}
- ast-types@0.13.4:
- dependencies:
- tslib: 2.6.2
-
ast-types@0.16.1:
dependencies:
tslib: 2.6.2
- astring@1.8.6: {}
-
async@3.2.5: {}
asynciterator.prototype@1.0.0:
@@ -20888,8 +17888,6 @@ snapshots:
babel-preset-current-node-syntax: 1.1.0(@babel/core@7.28.3)
optional: true
- bail@2.0.2: {}
-
balanced-match@1.0.2: {}
base64-arraybuffer@1.0.2: {}
@@ -20898,12 +17896,6 @@ snapshots:
baseline-browser-mapping@2.9.14: {}
- basic-auth@2.0.1:
- dependencies:
- safe-buffer: 5.1.2
-
- basic-ftp@5.0.3: {}
-
before-after-hook@3.0.2: {}
better-opn@3.0.2:
@@ -21016,13 +18008,6 @@ snapshots:
dependencies:
pako: 1.0.11
- browserslist@4.23.0:
- dependencies:
- caniuse-lite: 1.0.30001633
- electron-to-chromium: 1.4.802
- node-releases: 2.0.14
- update-browserslist-db: 1.0.16(browserslist@4.23.0)
-
browserslist@4.23.1:
dependencies:
caniuse-lite: 1.0.30001764
@@ -21070,15 +18055,6 @@ snapshots:
builtin-status-codes@3.0.0: {}
- builtins@5.0.1:
- dependencies:
- semver: 7.7.2
-
- bundle-n-require@1.1.1:
- dependencies:
- esbuild: 0.20.2
- node-eval: 2.0.0
-
bundle-name@3.0.0:
dependencies:
run-applescript: 5.0.0
@@ -21098,21 +18074,6 @@ snapshots:
cac@6.7.14: {}
- cacache@17.1.4:
- dependencies:
- '@npmcli/fs': 3.1.1
- fs-minipass: 3.0.3
- glob: 10.3.10
- lru-cache: 7.18.3
- minipass: 7.0.4
- minipass-collect: 1.0.2
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- p-map: 4.0.0
- ssri: 10.0.6
- tar: 6.2.1
- unique-filename: 3.0.0
-
call-bind-apply-helpers@1.0.2:
dependencies:
es-errors: 1.3.0
@@ -21140,11 +18101,6 @@ snapshots:
callsites@3.1.0: {}
- camel-case@3.0.0:
- dependencies:
- no-case: 2.3.2
- upper-case: 1.1.3
-
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
@@ -21158,21 +18114,12 @@ snapshots:
camelcase@6.3.0:
optional: true
- caniuse-api@3.0.0:
- dependencies:
- browserslist: 4.28.1
- caniuse-lite: 1.0.30001764
- lodash.memoize: 4.1.2
- lodash.uniq: 4.5.0
-
caniuse-lite@1.0.30001633: {}
caniuse-lite@1.0.30001764: {}
case-sensitive-paths-webpack-plugin@2.4.0: {}
- ccount@2.0.1: {}
-
chai@4.4.1:
dependencies:
assertion-error: 1.1.0
@@ -21209,43 +18156,12 @@ snapshots:
chalk@5.3.0: {}
- change-case@3.1.0:
- dependencies:
- camel-case: 3.0.0
- constant-case: 2.0.0
- dot-case: 2.1.1
- header-case: 1.0.1
- is-lower-case: 1.1.3
- is-upper-case: 1.1.2
- lower-case: 1.1.4
- lower-case-first: 1.0.2
- no-case: 2.3.2
- param-case: 2.1.1
- pascal-case: 2.0.1
- path-case: 2.1.1
- sentence-case: 2.1.1
- snake-case: 2.1.0
- swap-case: 1.1.2
- title-case: 2.1.1
- upper-case: 1.1.3
- upper-case-first: 1.1.2
-
char-regex@1.0.2:
optional: true
- character-entities-html4@2.1.0: {}
-
- character-entities-legacy@3.0.0: {}
-
- character-entities@2.0.2: {}
-
- character-reference-invalid@2.0.1: {}
-
- chardet@0.7.0: {}
-
- check-error@1.0.3:
- dependencies:
- get-func-name: 2.0.2
+ check-error@1.0.3:
+ dependencies:
+ get-func-name: 2.0.2
check-error@2.1.1: {}
@@ -21300,8 +18216,6 @@ snapshots:
dependencies:
escape-string-regexp: 1.0.5
- clean-stack@2.2.0: {}
-
clean-webpack-plugin@4.0.0(webpack@5.92.0(@swc/core@1.15.7(@swc/helpers@0.5.5))(esbuild@0.20.2)):
dependencies:
del: 4.1.1
@@ -21328,8 +18242,6 @@ snapshots:
slice-ansi: 5.0.0
string-width: 7.1.0
- cli-width@3.0.0: {}
-
client-only@0.0.1: {}
cliui@8.0.1:
@@ -21364,8 +18276,6 @@ snapshots:
co@4.6.0:
optional: true
- code-block-writer@12.0.0: {}
-
collect-v8-coverage@1.0.2:
optional: true
@@ -21399,10 +18309,6 @@ snapshots:
dependencies:
delayed-stream: 1.0.0
- comma-separated-tokens@2.0.3: {}
-
- commander@10.0.1: {}
-
commander@12.1.0: {}
commander@2.20.3: {}
@@ -21439,8 +18345,6 @@ snapshots:
concat-map@0.0.1: {}
- confbox@0.1.7: {}
-
confbox@0.1.8: {}
consola@3.2.3: {}
@@ -21449,11 +18353,6 @@ snapshots:
console-browserify@1.2.0: {}
- constant-case@2.0.0:
- dependencies:
- snake-case: 2.1.0
- upper-case: 1.1.3
-
constants-browserify@1.0.0: {}
content-disposition@0.5.4:
@@ -21468,8 +18367,6 @@ snapshots:
cookie-signature@1.0.6: {}
- cookie-signature@1.2.1: {}
-
cookie@0.5.0: {}
cookie@0.6.0: {}
@@ -21539,7 +18436,8 @@ snapshots:
- ts-node
optional: true
- create-require@1.1.1: {}
+ create-require@1.1.1:
+ optional: true
cross-spawn@7.0.3:
dependencies:
@@ -21553,10 +18451,6 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
- crosspath@2.0.0:
- dependencies:
- '@types/node': 17.0.45
-
crypto-browserify@3.12.0:
dependencies:
browserify-cipher: 1.0.1
@@ -21604,10 +18498,6 @@ snapshots:
cssesc@3.0.0: {}
- cssnano-utils@5.0.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
cssom@0.3.8:
optional: true
@@ -21663,10 +18553,6 @@ snapshots:
damerau-levenshtein@1.0.8: {}
- data-uri-to-buffer@3.0.1: {}
-
- data-uri-to-buffer@5.0.1: {}
-
data-urls@3.0.2:
dependencies:
abab: 2.0.6
@@ -21719,13 +18605,10 @@ snapshots:
decimal.js@10.6.0:
optional: true
- decode-named-character-reference@1.0.2:
- dependencies:
- character-entities: 2.0.2
-
dedent@0.7.0: {}
- dedent@1.5.3: {}
+ dedent@1.5.3:
+ optional: true
deep-eql@4.1.4:
dependencies:
@@ -21754,12 +18637,8 @@ snapshots:
which-collection: 1.0.1
which-typed-array: 1.1.13
- deep-extend@0.6.0: {}
-
deep-is@0.1.4: {}
- deep-object-diff@1.1.9: {}
-
deepmerge@4.3.1: {}
default-browser-id@3.0.0:
@@ -21796,12 +18675,6 @@ snapshots:
defu@6.1.4: {}
- degenerator@5.0.1:
- dependencies:
- ast-types: 0.13.4
- escodegen: 2.1.0
- esprima: 4.0.1
-
del@4.1.1:
dependencies:
'@types/glob': 7.2.0
@@ -21812,17 +18685,6 @@ snapshots:
pify: 4.0.1
rimraf: 2.6.3
- del@5.1.0:
- dependencies:
- globby: 10.0.2
- graceful-fs: 4.2.11
- is-glob: 4.0.3
- is-path-cwd: 2.2.0
- is-path-inside: 3.0.3
- p-map: 3.0.0
- rimraf: 3.0.2
- slash: 3.0.0
-
delayed-stream@1.0.0: {}
depd@2.0.0: {}
@@ -21840,8 +18702,6 @@ snapshots:
detect-indent@7.0.1: {}
- detect-libc@1.0.3: {}
-
detect-libc@2.0.3: {}
detect-newline@3.1.0:
@@ -21866,7 +18726,8 @@ snapshots:
diff-sequences@29.6.3: {}
- diff@4.0.2: {}
+ diff@4.0.2:
+ optional: true
diff@5.2.0: {}
@@ -21928,10 +18789,6 @@ snapshots:
domelementtype: 2.3.0
domhandler: 4.3.1
- dot-case@2.1.1:
- dependencies:
- no-case: 2.3.2
-
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
@@ -22031,8 +18888,6 @@ snapshots:
entities@2.2.0: {}
- entities@4.5.0: {}
-
entities@6.0.1:
optional: true
@@ -22040,8 +18895,6 @@ snapshots:
envinfo@7.13.0: {}
- err-code@2.0.3: {}
-
error-ex@1.3.2:
dependencies:
is-arrayish: 0.2.1
@@ -22244,13 +19097,6 @@ snapshots:
esbuild-plugin-alias@0.2.1: {}
- esbuild-plugins-node-modules-polyfill@1.6.4(esbuild@0.17.6):
- dependencies:
- '@jspm/core': 2.0.1
- esbuild: 0.17.6
- local-pkg: 0.5.0
- resolve.exports: 2.0.2
-
esbuild-register@3.5.0(esbuild@0.20.2):
dependencies:
debug: 4.4.0
@@ -22265,31 +19111,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- esbuild@0.17.6:
- optionalDependencies:
- '@esbuild/android-arm': 0.17.6
- '@esbuild/android-arm64': 0.17.6
- '@esbuild/android-x64': 0.17.6
- '@esbuild/darwin-arm64': 0.17.6
- '@esbuild/darwin-x64': 0.17.6
- '@esbuild/freebsd-arm64': 0.17.6
- '@esbuild/freebsd-x64': 0.17.6
- '@esbuild/linux-arm': 0.17.6
- '@esbuild/linux-arm64': 0.17.6
- '@esbuild/linux-ia32': 0.17.6
- '@esbuild/linux-loong64': 0.17.6
- '@esbuild/linux-mips64el': 0.17.6
- '@esbuild/linux-ppc64': 0.17.6
- '@esbuild/linux-riscv64': 0.17.6
- '@esbuild/linux-s390x': 0.17.6
- '@esbuild/linux-x64': 0.17.6
- '@esbuild/netbsd-x64': 0.17.6
- '@esbuild/openbsd-x64': 0.17.6
- '@esbuild/sunos-x64': 0.17.6
- '@esbuild/win32-arm64': 0.17.6
- '@esbuild/win32-ia32': 0.17.6
- '@esbuild/win32-x64': 0.17.6
-
esbuild@0.20.2:
optionalDependencies:
'@esbuild/aix-ppc64': 0.20.2
@@ -22464,23 +19285,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.57.0):
- dependencies:
- debug: 4.3.4
- enhanced-resolve: 5.17.0
- eslint: 8.57.0
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
- fast-glob: 3.3.2
- get-tsconfig: 4.7.2
- is-core-module: 2.13.1
- is-glob: 4.0.3
- transitivePeerDependencies:
- - '@typescript-eslint/parser'
- - eslint-import-resolver-node
- - eslint-import-resolver-webpack
- - supports-color
-
eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@9.34.0(jiti@2.6.1))(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@9.34.0(jiti@2.6.1)):
dependencies:
debug: 4.3.4
@@ -22532,17 +19336,6 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0):
- dependencies:
- debug: 3.2.7
- optionalDependencies:
- '@typescript-eslint/parser': 6.17.0(eslint@8.57.0)(typescript@5.4.5)
- eslint: 8.57.0
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.57.0)
- transitivePeerDependencies:
- - supports-color
-
eslint-module-utils@2.8.0(@typescript-eslint/parser@6.17.0(eslint@9.34.0(jiti@2.6.1))(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@9.34.0(jiti@2.6.1))(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@9.34.0(jiti@2.6.1)))(eslint@9.34.0(jiti@2.6.1)):
dependencies:
debug: 3.2.7
@@ -22582,33 +19375,6 @@ snapshots:
eslint: 9.34.0(jiti@2.6.1)
ignore: 5.3.1
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
- dependencies:
- array-includes: 3.1.7
- array.prototype.findlastindex: 1.2.3
- array.prototype.flat: 1.3.2
- array.prototype.flatmap: 1.3.2
- debug: 3.2.7
- doctrine: 2.1.0
- eslint: 8.57.0
- eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.17.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0)
- hasown: 2.0.0
- is-core-module: 2.13.1
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.fromentries: 2.0.7
- object.groupby: 1.0.1
- object.values: 1.1.7
- semver: 6.3.1
- tsconfig-paths: 3.15.0
- optionalDependencies:
- '@typescript-eslint/parser': 6.17.0(eslint@8.57.0)(typescript@5.4.5)
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
-
eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.17.0(eslint@9.34.0(jiti@2.6.1))(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@9.34.0(jiti@2.6.1)):
dependencies:
array-includes: 3.1.7
@@ -22777,26 +19543,6 @@ snapshots:
dependencies:
eslint: 9.34.0(jiti@2.6.1)
- eslint-plugin-react@7.33.2(eslint@8.57.0):
- dependencies:
- array-includes: 3.1.7
- array.prototype.flatmap: 1.3.2
- array.prototype.tosorted: 1.1.2
- doctrine: 2.1.0
- es-iterator-helpers: 1.0.15
- eslint: 8.57.0
- estraverse: 5.3.0
- jsx-ast-utils: 3.3.5
- minimatch: 3.1.2
- object.entries: 1.1.7
- object.fromentries: 2.0.7
- object.hasown: 1.1.3
- object.values: 1.1.7
- prop-types: 15.8.1
- resolve: 2.0.0-next.5
- semver: 6.3.1
- string.prototype.matchall: 4.0.10
-
eslint-plugin-react@7.37.5(eslint@8.57.0):
dependencies:
array-includes: 3.1.9
@@ -22849,17 +19595,6 @@ snapshots:
dependencies:
eslint: 9.34.0(jiti@2.6.1)
- eslint-plugin-storybook@0.8.0(eslint@8.57.0)(typescript@5.4.5):
- dependencies:
- '@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
- eslint: 8.57.0
- requireindex: 1.2.0
- ts-dedent: 2.2.0
- transitivePeerDependencies:
- - supports-color
- - typescript
-
eslint-plugin-storybook@0.8.0(eslint@9.34.0(jiti@2.6.1))(typescript@5.4.5):
dependencies:
'@storybook/csf': 0.0.1
@@ -23056,35 +19791,6 @@ snapshots:
estraverse@5.3.0: {}
- estree-util-attach-comments@2.1.1:
- dependencies:
- '@types/estree': 1.0.5
-
- estree-util-build-jsx@2.2.2:
- dependencies:
- '@types/estree-jsx': 1.0.5
- estree-util-is-identifier-name: 2.1.0
- estree-walker: 3.0.3
-
- estree-util-is-identifier-name@1.1.0: {}
-
- estree-util-is-identifier-name@2.1.0: {}
-
- estree-util-to-js@1.2.0:
- dependencies:
- '@types/estree-jsx': 1.0.5
- astring: 1.8.6
- source-map: 0.7.4
-
- estree-util-value-to-estree@1.3.0:
- dependencies:
- is-plain-obj: 3.0.0
-
- estree-util-visit@1.2.1:
- dependencies:
- '@types/estree-jsx': 1.0.5
- '@types/unist': 2.0.10
-
estree-walker@1.0.1: {}
estree-walker@2.0.2: {}
@@ -23097,11 +19803,6 @@ snapshots:
etag@1.8.1: {}
- eval@0.1.8:
- dependencies:
- '@types/node': 20.11.24
- require-like: 0.1.2
-
event-target-shim@5.0.1: {}
eventemitter3@4.0.7: {}
@@ -23151,8 +19852,6 @@ snapshots:
signal-exit: 4.1.0
strip-final-newline: 3.0.0
- exit-hook@2.2.1: {}
-
exit@0.1.2:
optional: true
@@ -23205,12 +19904,6 @@ snapshots:
extend@3.0.2: {}
- external-editor@3.1.0:
- dependencies:
- chardet: 0.7.0
- iconv-lite: 0.4.24
- tmp: 0.0.33
-
fast-deep-equal@3.1.3: {}
fast-diff@1.3.0: {}
@@ -23235,10 +19928,6 @@ snapshots:
dependencies:
reusify: 1.0.4
- fault@2.0.1:
- dependencies:
- format: 0.2.2
-
fb-watchman@2.0.2:
dependencies:
bser: 2.1.1
@@ -23252,10 +19941,6 @@ snapshots:
fflate@0.4.8: {}
- figures@3.2.0:
- dependencies:
- escape-string-regexp: 1.0.5
-
file-entry-cache@6.0.1:
dependencies:
flat-cache: 3.0.4
@@ -23264,8 +19949,6 @@ snapshots:
dependencies:
flat-cache: 4.0.1
- file-size@1.0.0: {}
-
file-system-cache@2.3.0:
dependencies:
fs-extra: 11.1.1
@@ -23331,11 +20014,6 @@ snapshots:
locate-path: 7.2.0
path-exists: 5.0.0
- find-yarn-workspace-root2@1.2.16:
- dependencies:
- micromatch: 4.0.8
- pkg-dir: 4.2.0
-
fix-dts-default-cjs-exports@1.0.1:
dependencies:
magic-string: 0.30.21
@@ -23396,8 +20074,6 @@ snapshots:
combined-stream: 1.0.8
mime-types: 2.1.35
- format@0.2.2: {}
-
forwarded@0.2.0: {}
fraction.js@5.3.4: {}
@@ -23442,12 +20118,6 @@ snapshots:
jsonfile: 6.1.0
universalify: 2.0.0
- fs-extra@8.1.0:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
-
fs-extra@9.1.0:
dependencies:
at-least-node: 1.0.0
@@ -23459,10 +20129,6 @@ snapshots:
dependencies:
minipass: 3.3.6
- fs-minipass@3.0.3:
- dependencies:
- minipass: 7.0.4
-
fs-monkey@1.0.6: {}
fs.realpath@1.0.0: {}
@@ -23509,10 +20175,6 @@ snapshots:
- encoding
- supports-color
- generic-names@4.0.0:
- dependencies:
- loader-utils: 3.3.1
-
gensync@1.0.0-beta.2: {}
get-caller-file@2.0.5:
@@ -23552,8 +20214,6 @@ snapshots:
get-package-type@0.1.0:
optional: true
- get-port@5.1.1: {}
-
get-proto@1.0.1:
dependencies:
dunder-proto: 1.0.1
@@ -23580,15 +20240,6 @@ snapshots:
dependencies:
resolve-pkg-maps: 1.0.0
- get-uri@6.0.1:
- dependencies:
- basic-ftp: 5.0.3
- data-uri-to-buffer: 5.0.1
- debug: 4.4.0
- fs-extra: 8.1.0
- transitivePeerDependencies:
- - supports-color
-
giget@1.2.3:
dependencies:
citty: 0.1.6
@@ -23657,17 +20308,6 @@ snapshots:
define-properties: 1.2.1
gopd: 1.2.0
- globby@10.0.2:
- dependencies:
- '@types/glob': 7.2.0
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.2
- glob: 7.2.3
- ignore: 5.3.1
- merge2: 1.4.1
- slash: 3.0.0
-
globby@11.1.0:
dependencies:
array-union: 2.1.0
@@ -23702,8 +20342,6 @@ snapshots:
pify: 2.3.0
pinkie-promise: 2.0.1
- globrex@0.1.2: {}
-
google-auth-library@9.11.0:
dependencies:
base64-js: 1.5.1
@@ -23733,11 +20371,6 @@ snapshots:
graceful-fs@4.2.11: {}
- gradient-string@2.0.2:
- dependencies:
- chalk: 4.1.2
- tinygradient: 1.1.5
-
graphemer@1.4.0: {}
gtoken@7.1.0:
@@ -23830,53 +20463,20 @@ snapshots:
dependencies:
'@types/hast': 3.0.4
- hast-util-to-estree@2.3.3:
- dependencies:
- '@types/estree': 1.0.5
- '@types/estree-jsx': 1.0.5
- '@types/hast': 2.3.10
- '@types/unist': 2.0.10
- comma-separated-tokens: 2.0.3
- estree-util-attach-comments: 2.1.1
- estree-util-is-identifier-name: 2.1.0
- hast-util-whitespace: 2.0.1
- mdast-util-mdx-expression: 1.3.2
- mdast-util-mdxjs-esm: 1.3.1
- property-information: 6.5.0
- space-separated-tokens: 2.0.2
- style-to-object: 0.4.4
- unist-util-position: 4.0.4
- zwitch: 2.0.4
- transitivePeerDependencies:
- - supports-color
-
hast-util-to-string@3.0.0:
dependencies:
'@types/hast': 3.0.4
- hast-util-whitespace@2.0.1: {}
-
he@1.2.0: {}
- header-case@1.0.1:
- dependencies:
- no-case: 2.3.2
- upper-case: 1.1.3
-
hmac-drbg@1.0.1:
dependencies:
hash.js: 1.1.7
minimalistic-assert: 1.0.1
minimalistic-crypto-utils: 1.0.1
- hookable@5.5.3: {}
-
hosted-git-info@2.8.9: {}
- hosted-git-info@6.1.1:
- dependencies:
- lru-cache: 7.18.3
-
html-encoding-sniffer@3.0.0:
dependencies:
whatwg-encoding: 2.0.0
@@ -23936,13 +20536,6 @@ snapshots:
- supports-color
optional: true
- http-proxy-agent@7.0.0:
- dependencies:
- agent-base: 7.1.0
- debug: 4.4.0
- transitivePeerDependencies:
- - supports-color
-
https-browserify@1.0.0: {}
https-proxy-agent@5.0.1:
@@ -23987,10 +20580,6 @@ snapshots:
safer-buffer: 2.1.2
optional: true
- icss-utils@5.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
icss-utils@5.1.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
@@ -24027,49 +20616,11 @@ snapshots:
inherits@2.0.4: {}
- ini@1.3.8: {}
-
- inline-style-parser@0.1.1: {}
-
input-otp@1.4.2(react-dom@18.3.1(react@18.2.0))(react@18.2.0):
dependencies:
react: 18.2.0
react-dom: 18.3.1(react@18.2.0)
- inquirer@7.3.3:
- dependencies:
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- cli-cursor: 3.1.0
- cli-width: 3.0.0
- external-editor: 3.1.0
- figures: 3.2.0
- lodash: 4.17.21
- mute-stream: 0.0.8
- run-async: 2.4.1
- rxjs: 6.6.7
- string-width: 4.2.3
- strip-ansi: 6.0.1
- through: 2.3.8
-
- inquirer@8.2.6:
- dependencies:
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- cli-cursor: 3.1.0
- cli-width: 3.0.0
- external-editor: 3.1.0
- figures: 3.2.0
- lodash: 4.17.21
- mute-stream: 0.0.8
- ora: 5.4.1
- run-async: 2.4.1
- rxjs: 7.8.1
- string-width: 4.2.3
- strip-ansi: 6.0.1
- through: 2.3.8
- wrap-ansi: 6.2.0
-
internal-slot@1.0.6:
dependencies:
get-intrinsic: 1.2.4
@@ -24095,21 +20646,10 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- ip@1.1.8: {}
-
- ip@2.0.0: {}
-
ipaddr.js@1.9.1: {}
is-absolute-url@4.0.1: {}
- is-alphabetical@2.0.1: {}
-
- is-alphanumerical@2.0.1:
- dependencies:
- is-alphabetical: 2.0.1
- is-decimal: 2.0.1
-
is-arguments@1.1.1:
dependencies:
call-bind: 1.0.7
@@ -24158,8 +20698,6 @@ snapshots:
call-bound: 1.0.4
has-tostringtag: 1.0.2
- is-buffer@2.0.5: {}
-
is-builtin-module@3.2.1:
dependencies:
builtin-modules: 3.3.0
@@ -24185,8 +20723,6 @@ snapshots:
call-bound: 1.0.4
has-tostringtag: 1.0.2
- is-decimal@2.0.1: {}
-
is-deflate@1.0.0: {}
is-docker@2.2.1: {}
@@ -24224,18 +20760,12 @@ snapshots:
is-gzip@1.0.0: {}
- is-hexadecimal@2.0.1: {}
-
is-inside-container@1.0.0:
dependencies:
is-docker: 3.0.0
is-interactive@1.0.0: {}
- is-lower-case@1.1.3:
- dependencies:
- lower-case: 1.1.4
-
is-map@2.0.2: {}
is-map@2.0.3: {}
@@ -24276,8 +20806,6 @@ snapshots:
is-path-inside@3.0.3: {}
- is-plain-obj@3.0.0: {}
-
is-plain-obj@4.1.0: {}
is-plain-object@2.0.4:
@@ -24289,10 +20817,6 @@ snapshots:
is-potential-custom-element-name@1.0.1:
optional: true
- is-reference@3.0.2:
- dependencies:
- '@types/estree': 1.0.5
-
is-regex@1.1.4:
dependencies:
call-bind: 1.0.7
@@ -24352,10 +20876,6 @@ snapshots:
is-unicode-supported@0.1.0: {}
- is-upper-case@1.1.2:
- dependencies:
- upper-case: 1.1.3
-
is-weakmap@2.0.1: {}
is-weakmap@2.0.2: {}
@@ -24378,8 +20898,6 @@ snapshots:
call-bound: 1.0.4
get-intrinsic: 1.3.0
- is-what@4.1.16: {}
-
is-wsl@2.2.0:
dependencies:
is-docker: 2.2.1
@@ -24388,10 +20906,6 @@ snapshots:
isarray@2.0.5: {}
- isbinaryfile@4.0.10: {}
-
- isbot@4.4.0: {}
-
isexe@2.0.0: {}
isobject@3.0.1: {}
@@ -24479,8 +20993,6 @@ snapshots:
filelist: 1.0.4
minimatch: 3.1.2
- javascript-stringify@2.1.0: {}
-
jest-changed-files@29.7.0:
dependencies:
execa: 5.1.1
@@ -24851,6 +21363,7 @@ snapshots:
dependencies:
argparse: 1.0.10
esprima: 4.0.1
+ optional: true
js-yaml@4.1.0:
dependencies:
@@ -24933,8 +21446,6 @@ snapshots:
json-parse-even-better-errors@2.3.1: {}
- json-parse-even-better-errors@3.0.2: {}
-
json-schema-traverse@0.4.1: {}
json-schema-traverse@1.0.0: {}
@@ -24949,12 +21460,6 @@ snapshots:
json5@2.2.3: {}
- jsonc-parser@3.2.1: {}
-
- jsonfile@4.0.0:
- optionalDependencies:
- graceful-fs: 4.2.11
-
jsonfile@6.1.0:
dependencies:
universalify: 2.0.0
@@ -24989,8 +21494,6 @@ snapshots:
kleur@3.0.3: {}
- kleur@4.1.5: {}
-
klona@2.0.6: {}
ky@1.14.1: {}
@@ -25017,77 +21520,36 @@ snapshots:
lightningcss-android-arm64@1.30.2:
optional: true
- lightningcss-darwin-arm64@1.23.0:
- optional: true
-
lightningcss-darwin-arm64@1.30.2:
optional: true
- lightningcss-darwin-x64@1.23.0:
- optional: true
-
lightningcss-darwin-x64@1.30.2:
optional: true
- lightningcss-freebsd-x64@1.23.0:
- optional: true
-
lightningcss-freebsd-x64@1.30.2:
optional: true
- lightningcss-linux-arm-gnueabihf@1.23.0:
- optional: true
-
lightningcss-linux-arm-gnueabihf@1.30.2:
optional: true
- lightningcss-linux-arm64-gnu@1.23.0:
- optional: true
-
lightningcss-linux-arm64-gnu@1.30.2:
optional: true
- lightningcss-linux-arm64-musl@1.23.0:
- optional: true
-
lightningcss-linux-arm64-musl@1.30.2:
optional: true
- lightningcss-linux-x64-gnu@1.23.0:
- optional: true
-
lightningcss-linux-x64-gnu@1.30.2:
optional: true
- lightningcss-linux-x64-musl@1.23.0:
- optional: true
-
lightningcss-linux-x64-musl@1.30.2:
optional: true
lightningcss-win32-arm64-msvc@1.30.2:
optional: true
- lightningcss-win32-x64-msvc@1.23.0:
- optional: true
-
lightningcss-win32-x64-msvc@1.30.2:
optional: true
- lightningcss@1.23.0:
- dependencies:
- detect-libc: 1.0.3
- optionalDependencies:
- lightningcss-darwin-arm64: 1.23.0
- lightningcss-darwin-x64: 1.23.0
- lightningcss-freebsd-x64: 1.23.0
- lightningcss-linux-arm-gnueabihf: 1.23.0
- lightningcss-linux-arm64-gnu: 1.23.0
- lightningcss-linux-arm64-musl: 1.23.0
- lightningcss-linux-x64-gnu: 1.23.0
- lightningcss-linux-x64-musl: 1.23.0
- lightningcss-win32-x64-msvc: 1.23.0
-
lightningcss@1.30.2:
dependencies:
detect-libc: 2.0.3
@@ -25136,13 +21598,6 @@ snapshots:
load-tsconfig@0.2.5: {}
- load-yaml-file@0.2.0:
- dependencies:
- graceful-fs: 4.2.11
- js-yaml: 3.14.1
- pify: 4.0.1
- strip-bom: 3.0.0
-
loader-runner@4.3.0: {}
loader-utils@2.0.4:
@@ -25153,11 +21608,6 @@ snapshots:
loader-utils@3.3.1: {}
- local-pkg@0.5.0:
- dependencies:
- mlly: 1.7.1
- pkg-types: 1.1.1
-
locate-path@3.0.0:
dependencies:
p-locate: 3.0.0
@@ -25175,26 +21625,14 @@ snapshots:
dependencies:
p-locate: 6.0.0
- lodash.camelcase@4.3.0: {}
-
lodash.debounce@4.0.8: {}
- lodash.get@4.4.2: {}
-
- lodash.memoize@4.1.2: {}
-
lodash.merge@4.6.2: {}
lodash.sortby@4.7.0: {}
- lodash.uniq@4.5.0: {}
-
lodash@4.17.21: {}
- log-symbols@3.0.0:
- dependencies:
- chalk: 2.4.2
-
log-symbols@4.1.0:
dependencies:
chalk: 4.1.2
@@ -25208,10 +21646,6 @@ snapshots:
strip-ansi: 7.1.0
wrap-ansi: 9.0.0
- longest-streak@3.1.0: {}
-
- look-it-up@2.1.0: {}
-
loose-envify@1.4.0:
dependencies:
js-tokens: 4.0.0
@@ -25230,12 +21664,6 @@ snapshots:
loupe@3.1.3: {}
- lower-case-first@1.0.2:
- dependencies:
- lower-case: 1.1.4
-
- lower-case@1.1.4: {}
-
lower-case@2.0.2:
dependencies:
tslib: 2.6.2
@@ -25250,8 +21678,6 @@ snapshots:
dependencies:
yallist: 4.0.0
- lru-cache@7.18.3: {}
-
lucide-react@0.408.0(react@18.2.0):
dependencies:
react: 18.2.0
@@ -25296,7 +21722,8 @@ snapshots:
semver: 7.7.2
optional: true
- make-error@1.3.6: {}
+ make-error@1.3.6:
+ optional: true
makeerror@1.0.12:
dependencies:
@@ -25305,8 +21732,6 @@ snapshots:
map-or-similar@1.5.0: {}
- markdown-extensions@1.1.1: {}
-
markdown-to-jsx@7.3.2(react@18.2.0):
dependencies:
react: 18.2.0
@@ -25319,117 +21744,6 @@ snapshots:
inherits: 2.0.4
safe-buffer: 5.2.1
- mdast-util-definitions@5.1.2:
- dependencies:
- '@types/mdast': 3.0.15
- '@types/unist': 2.0.10
- unist-util-visit: 4.1.2
-
- mdast-util-from-markdown@1.3.1:
- dependencies:
- '@types/mdast': 3.0.15
- '@types/unist': 2.0.10
- decode-named-character-reference: 1.0.2
- mdast-util-to-string: 3.2.0
- micromark: 3.2.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-decode-string: 1.1.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- unist-util-stringify-position: 3.0.3
- uvu: 0.5.6
- transitivePeerDependencies:
- - supports-color
-
- mdast-util-frontmatter@1.0.1:
- dependencies:
- '@types/mdast': 3.0.15
- mdast-util-to-markdown: 1.5.0
- micromark-extension-frontmatter: 1.1.1
-
- mdast-util-mdx-expression@1.3.2:
- dependencies:
- '@types/estree-jsx': 1.0.5
- '@types/hast': 2.3.10
- '@types/mdast': 3.0.15
- mdast-util-from-markdown: 1.3.1
- mdast-util-to-markdown: 1.5.0
- transitivePeerDependencies:
- - supports-color
-
- mdast-util-mdx-jsx@2.1.4:
- dependencies:
- '@types/estree-jsx': 1.0.5
- '@types/hast': 2.3.10
- '@types/mdast': 3.0.15
- '@types/unist': 2.0.10
- ccount: 2.0.1
- mdast-util-from-markdown: 1.3.1
- mdast-util-to-markdown: 1.5.0
- parse-entities: 4.0.1
- stringify-entities: 4.0.4
- unist-util-remove-position: 4.0.2
- unist-util-stringify-position: 3.0.3
- vfile-message: 3.1.4
- transitivePeerDependencies:
- - supports-color
-
- mdast-util-mdx@2.0.1:
- dependencies:
- mdast-util-from-markdown: 1.3.1
- mdast-util-mdx-expression: 1.3.2
- mdast-util-mdx-jsx: 2.1.4
- mdast-util-mdxjs-esm: 1.3.1
- mdast-util-to-markdown: 1.5.0
- transitivePeerDependencies:
- - supports-color
-
- mdast-util-mdxjs-esm@1.3.1:
- dependencies:
- '@types/estree-jsx': 1.0.5
- '@types/hast': 2.3.10
- '@types/mdast': 3.0.15
- mdast-util-from-markdown: 1.3.1
- mdast-util-to-markdown: 1.5.0
- transitivePeerDependencies:
- - supports-color
-
- mdast-util-phrasing@3.0.1:
- dependencies:
- '@types/mdast': 3.0.15
- unist-util-is: 5.2.1
-
- mdast-util-to-hast@12.3.0:
- dependencies:
- '@types/hast': 2.3.10
- '@types/mdast': 3.0.15
- mdast-util-definitions: 5.1.2
- micromark-util-sanitize-uri: 1.2.0
- trim-lines: 3.0.1
- unist-util-generated: 2.0.1
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
-
- mdast-util-to-markdown@1.5.0:
- dependencies:
- '@types/mdast': 3.0.15
- '@types/unist': 2.0.10
- longest-streak: 3.1.0
- mdast-util-phrasing: 3.0.1
- mdast-util-to-string: 3.2.0
- micromark-util-decode-string: 1.1.0
- unist-util-visit: 4.1.2
- zwitch: 2.0.4
-
- mdast-util-to-string@3.2.0:
- dependencies:
- '@types/mdast': 3.0.15
-
- media-query-parser@2.0.2:
- dependencies:
- '@babel/runtime': 7.27.6
-
media-typer@0.3.0: {}
memfs@3.5.3:
@@ -25440,10 +21754,6 @@ snapshots:
dependencies:
map-or-similar: 1.5.0
- merge-anything@5.1.7:
- dependencies:
- is-what: 4.1.16
-
merge-descriptors@1.0.1: {}
merge-stream@2.0.0: {}
@@ -25452,221 +21762,6 @@ snapshots:
methods@1.1.2: {}
- microdiff@1.3.2: {}
-
- micromark-core-commonmark@1.1.0:
- dependencies:
- decode-named-character-reference: 1.0.2
- micromark-factory-destination: 1.1.0
- micromark-factory-label: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-factory-title: 1.1.0
- micromark-factory-whitespace: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-chunked: 1.1.0
- micromark-util-classify-character: 1.1.0
- micromark-util-html-tag-name: 1.2.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-resolve-all: 1.1.0
- micromark-util-subtokenize: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
-
- micromark-extension-frontmatter@1.1.1:
- dependencies:
- fault: 2.0.1
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-extension-mdx-expression@1.0.8:
- dependencies:
- '@types/estree': 1.0.5
- micromark-factory-mdx-expression: 1.0.9
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-events-to-acorn: 1.2.3
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
-
- micromark-extension-mdx-jsx@1.0.5:
- dependencies:
- '@types/acorn': 4.0.6
- '@types/estree': 1.0.5
- estree-util-is-identifier-name: 2.1.0
- micromark-factory-mdx-expression: 1.0.9
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- vfile-message: 3.1.4
-
- micromark-extension-mdx-md@1.0.1:
- dependencies:
- micromark-util-types: 1.1.0
-
- micromark-extension-mdxjs-esm@1.0.5:
- dependencies:
- '@types/estree': 1.0.5
- micromark-core-commonmark: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-events-to-acorn: 1.2.3
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- unist-util-position-from-estree: 1.1.2
- uvu: 0.5.6
- vfile-message: 3.1.4
-
- micromark-extension-mdxjs@1.0.1:
- dependencies:
- acorn: 8.11.3
- acorn-jsx: 5.3.2(acorn@8.11.3)
- micromark-extension-mdx-expression: 1.0.8
- micromark-extension-mdx-jsx: 1.0.5
- micromark-extension-mdx-md: 1.0.1
- micromark-extension-mdxjs-esm: 1.0.5
- micromark-util-combine-extensions: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-factory-destination@1.1.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-factory-label@1.1.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
-
- micromark-factory-mdx-expression@1.0.9:
- dependencies:
- '@types/estree': 1.0.5
- micromark-util-character: 1.2.0
- micromark-util-events-to-acorn: 1.2.3
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- unist-util-position-from-estree: 1.1.2
- uvu: 0.5.6
- vfile-message: 3.1.4
-
- micromark-factory-space@1.1.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-types: 1.1.0
-
- micromark-factory-title@1.1.0:
- dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-factory-whitespace@1.1.0:
- dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-util-character@1.2.0:
- dependencies:
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-util-chunked@1.1.0:
- dependencies:
- micromark-util-symbol: 1.1.0
-
- micromark-util-classify-character@1.1.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-util-combine-extensions@1.1.0:
- dependencies:
- micromark-util-chunked: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-util-decode-numeric-character-reference@1.1.0:
- dependencies:
- micromark-util-symbol: 1.1.0
-
- micromark-util-decode-string@1.1.0:
- dependencies:
- decode-named-character-reference: 1.0.2
- micromark-util-character: 1.2.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-symbol: 1.1.0
-
- micromark-util-encode@1.1.0: {}
-
- micromark-util-events-to-acorn@1.2.3:
- dependencies:
- '@types/acorn': 4.0.6
- '@types/estree': 1.0.5
- '@types/unist': 2.0.10
- estree-util-visit: 1.2.1
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- vfile-message: 3.1.4
-
- micromark-util-html-tag-name@1.2.0: {}
-
- micromark-util-normalize-identifier@1.1.0:
- dependencies:
- micromark-util-symbol: 1.1.0
-
- micromark-util-resolve-all@1.1.0:
- dependencies:
- micromark-util-types: 1.1.0
-
- micromark-util-sanitize-uri@1.2.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-encode: 1.1.0
- micromark-util-symbol: 1.1.0
-
- micromark-util-subtokenize@1.1.0:
- dependencies:
- micromark-util-chunked: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
-
- micromark-util-symbol@1.1.0: {}
-
- micromark-util-types@1.1.0: {}
-
- micromark@3.2.0:
- dependencies:
- '@types/debug': 4.1.12
- debug: 4.4.0
- decode-named-character-reference: 1.0.2
- micromark-core-commonmark: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-chunked: 1.1.0
- micromark-util-combine-extensions: 1.1.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-encode: 1.1.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-resolve-all: 1.1.0
- micromark-util-sanitize-uri: 1.2.0
- micromark-util-subtokenize: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- transitivePeerDependencies:
- - supports-color
-
micromatch@4.0.7:
dependencies:
braces: 3.0.3
@@ -25718,18 +21813,6 @@ snapshots:
minimist@1.2.8: {}
- minipass-collect@1.0.2:
- dependencies:
- minipass: 3.3.6
-
- minipass-flush@1.0.5:
- dependencies:
- minipass: 3.3.6
-
- minipass-pipeline@1.2.4:
- dependencies:
- minipass: 3.3.6
-
minipass@3.3.6:
dependencies:
yallist: 4.0.0
@@ -25753,21 +21836,8 @@ snapshots:
mkdirp-classic@0.5.3: {}
- mkdirp@0.5.6:
- dependencies:
- minimist: 1.2.8
-
mkdirp@1.0.4: {}
- mkdirp@3.0.1: {}
-
- mlly@1.7.1:
- dependencies:
- acorn: 8.15.0
- pathe: 1.1.2
- pkg-types: 1.1.1
- ufo: 1.5.3
-
mlly@1.8.0:
dependencies:
acorn: 8.15.0
@@ -25775,18 +21845,6 @@ snapshots:
pkg-types: 1.3.1
ufo: 1.6.2
- modern-ahocorasick@1.0.1: {}
-
- morgan@1.10.0:
- dependencies:
- basic-auth: 2.0.1
- debug: 2.6.9
- depd: 2.0.0
- on-finished: 2.3.0
- on-headers: 1.0.2
- transitivePeerDependencies:
- - supports-color
-
motion-dom@12.38.0:
dependencies:
motion-utils: 12.36.0
@@ -25802,10 +21860,6 @@ snapshots:
react: 18.2.0
react-dom: 18.3.1(react@18.2.0)
- mri@1.2.0: {}
-
- mrmime@1.0.1: {}
-
mrmime@2.0.0: {}
ms@2.0.0: {}
@@ -25814,8 +21868,6 @@ snapshots:
ms@2.1.3: {}
- mute-stream@0.0.8: {}
-
mz@2.7.0:
dependencies:
any-promise: 1.3.0
@@ -25824,16 +21876,12 @@ snapshots:
nanoid@3.3.11: {}
- nanoid@3.3.7: {}
-
natural-compare@1.4.0: {}
negotiator@0.6.3: {}
neo-async@2.6.2: {}
- netmask@2.0.2: {}
-
next-auth@4.24.7(next@14.2.3(@babel/core@7.28.0)(react-dom@18.3.1(react@18.2.0))(react@18.2.0))(react-dom@18.3.1(react@18.2.0))(react@18.2.0):
dependencies:
'@babel/runtime': 7.27.6
@@ -25931,10 +21979,6 @@ snapshots:
- babel-plugin-macros
optional: true
- no-case@2.3.2:
- dependencies:
- lower-case: 1.1.4
-
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
@@ -25946,10 +21990,6 @@ snapshots:
dependencies:
minimatch: 3.1.2
- node-eval@2.0.0:
- dependencies:
- path-is-absolute: 1.0.1
-
node-fetch-native@1.6.4: {}
node-fetch@2.7.0:
@@ -25959,20 +21999,6 @@ snapshots:
node-int64@0.4.0:
optional: true
- node-plop@0.26.3:
- dependencies:
- '@babel/runtime-corejs3': 7.22.10
- '@types/inquirer': 6.5.0
- change-case: 3.1.0
- del: 5.1.0
- globby: 10.0.2
- handlebars: 4.7.8
- inquirer: 7.3.3
- isbinaryfile: 4.0.10
- lodash.get: 4.4.2
- mkdirp: 0.5.6
- resolve: 1.22.8
-
node-polyfill-webpack-plugin@2.0.1(webpack@5.92.0(@swc/core@1.15.7(@swc/helpers@0.5.5))(esbuild@0.20.2)):
dependencies:
assert: 2.1.0
@@ -26015,35 +22041,8 @@ snapshots:
semver: 5.7.2
validate-npm-package-license: 3.0.4
- normalize-package-data@5.0.0:
- dependencies:
- hosted-git-info: 6.1.1
- is-core-module: 2.13.1
- semver: 7.7.2
- validate-npm-package-license: 3.0.4
-
normalize-path@3.0.0: {}
- npm-install-checks@6.3.0:
- dependencies:
- semver: 7.7.2
-
- npm-normalize-package-bin@3.0.1: {}
-
- npm-package-arg@10.1.0:
- dependencies:
- hosted-git-info: 6.1.1
- proc-log: 3.0.0
- semver: 7.7.2
- validate-npm-package-name: 5.0.0
-
- npm-pick-manifest@8.0.2:
- dependencies:
- npm-install-checks: 6.3.0
- npm-normalize-package-bin: 3.0.1
- npm-package-arg: 10.1.0
- semver: 7.7.2
-
npm-run-path@4.0.1:
dependencies:
path-key: 3.1.1
@@ -26106,8 +22105,6 @@ snapshots:
object-keys@1.1.1: {}
- object-path@0.11.8: {}
-
object.assign@4.1.4:
dependencies:
call-bind: 1.0.7
@@ -26157,11 +22154,6 @@ snapshots:
es-abstract: 1.22.3
get-intrinsic: 1.2.4
- object.hasown@1.1.3:
- dependencies:
- define-properties: 1.2.1
- es-abstract: 1.22.3
-
object.values@1.1.7:
dependencies:
call-bind: 1.0.7
@@ -26181,10 +22173,6 @@ snapshots:
oidc-token-hash@5.0.3: {}
- on-finished@2.3.0:
- dependencies:
- ee-first: 1.1.1
-
on-finished@2.4.1:
dependencies:
ee-first: 1.1.1
@@ -26234,17 +22222,6 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- ora@4.1.1:
- dependencies:
- chalk: 3.0.0
- cli-cursor: 3.1.0
- cli-spinners: 2.9.0
- is-interactive: 1.0.0
- log-symbols: 3.0.0
- mute-stream: 0.0.8
- strip-ansi: 6.0.1
- wcwidth: 1.0.1
-
ora@5.4.1:
dependencies:
bl: 4.1.0
@@ -26259,10 +22236,6 @@ snapshots:
os-browserify@0.3.0: {}
- os-tmpdir@1.0.2: {}
-
- outdent@0.8.0: {}
-
overlay-kit@1.8.5(react-dom@18.3.1(react@18.2.0))(react@18.2.0):
dependencies:
react: 18.2.0
@@ -26304,45 +22277,14 @@ snapshots:
p-map@2.1.0: {}
- p-map@3.0.0:
- dependencies:
- aggregate-error: 3.1.0
-
- p-map@4.0.0:
- dependencies:
- aggregate-error: 3.1.0
-
p-try@2.2.0: {}
- pac-proxy-agent@7.0.0:
- dependencies:
- '@tootallnate/quickjs-emscripten': 0.23.0
- agent-base: 7.1.0
- debug: 4.4.0
- get-uri: 6.0.1
- http-proxy-agent: 7.0.0
- https-proxy-agent: 7.0.1
- pac-resolver: 7.0.0
- socks-proxy-agent: 8.0.1
- transitivePeerDependencies:
- - supports-color
-
- pac-resolver@7.0.0:
- dependencies:
- degenerator: 5.0.1
- ip: 1.1.8
- netmask: 2.0.2
-
package-json-from-dist@1.0.1: {}
pako@0.2.9: {}
pako@1.0.11: {}
- param-case@2.1.1:
- dependencies:
- no-case: 2.3.2
-
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
@@ -26361,17 +22303,6 @@ snapshots:
pbkdf2: 3.1.2
safe-buffer: 5.2.1
- parse-entities@4.0.1:
- dependencies:
- '@types/unist': 2.0.10
- character-entities: 2.0.2
- character-entities-legacy: 3.0.0
- character-reference-invalid: 2.0.1
- decode-named-character-reference: 1.0.2
- is-alphanumerical: 2.0.1
- is-decimal: 2.0.1
- is-hexadecimal: 2.0.1
-
parse-json@5.2.0:
dependencies:
'@babel/code-frame': 7.27.1
@@ -26379,8 +22310,6 @@ snapshots:
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- parse-ms@2.1.0: {}
-
parse5@7.3.0:
dependencies:
entities: 6.0.1
@@ -26388,11 +22317,6 @@ snapshots:
parseurl@1.3.3: {}
- pascal-case@2.0.1:
- dependencies:
- camel-case: 3.0.0
- upper-case-first: 1.1.2
-
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
@@ -26400,10 +22324,6 @@ snapshots:
path-browserify@1.0.1: {}
- path-case@2.1.1:
- dependencies:
- no-case: 2.3.2
-
path-exists@3.0.0: {}
path-exists@4.0.0: {}
@@ -26458,16 +22378,6 @@ snapshots:
duplexify: 3.7.1
through2: 2.0.5
- perfect-debounce@1.0.0: {}
-
- periscopic@3.1.0:
- dependencies:
- '@types/estree': 1.0.5
- estree-walker: 3.0.3
- is-reference: 3.0.2
-
- picocolors@1.0.1: {}
-
picocolors@1.1.1: {}
picomatch@2.3.1: {}
@@ -26504,18 +22414,6 @@ snapshots:
dependencies:
find-up: 6.3.0
- pkg-types@1.0.3:
- dependencies:
- jsonc-parser: 3.2.1
- mlly: 1.7.1
- pathe: 1.1.2
-
- pkg-types@1.1.1:
- dependencies:
- confbox: 0.1.7
- mlly: 1.7.1
- pathe: 1.1.2
-
pkg-types@1.3.1:
dependencies:
confbox: 0.1.8
@@ -26536,18 +22434,6 @@ snapshots:
possible-typed-array-names@1.1.0: {}
- postcss-discard-duplicates@5.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
- postcss-discard-duplicates@7.0.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
- postcss-discard-empty@7.0.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
postcss-import@15.1.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
@@ -26557,30 +22443,14 @@ snapshots:
postcss-js@4.1.0(postcss@8.5.6):
dependencies:
- camelcase-css: 2.0.1
- postcss: 8.5.6
-
- postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/node@20.11.24)(typescript@5.4.5)):
- dependencies:
- lilconfig: 3.1.1
- yaml: 2.4.3
- optionalDependencies:
- postcss: 8.4.38
- ts-node: 10.9.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/node@20.11.24)(typescript@5.4.5)
-
- postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6)(yaml@2.4.3):
- dependencies:
- lilconfig: 3.1.3
- optionalDependencies:
- jiti: 1.21.7
+ camelcase-css: 2.0.1
postcss: 8.5.6
- yaml: 2.4.3
- postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.4.3):
+ postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6)(yaml@2.4.3):
dependencies:
lilconfig: 3.1.3
optionalDependencies:
- jiti: 2.6.1
+ jiti: 1.21.7
postcss: 8.5.6
yaml: 2.4.3
@@ -26595,34 +22465,10 @@ snapshots:
transitivePeerDependencies:
- typescript
- postcss-merge-rules@7.0.0(postcss@8.4.38):
- dependencies:
- browserslist: 4.28.1
- caniuse-api: 3.0.0
- cssnano-utils: 5.0.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.1.2
-
- postcss-minify-selectors@7.0.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.1.2
-
- postcss-modules-extract-imports@3.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
postcss-modules-extract-imports@3.1.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
- postcss-modules-local-by-default@4.0.5(postcss@8.4.38):
- dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.1.2
- postcss-value-parser: 4.2.0
-
postcss-modules-local-by-default@4.0.5(postcss@8.5.6):
dependencies:
icss-utils: 5.1.0(postcss@8.5.6)
@@ -26630,58 +22476,21 @@ snapshots:
postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.2.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.1.2
-
postcss-modules-scope@3.2.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
postcss-selector-parser: 6.1.2
- postcss-modules-values@4.0.0(postcss@8.4.38):
- dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
-
postcss-modules-values@4.0.0(postcss@8.5.6):
dependencies:
icss-utils: 5.1.0(postcss@8.5.6)
postcss: 8.5.6
- postcss-modules@6.0.0(postcss@8.4.38):
- dependencies:
- generic-names: 4.0.0
- icss-utils: 5.1.0(postcss@8.4.38)
- lodash.camelcase: 4.3.0
- postcss: 8.4.38
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.38)
- postcss-modules-local-by-default: 4.0.5(postcss@8.4.38)
- postcss-modules-scope: 3.2.0(postcss@8.4.38)
- postcss-modules-values: 4.0.0(postcss@8.4.38)
- string-hash: 1.1.3
-
- postcss-nested@6.0.1(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.1.2
-
postcss-nested@6.2.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
postcss-selector-parser: 6.1.2
- postcss-normalize-whitespace@7.0.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
- postcss-selector-parser@6.0.16:
- dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
-
postcss-selector-parser@6.1.2:
dependencies:
cssesc: 3.0.0
@@ -26695,12 +22504,6 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- postcss@8.4.38:
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
-
postcss@8.5.6:
dependencies:
nanoid: 3.3.11
@@ -26714,13 +22517,6 @@ snapshots:
preact@10.23.2: {}
- preferred-pm@3.1.2:
- dependencies:
- find-up: 5.0.0
- find-yarn-workspace-root2: 1.2.16
- path-exists: 4.0.0
- which-pm: 2.0.0
-
prelude-ls@1.2.1: {}
prettier-linter-helpers@1.0.0:
@@ -26759,23 +22555,10 @@ snapshots:
pretty-hrtime@1.0.3: {}
- pretty-ms@7.0.1:
- dependencies:
- parse-ms: 2.1.0
-
- proc-log@3.0.0: {}
-
process-nextick-args@2.0.1: {}
process@0.11.10: {}
- promise-inflight@1.0.1: {}
-
- promise-retry@2.0.1:
- dependencies:
- err-code: 2.0.3
- retry: 0.12.0
-
prompts@2.4.2:
dependencies:
kleur: 3.0.3
@@ -26787,26 +22570,11 @@ snapshots:
object-assign: 4.1.1
react-is: 16.13.1
- property-information@6.5.0: {}
-
proxy-addr@2.0.7:
dependencies:
forwarded: 0.2.0
ipaddr.js: 1.9.1
- proxy-agent@6.3.0:
- dependencies:
- agent-base: 7.1.0
- debug: 4.4.0
- http-proxy-agent: 7.0.0
- https-proxy-agent: 7.0.1
- lru-cache: 7.18.3
- pac-proxy-agent: 7.0.0
- proxy-from-env: 1.1.0
- socks-proxy-agent: 8.0.1
- transitivePeerDependencies:
- - supports-color
-
proxy-from-env@1.1.0: {}
psl@1.15.0:
@@ -26888,13 +22656,6 @@ snapshots:
iconv-lite: 0.4.24
unpipe: 1.0.0
- rc@1.2.8:
- dependencies:
- deep-extend: 0.6.0
- ini: 1.3.8
- minimist: 1.2.8
- strip-json-comments: 2.0.1
-
react-colorful@5.6.1(react-dom@18.3.1(react@18.2.0))(react@18.2.0):
dependencies:
react: 18.2.0
@@ -27006,17 +22767,6 @@ snapshots:
optionalDependencies:
'@types/react': 18.2.61
- react-remove-scroll@2.6.0(@types/react@18.2.61)(react@18.2.0):
- dependencies:
- react: 18.2.0
- react-remove-scroll-bar: 2.3.6(@types/react@18.2.61)(react@18.2.0)
- react-style-singleton: 2.2.1(@types/react@18.2.61)(react@18.2.0)
- tslib: 2.6.2
- use-callback-ref: 1.3.2(@types/react@18.2.61)(react@18.2.0)
- use-sidecar: 1.1.2(@types/react@18.2.61)(react@18.2.0)
- optionalDependencies:
- '@types/react': 18.2.61
-
react-remove-scroll@2.7.2(@types/react@18.2.61)(react@18.2.0):
dependencies:
react: 18.2.0
@@ -27039,6 +22789,7 @@ snapshots:
react: 18.2.0
react-dom: 18.3.1(react@18.2.0)
react-router: 6.25.0(react@18.2.0)
+ optional: true
react-router-dom@7.11.0(react-dom@18.3.1(react@18.2.0))(react@18.2.0):
dependencies:
@@ -27056,6 +22807,7 @@ snapshots:
dependencies:
'@remix-run/router': 1.18.0
react: 18.2.0
+ optional: true
react-router@7.11.0(react-dom@18.3.1(react@18.2.0))(react@18.2.0):
dependencies:
@@ -27220,8 +22972,6 @@ snapshots:
regenerate@1.4.2: {}
- regenerator-runtime@0.14.0: {}
-
regenerator-transform@0.15.2:
dependencies:
'@babel/runtime': 7.27.6
@@ -27254,15 +23004,6 @@ snapshots:
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.1.0
- registry-auth-token@3.3.2:
- dependencies:
- rc: 1.2.8
- safe-buffer: 5.2.1
-
- registry-url@3.1.0:
- dependencies:
- rc: 1.2.8
-
regjsparser@0.10.0:
dependencies:
jsesc: 0.5.0
@@ -27290,42 +23031,6 @@ snapshots:
relateurl@0.2.7: {}
- remark-frontmatter@4.0.1:
- dependencies:
- '@types/mdast': 3.0.15
- mdast-util-frontmatter: 1.0.1
- micromark-extension-frontmatter: 1.1.1
- unified: 10.1.2
-
- remark-mdx-frontmatter@1.1.1:
- dependencies:
- estree-util-is-identifier-name: 1.1.0
- estree-util-value-to-estree: 1.3.0
- js-yaml: 4.1.0
- toml: 3.0.0
-
- remark-mdx@2.3.0:
- dependencies:
- mdast-util-mdx: 2.0.1
- micromark-extension-mdxjs: 1.0.1
- transitivePeerDependencies:
- - supports-color
-
- remark-parse@10.0.2:
- dependencies:
- '@types/mdast': 3.0.15
- mdast-util-from-markdown: 1.3.1
- unified: 10.1.2
- transitivePeerDependencies:
- - supports-color
-
- remark-rehype@10.1.0:
- dependencies:
- '@types/hast': 2.3.10
- '@types/mdast': 3.0.15
- mdast-util-to-hast: 12.3.0
- unified: 10.1.2
-
renderkid@3.0.0:
dependencies:
css-select: 4.3.0
@@ -27339,8 +23044,6 @@ snapshots:
require-from-string@2.0.2: {}
- require-like@0.1.2: {}
-
requireindex@1.2.0: {}
requires-port@1.0.0:
@@ -27365,8 +23068,6 @@ snapshots:
postcss: 8.5.6
source-map: 0.6.1
- resolve.exports@2.0.2: {}
-
resolve.exports@2.0.3:
optional: true
@@ -27397,8 +23098,6 @@ snapshots:
onetime: 5.1.2
signal-exit: 3.0.7
- retry@0.12.0: {}
-
reusify@1.0.4: {}
rfdc@1.4.1: {}
@@ -27478,24 +23177,10 @@ snapshots:
dependencies:
execa: 5.1.1
- run-async@2.4.1: {}
-
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
- rxjs@6.6.7:
- dependencies:
- tslib: 1.14.1
-
- rxjs@7.8.1:
- dependencies:
- tslib: 2.6.2
-
- sade@1.8.1:
- dependencies:
- mri: 1.2.0
-
safe-array-concat@1.0.1:
dependencies:
call-bind: 1.0.7
@@ -27594,11 +23279,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- sentence-case@2.1.1:
- dependencies:
- no-case: 2.3.2
- upper-case-first: 1.1.2
-
serialize-javascript@4.0.0:
dependencies:
randombytes: 2.1.0
@@ -27762,25 +23442,6 @@ snapshots:
ansi-styles: 6.2.1
is-fullwidth-code-point: 5.0.0
- smart-buffer@4.2.0: {}
-
- snake-case@2.1.0:
- dependencies:
- no-case: 2.3.2
-
- socks-proxy-agent@8.0.1:
- dependencies:
- agent-base: 7.1.0
- debug: 4.4.0
- socks: 2.7.1
- transitivePeerDependencies:
- - supports-color
-
- socks@2.7.1:
- dependencies:
- ip: 2.0.0
- smart-buffer: 4.2.0
-
sonner@1.5.0(react-dom@18.3.1(react@18.2.0))(react@18.2.0):
dependencies:
react: 18.2.0
@@ -27805,8 +23466,6 @@ snapshots:
source-list-map@2.0.1: {}
- source-map-js@1.2.0: {}
-
source-map-js@1.2.1: {}
source-map-support@0.5.13:
@@ -27848,11 +23507,8 @@ snapshots:
spdx-license-ids@3.0.16: {}
- sprintf-js@1.0.3: {}
-
- ssri@10.0.6:
- dependencies:
- minipass: 7.0.4
+ sprintf-js@1.0.3:
+ optional: true
stack-utils@2.0.6:
dependencies:
@@ -27914,14 +23570,10 @@ snapshots:
stream-shift@1.0.3: {}
- stream-slice@0.1.2: {}
-
streamsearch@1.1.0: {}
string-argv@0.3.2: {}
- string-hash@1.1.3: {}
-
string-length@4.0.2:
dependencies:
char-regex: 1.0.2
@@ -28028,11 +23680,6 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- stringify-entities@4.0.4:
- dependencies:
- character-entities-html4: 2.1.0
- character-entities-legacy: 3.0.0
-
stringify-object@3.3.0:
dependencies:
get-own-enumerable-property-symbols: 3.0.2
@@ -28066,18 +23713,12 @@ snapshots:
dependencies:
min-indent: 1.0.1
- strip-json-comments@2.0.1: {}
-
strip-json-comments@3.1.1: {}
style-loader@3.3.4(webpack@5.92.0(@swc/core@1.15.7(@swc/helpers@0.5.5))(esbuild@0.20.2)):
dependencies:
webpack: 5.92.0(@swc/core@1.15.7(@swc/helpers@0.5.5))(esbuild@0.20.2)
- style-to-object@0.4.4:
- dependencies:
- inline-style-parser: 0.1.1
-
styled-jsx@5.1.1(@babel/core@7.28.0)(react@18.2.0):
dependencies:
client-only: 0.0.1
@@ -28117,11 +23758,6 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- swap-case@1.1.2:
- dependencies:
- lower-case: 1.1.4
- upper-case: 1.1.3
-
symbol-tree@3.2.4:
optional: true
@@ -28264,8 +23900,6 @@ snapshots:
readable-stream: 2.3.8
xtend: 4.0.2
- through@2.3.8: {}
-
timers-browserify@2.0.12:
dependencies:
setimmediate: 1.0.5
@@ -28274,8 +23908,6 @@ snapshots:
tinybench@2.9.0: {}
- tinycolor2@1.6.0: {}
-
tinyexec@0.3.2: {}
tinyglobby@0.2.14:
@@ -28283,11 +23915,6 @@ snapshots:
fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
- tinygradient@1.1.5:
- dependencies:
- '@types/tinycolor2': 1.4.6
- tinycolor2: 1.6.0
-
tinypool@1.0.2: {}
tinyrainbow@1.2.0: {}
@@ -28298,17 +23925,8 @@ snapshots:
tinyspy@3.0.2: {}
- title-case@2.1.1:
- dependencies:
- no-case: 2.3.2
- upper-case: 1.1.3
-
titleize@3.0.0: {}
- tmp@0.0.33:
- dependencies:
- os-tmpdir: 1.0.2
-
tmpl@1.0.5:
optional: true
@@ -28322,8 +23940,6 @@ snapshots:
toidentifier@1.0.1: {}
- toml@3.0.0: {}
-
totalist@3.0.1: {}
tough-cookie@4.1.4:
@@ -28347,32 +23963,14 @@ snapshots:
tree-kill@1.2.2: {}
- trim-lines@3.0.1: {}
-
- trough@2.2.0: {}
-
ts-api-utils@1.3.0(typescript@5.4.5):
dependencies:
typescript: 5.4.5
ts-dedent@2.2.0: {}
- ts-evaluator@1.2.0(jsdom@20.0.3)(typescript@5.4.5):
- dependencies:
- ansi-colors: 4.1.3
- crosspath: 2.0.0
- object-path: 0.11.8
- typescript: 5.4.5
- optionalDependencies:
- jsdom: 20.0.3
-
ts-interface-checker@0.1.13: {}
- ts-morph@21.0.1:
- dependencies:
- '@ts-morph/common': 0.22.0
- code-block-writer: 12.0.0
-
ts-node@10.9.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(@types/node@20.11.24)(typescript@5.4.5):
dependencies:
'@cspotcode/source-map-support': 0.8.1
@@ -28381,7 +23979,7 @@ snapshots:
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
'@types/node': 20.11.24
- acorn: 8.11.3
+ acorn: 8.15.0
acorn-walk: 8.2.0
arg: 4.1.3
create-require: 1.1.1
@@ -28392,21 +23990,12 @@ snapshots:
yn: 3.1.1
optionalDependencies:
'@swc/core': 1.15.7(@swc/helpers@0.5.5)
-
- ts-pattern@5.0.8: {}
+ optional: true
ts-pnp@1.2.0(typescript@5.4.5):
optionalDependencies:
typescript: 5.4.5
- tsconfck@3.0.2(typescript@5.4.5):
- optionalDependencies:
- typescript: 5.4.5
-
- tsconfck@3.1.1(typescript@5.4.5):
- optionalDependencies:
- typescript: 5.4.5
-
tsconfig-paths-webpack-plugin@4.1.0:
dependencies:
chalk: 4.1.2
@@ -28430,7 +24019,7 @@ snapshots:
tslib@2.6.2: {}
- tsup@8.5.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(jiti@2.6.1)(postcss@8.5.6)(typescript@5.4.5)(yaml@2.4.3):
+ tsup@8.5.1(@swc/core@1.15.7(@swc/helpers@0.5.5))(jiti@1.21.7)(postcss@8.5.6)(typescript@5.4.5)(yaml@2.4.3):
dependencies:
bundle-require: 5.1.0(esbuild@0.27.2)
cac: 6.7.14
@@ -28441,7 +24030,7 @@ snapshots:
fix-dts-default-cjs-exports: 1.0.1
joycon: 3.1.1
picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.4.3)
+ postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(yaml@2.4.3)
resolve-from: 5.0.0
rollup: 4.50.0
source-map: 0.7.6
@@ -28478,7 +24067,8 @@ snapshots:
turbo-linux-arm64@2.0.4:
optional: true
- turbo-stream@2.2.0: {}
+ turbo-stream@2.2.0:
+ optional: true
turbo-windows-64@2.0.4:
optional: true
@@ -28507,7 +24097,8 @@ snapshots:
type-fest@0.20.2: {}
- type-fest@0.21.3: {}
+ type-fest@0.21.3:
+ optional: true
type-fest@0.6.0: {}
@@ -28607,8 +24198,6 @@ snapshots:
undici-types@5.26.5: {}
- undici@6.19.4: {}
-
unicode-canonical-property-names-ecmascript@2.0.0: {}
unicode-match-property-ecmascript@2.0.0:
@@ -28622,24 +24211,6 @@ snapshots:
unicorn-magic@0.1.0: {}
- unified@10.1.2:
- dependencies:
- '@types/unist': 2.0.10
- bail: 2.0.2
- extend: 3.0.2
- is-buffer: 2.0.5
- is-plain-obj: 4.1.0
- trough: 2.2.0
- vfile: 5.3.7
-
- unique-filename@3.0.0:
- dependencies:
- unique-slug: 4.0.0
-
- unique-slug@4.0.0:
- dependencies:
- imurmurhash: 0.1.4
-
unique-string@2.0.0:
dependencies:
crypto-random-string: 2.0.0
@@ -28648,49 +24219,15 @@ snapshots:
dependencies:
crypto-random-string: 4.0.0
- unist-util-generated@2.0.1: {}
-
- unist-util-is@5.2.1:
- dependencies:
- '@types/unist': 2.0.10
-
unist-util-is@6.0.0:
dependencies:
'@types/unist': 3.0.2
- unist-util-position-from-estree@1.1.2:
- dependencies:
- '@types/unist': 2.0.10
-
- unist-util-position@4.0.4:
- dependencies:
- '@types/unist': 2.0.10
-
- unist-util-remove-position@4.0.2:
- dependencies:
- '@types/unist': 2.0.10
- unist-util-visit: 4.1.2
-
- unist-util-stringify-position@3.0.3:
- dependencies:
- '@types/unist': 2.0.10
-
- unist-util-visit-parents@5.1.3:
- dependencies:
- '@types/unist': 2.0.10
- unist-util-is: 5.2.1
-
unist-util-visit-parents@6.0.1:
dependencies:
'@types/unist': 3.0.2
unist-util-is: 6.0.0
- unist-util-visit@4.1.2:
- dependencies:
- '@types/unist': 2.0.10
- unist-util-is: 5.2.1
- unist-util-visit-parents: 5.1.3
-
unist-util-visit@5.0.0:
dependencies:
'@types/unist': 3.0.2
@@ -28699,8 +24236,6 @@ snapshots:
universal-user-agent@7.0.2: {}
- universalify@0.1.2: {}
-
universalify@0.2.0:
optional: true
@@ -28719,12 +24254,6 @@ snapshots:
upath@1.2.0: {}
- update-browserslist-db@1.0.16(browserslist@4.23.0):
- dependencies:
- browserslist: 4.23.0
- escalade: 3.1.2
- picocolors: 1.1.1
-
update-browserslist-db@1.0.16(browserslist@4.23.1):
dependencies:
browserslist: 4.23.1
@@ -28743,17 +24272,6 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.1
- update-check@1.5.4:
- dependencies:
- registry-auth-token: 3.3.2
- registry-url: 3.1.0
-
- upper-case-first@1.1.2:
- dependencies:
- upper-case: 1.1.3
-
- upper-case@1.1.3: {}
-
uri-js@4.4.1:
dependencies:
punycode: 2.3.0
@@ -28833,14 +24351,8 @@ snapshots:
uuid@9.0.1: {}
- uvu@0.5.6:
- dependencies:
- dequal: 2.0.3
- diff: 5.2.0
- kleur: 4.1.5
- sade: 1.8.1
-
- v8-compile-cache-lib@3.0.1: {}
+ v8-compile-cache-lib@3.0.1:
+ optional: true
v8-to-istanbul@9.3.0:
dependencies:
@@ -28854,10 +24366,6 @@ snapshots:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- validate-npm-package-name@5.0.0:
- dependencies:
- builtins: 5.0.1
-
vary@1.1.2: {}
vaul@1.1.2(@types/react-dom@18.3.7(@types/react@18.2.61))(@types/react@18.2.61)(react-dom@18.3.1(react@18.2.0))(react@18.2.0):
@@ -28869,18 +24377,6 @@ snapshots:
- '@types/react'
- '@types/react-dom'
- vfile-message@3.1.4:
- dependencies:
- '@types/unist': 2.0.10
- unist-util-stringify-position: 3.0.3
-
- vfile@5.3.7:
- dependencies:
- '@types/unist': 2.0.10
- is-buffer: 2.0.5
- unist-util-stringify-position: 3.0.3
- vfile-message: 3.1.4
-
victory-vendor@36.9.2:
dependencies:
'@types/d3-array': 3.2.2
@@ -28898,24 +24394,6 @@ snapshots:
d3-time: 3.1.0
d3-timer: 3.0.1
- vite-node@1.6.0(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1):
- dependencies:
- cac: 6.7.14
- debug: 4.4.0
- pathe: 1.1.2
- picocolors: 1.1.1
- vite: 5.4.21(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1)
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
-
vite-node@3.1.1(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1):
dependencies:
cac: 6.7.14
@@ -28934,17 +24412,6 @@ snapshots:
- supports-color
- terser
- vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@5.3.5(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1)):
- dependencies:
- debug: 4.3.4
- globrex: 0.1.2
- tsconfck: 3.1.1(typescript@5.4.5)
- optionalDependencies:
- vite: 5.3.5(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1)
- transitivePeerDependencies:
- - supports-color
- - typescript
-
vite@5.3.5(@types/node@20.11.24)(lightningcss@1.30.2)(terser@5.31.1):
dependencies:
esbuild: 0.21.5
@@ -29059,14 +24526,6 @@ snapshots:
dependencies:
defaults: 1.0.4
- web-encoding@1.1.5:
- dependencies:
- util: 0.12.5
- optionalDependencies:
- '@zxing/text-encoding': 0.9.0
-
- web-streams-polyfill@3.3.3: {}
-
webidl-conversions@3.0.1: {}
webidl-conversions@4.0.2: {}
@@ -29237,11 +24696,6 @@ snapshots:
is-weakmap: 2.0.2
is-weakset: 2.0.4
- which-pm@2.0.0:
- dependencies:
- load-yaml-file: 0.2.0
- path-exists: 4.0.0
-
which-typed-array@1.1.13:
dependencies:
available-typed-arrays: 1.0.5
@@ -29264,10 +24718,6 @@ snapshots:
dependencies:
isexe: 2.0.0
- which@3.0.1:
- dependencies:
- isexe: 2.0.0
-
why-is-node-running@2.3.0:
dependencies:
siginfo: 2.0.0
@@ -29400,12 +24850,6 @@ snapshots:
'@types/trusted-types': 2.0.7
workbox-core: 6.6.0
- wrap-ansi@6.2.0:
- dependencies:
- ansi-styles: 4.3.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
-
wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
@@ -29477,7 +24921,8 @@ snapshots:
yargs-parser: 21.1.1
optional: true
- yn@3.1.1: {}
+ yn@3.1.1:
+ optional: true
yocto-queue@0.1.0: {}
@@ -29491,5 +24936,3 @@ snapshots:
optionalDependencies:
'@types/react': 18.2.61
react: 18.2.0
-
- zwitch@2.0.4: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 629f57d7..955ab775 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -1,7 +1,6 @@
packages:
- 'apps/*'
- 'apps/web/*'
- - 'apps/admin/*'
- 'packages/*'
- 'packages/ui/*'
- 'packages/util/*'