├── .eslintrc.json
├── app
├── favicon.ico
├── api
│ └── chat
│ │ └── route.ts
├── MyRuntimeProvider.tsx
├── layout.tsx
├── syntax-highlighter.tsx
├── page.tsx
├── globals.css
└── ArtifactsView.tsx
├── .env.example
├── next.config.mjs
├── postcss.config.mjs
├── lib
└── utils.ts
├── components.json
├── .gitignore
├── README.md
├── tsconfig.json
├── package.json
├── components
└── ui
│ └── tabs.tsx
├── tailwind.config.ts
└── pnpm-lock.yaml
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Yonom/assistant-ui-artifacts/HEAD/app/favicon.ico
--------------------------------------------------------------------------------
/.env.example:
--------------------------------------------------------------------------------
1 | NEXT_PUBLIC_FIREWORKS_API_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
2 |
--------------------------------------------------------------------------------
/next.config.mjs:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {};
3 |
4 | export default nextConfig;
5 |
--------------------------------------------------------------------------------
/postcss.config.mjs:
--------------------------------------------------------------------------------
1 | /** @type {import('postcss-load-config').Config} */
2 | const config = {
3 | plugins: {
4 | tailwindcss: {},
5 | },
6 | };
7 |
8 | export default config;
9 |
--------------------------------------------------------------------------------
/lib/utils.ts:
--------------------------------------------------------------------------------
1 | import { type ClassValue, clsx } from "clsx"
2 | import { twMerge } from "tailwind-merge"
3 |
4 | export function cn(...inputs: ClassValue[]) {
5 | return twMerge(clsx(inputs))
6 | }
7 |
--------------------------------------------------------------------------------
/app/api/chat/route.ts:
--------------------------------------------------------------------------------
1 | import { openai } from "@ai-sdk/openai";
2 | import { createEdgeRuntimeAPI } from "@assistant-ui/react/edge";
3 |
4 | export const runtime = "edge";
5 |
6 | export const { POST } = createEdgeRuntimeAPI({
7 | model: openai("gpt-3.5-turbo"),
8 | });
9 |
--------------------------------------------------------------------------------
/components.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://ui.shadcn.com/schema.json",
3 | "style": "default",
4 | "rsc": true,
5 | "tsx": true,
6 | "tailwind": {
7 | "config": "tailwind.config.ts",
8 | "css": "app/globals.css",
9 | "baseColor": "zinc",
10 | "cssVariables": true,
11 | "prefix": ""
12 | },
13 | "aliases": {
14 | "components": "@/components",
15 | "utils": "@/lib/utils"
16 | }
17 | }
--------------------------------------------------------------------------------
/app/MyRuntimeProvider.tsx:
--------------------------------------------------------------------------------
1 | "use client";
2 |
3 | import { AssistantRuntimeProvider, useEdgeRuntime } from "@assistant-ui/react";
4 |
5 | export function MyRuntimeProvider({
6 | children,
7 | }: Readonly<{
8 | children: React.ReactNode;
9 | }>) {
10 | const runtime = useEdgeRuntime({
11 | api: "/api/chat",
12 | });
13 |
14 | return (
15 |
16 | {children}
17 |
18 | );
19 | }
20 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 | .yarn/install-state.gz
8 |
9 | # testing
10 | /coverage
11 |
12 | # next.js
13 | /.next/
14 | /out/
15 |
16 | # production
17 | /build
18 |
19 | # misc
20 | .DS_Store
21 | *.pem
22 |
23 | # debug
24 | npm-debug.log*
25 | yarn-debug.log*
26 | yarn-error.log*
27 |
28 | # local env files
29 | .env*.local
30 |
31 | # vercel
32 | .vercel
33 |
34 | # typescript
35 | *.tsbuildinfo
36 | next-env.d.ts
37 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | This is the [assistant-ui](https://github.com/Yonom/assistant-ui) starter project.
2 |
3 | ## Getting Started
4 |
5 | First, add your OpenAI API key to `.env.local` file:
6 |
7 | ```
8 | NEXT_PUBLIC_FIREWORKS_API_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
9 | ```
10 |
11 | Then, run the development server:
12 |
13 | ```bash
14 | npm run dev
15 | # or
16 | yarn dev
17 | # or
18 | pnpm dev
19 | # or
20 | bun dev
21 | ```
22 |
23 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
24 |
25 | You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
26 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "lib": ["dom", "dom.iterable", "esnext"],
4 | "allowJs": true,
5 | "skipLibCheck": true,
6 | "strict": true,
7 | "noEmit": true,
8 | "esModuleInterop": true,
9 | "module": "esnext",
10 | "moduleResolution": "bundler",
11 | "resolveJsonModule": true,
12 | "isolatedModules": true,
13 | "jsx": "preserve",
14 | "incremental": true,
15 | "plugins": [
16 | {
17 | "name": "next"
18 | }
19 | ],
20 | "paths": {
21 | "@/*": ["./*"]
22 | }
23 | },
24 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
25 | "exclude": ["node_modules"]
26 | }
27 |
--------------------------------------------------------------------------------
/app/layout.tsx:
--------------------------------------------------------------------------------
1 | import type { Metadata } from "next";
2 | import { Inter } from "next/font/google";
3 | import { MyRuntimeProvider } from "@/app/MyRuntimeProvider";
4 | import { cn } from "@/lib/utils";
5 |
6 | import "./globals.css";
7 |
8 | const inter = Inter({ subsets: ["latin"] });
9 |
10 | export const metadata: Metadata = {
11 | title: "Create Next App",
12 | description: "Generated by create next app",
13 | };
14 |
15 | export default function RootLayout({
16 | children,
17 | }: Readonly<{
18 | children: React.ReactNode;
19 | }>) {
20 | return (
21 |
22 |
23 | {children}
24 |
25 |
26 | );
27 | }
28 |
--------------------------------------------------------------------------------
/app/syntax-highlighter.tsx:
--------------------------------------------------------------------------------
1 | import { PrismAsyncLight } from "react-syntax-highlighter";
2 | import { makePrismAsyncLightSyntaxHighlighter } from "@assistant-ui/react-syntax-highlighter";
3 |
4 | import tsx from "react-syntax-highlighter/dist/esm/languages/prism/tsx";
5 | import python from "react-syntax-highlighter/dist/esm/languages/prism/python";
6 | import html from "react-syntax-highlighter/dist/esm/languages/prism/xml-doc";
7 |
8 | import { coldarkDark } from "react-syntax-highlighter/dist/cjs/styles/prism";
9 | import { makeMarkdownText } from "@assistant-ui/react-markdown";
10 |
11 | // register languages you want to support
12 | PrismAsyncLight.registerLanguage("html", html);
13 | PrismAsyncLight.registerLanguage("js", tsx);
14 | PrismAsyncLight.registerLanguage("jsx", tsx);
15 | PrismAsyncLight.registerLanguage("ts", tsx);
16 | PrismAsyncLight.registerLanguage("tsx", tsx);
17 | PrismAsyncLight.registerLanguage("python", python);
18 |
19 | export const SyntaxHighlighter = makePrismAsyncLightSyntaxHighlighter({
20 | style: coldarkDark,
21 | customStyle: {
22 | margin: 0,
23 | width: "100%",
24 | background: "#000",
25 | padding: "1.5rem 1rem",
26 | },
27 | });
28 |
29 | export const MarkdownText = makeMarkdownText({
30 | components: { SyntaxHighlighter },
31 | });
32 |
--------------------------------------------------------------------------------
/app/page.tsx:
--------------------------------------------------------------------------------
1 | "use client";
2 |
3 | import { makeAssistantTool, Thread } from "@assistant-ui/react";
4 | import { ArtifactsView } from "./ArtifactsView";
5 | import { MarkdownText } from "./syntax-highlighter";
6 | import { TerminalIcon } from "lucide-react";
7 | import { z } from "zod";
8 |
9 | const RenderHTMLTool = makeAssistantTool({
10 | toolName: "render_html",
11 | description:
12 | "Whenever the user asks for HTML code, call this function. The user will see the HTML code rendered in their browser.",
13 | parameters: z.object({
14 | code: z.string(),
15 | }),
16 | execute: async () => {
17 | return {};
18 | },
19 | render: () => {
20 | return (
21 |
22 |
23 | render_html({"{"} code: "..." {"}"})
24 |
25 | );
26 | },
27 | });
28 |
29 | export default function Home() {
30 | return (
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 | );
39 | }
40 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "assistant-ui-starter",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "next lint"
10 | },
11 | "dependencies": {
12 | "@ai-sdk/openai": "^0.0.36",
13 | "@assistant-ui/react": "^0.4",
14 | "@assistant-ui/react-markdown": "^0.1.2",
15 | "@assistant-ui/react-syntax-highlighter": "^0.0.3",
16 | "@radix-ui/react-avatar": "^1.1.0",
17 | "@radix-ui/react-tabs": "^1.1.0",
18 | "class-variance-authority": "^0.7.0",
19 | "clsx": "^2.1.1",
20 | "html-format": "^1.1.7",
21 | "lucide-react": "^0.408.0",
22 | "next": "14.2.5",
23 | "react": "^18",
24 | "react-dom": "^18",
25 | "react-syntax-highlighter": "^15.5.0",
26 | "tailwind-merge": "^2.4.0",
27 | "tailwindcss-animate": "^1.0.7",
28 | "zod": "^3.23.8"
29 | },
30 | "devDependencies": {
31 | "@types/node": "^20",
32 | "@types/react": "^18",
33 | "@types/react-dom": "^18",
34 | "@types/react-syntax-highlighter": "^15.5.13",
35 | "eslint": "^8",
36 | "eslint-config-next": "14.2.5",
37 | "postcss": "^8",
38 | "tailwindcss": "^3.4.5",
39 | "typescript": "^5"
40 | },
41 | "packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
42 | }
43 |
--------------------------------------------------------------------------------
/app/globals.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
5 | @layer base {
6 | :root {
7 | --background: 0 0% 100%;
8 | --foreground: 240 10% 3.9%;
9 |
10 | --card: 0 0% 100%;
11 | --card-foreground: 240 10% 3.9%;
12 |
13 | --popover: 0 0% 100%;
14 | --popover-foreground: 240 10% 3.9%;
15 |
16 | --primary: 240 5.9% 10%;
17 | --primary-foreground: 0 0% 98%;
18 |
19 | --secondary: 240 4.8% 95.9%;
20 | --secondary-foreground: 240 5.9% 10%;
21 |
22 | --muted: 240 4.8% 95.9%;
23 | --muted-foreground: 240 3.8% 46.1%;
24 |
25 | --accent: 240 4.8% 95.9%;
26 | --accent-foreground: 240 5.9% 10%;
27 |
28 | --destructive: 0 84.2% 60.2%;
29 | --destructive-foreground: 0 0% 98%;
30 |
31 | --border: 240 5.9% 90%;
32 | --input: 240 5.9% 90%;
33 | --ring: 240 10% 3.9%;
34 |
35 | --radius: 0.5rem;
36 | }
37 |
38 | .dark {
39 | --background: 240 10% 3.9%;
40 | --foreground: 0 0% 98%;
41 |
42 | --card: 240 10% 3.9%;
43 | --card-foreground: 0 0% 98%;
44 |
45 | --popover: 240 10% 3.9%;
46 | --popover-foreground: 0 0% 98%;
47 |
48 | --primary: 0 0% 98%;
49 | --primary-foreground: 240 5.9% 10%;
50 |
51 | --secondary: 240 3.7% 15.9%;
52 | --secondary-foreground: 0 0% 98%;
53 |
54 | --muted: 240 3.7% 15.9%;
55 | --muted-foreground: 240 5% 64.9%;
56 |
57 | --accent: 240 3.7% 15.9%;
58 | --accent-foreground: 0 0% 98%;
59 |
60 | --destructive: 0 62.8% 30.6%;
61 | --destructive-foreground: 0 0% 98%;
62 |
63 | --border: 240 3.7% 15.9%;
64 | --input: 240 3.7% 15.9%;
65 | --ring: 240 4.9% 83.9%;
66 | }
67 | }
68 |
69 | @layer base {
70 | * {
71 | @apply border-border;
72 | }
73 | body {
74 | @apply bg-background text-foreground;
75 | }
76 | }
--------------------------------------------------------------------------------
/app/ArtifactsView.tsx:
--------------------------------------------------------------------------------
1 | "use client";
2 | import {
3 | ToolCallContentPart,
4 | useAssistantTool,
5 | useMessageContext,
6 | useThreadContext,
7 | } from "@assistant-ui/react";
8 | import { TerminalIcon } from "lucide-react";
9 | import { useCallback, useRef, useState } from "react";
10 | import z from "zod";
11 | import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
12 |
13 | export const ArtifactsView = () => {
14 | const { useThreadMessages } = useThreadContext();
15 | const artifact = useThreadMessages((t) => {
16 | return t
17 | .flatMap((m) =>
18 | m.content.filter(
19 | (c): c is ToolCallContentPart =>
20 | c.type === "tool-call" && c.toolName === "render_html"
21 | )
22 | )
23 | .at(-1)?.args["code"] as string | undefined;
24 | });
25 |
26 | if (!artifact) return null;
27 |
28 | return (
29 |
34 |
35 |
36 |
37 | Source Code
38 | Preview
39 |
40 |
44 | {artifact}
45 |
46 |
47 | {artifact && }
48 |
49 |
50 |
51 |
52 | );
53 | };
54 |
--------------------------------------------------------------------------------
/components/ui/tabs.tsx:
--------------------------------------------------------------------------------
1 | "use client"
2 |
3 | import * as React from "react"
4 | import * as TabsPrimitive from "@radix-ui/react-tabs"
5 |
6 | import { cn } from "@/lib/utils"
7 |
8 | const Tabs = TabsPrimitive.Root
9 |
10 | const TabsList = React.forwardRef<
11 | React.ElementRef,
12 | React.ComponentPropsWithoutRef
13 | >(({ className, ...props }, ref) => (
14 |
22 | ))
23 | TabsList.displayName = TabsPrimitive.List.displayName
24 |
25 | const TabsTrigger = React.forwardRef<
26 | React.ElementRef,
27 | React.ComponentPropsWithoutRef
28 | >(({ className, ...props }, ref) => (
29 |
37 | ))
38 | TabsTrigger.displayName = TabsPrimitive.Trigger.displayName
39 |
40 | const TabsContent = React.forwardRef<
41 | React.ElementRef,
42 | React.ComponentPropsWithoutRef
43 | >(({ className, ...props }, ref) => (
44 |
52 | ))
53 | TabsContent.displayName = TabsPrimitive.Content.displayName
54 |
55 | export { Tabs, TabsList, TabsTrigger, TabsContent }
56 |
--------------------------------------------------------------------------------
/tailwind.config.ts:
--------------------------------------------------------------------------------
1 | import type { Config } from "tailwindcss";
2 |
3 | const config = {
4 | darkMode: ["class"],
5 | content: [
6 | "./pages/**/*.{ts,tsx}",
7 | "./components/**/*.{ts,tsx}",
8 | "./app/**/*.{ts,tsx}",
9 | "./src/**/*.{ts,tsx}",
10 | ],
11 | prefix: "",
12 | theme: {
13 | container: {
14 | center: true,
15 | padding: "2rem",
16 | screens: {
17 | "2xl": "1400px",
18 | },
19 | },
20 | extend: {
21 | colors: {
22 | border: "hsl(var(--border))",
23 | input: "hsl(var(--input))",
24 | ring: "hsl(var(--ring))",
25 | background: "hsl(var(--background))",
26 | foreground: "hsl(var(--foreground))",
27 | primary: {
28 | DEFAULT: "hsl(var(--primary))",
29 | foreground: "hsl(var(--primary-foreground))",
30 | },
31 | secondary: {
32 | DEFAULT: "hsl(var(--secondary))",
33 | foreground: "hsl(var(--secondary-foreground))",
34 | },
35 | destructive: {
36 | DEFAULT: "hsl(var(--destructive))",
37 | foreground: "hsl(var(--destructive-foreground))",
38 | },
39 | muted: {
40 | DEFAULT: "hsl(var(--muted))",
41 | foreground: "hsl(var(--muted-foreground))",
42 | },
43 | accent: {
44 | DEFAULT: "hsl(var(--accent))",
45 | foreground: "hsl(var(--accent-foreground))",
46 | },
47 | popover: {
48 | DEFAULT: "hsl(var(--popover))",
49 | foreground: "hsl(var(--popover-foreground))",
50 | },
51 | card: {
52 | DEFAULT: "hsl(var(--card))",
53 | foreground: "hsl(var(--card-foreground))",
54 | },
55 | },
56 | borderRadius: {
57 | lg: "var(--radius)",
58 | md: "calc(var(--radius) - 2px)",
59 | sm: "calc(var(--radius) - 4px)",
60 | },
61 | keyframes: {
62 | "accordion-down": {
63 | from: { height: "0" },
64 | to: { height: "var(--radix-accordion-content-height)" },
65 | },
66 | "accordion-up": {
67 | from: { height: "var(--radix-accordion-content-height)" },
68 | to: { height: "0" },
69 | },
70 | },
71 | animation: {
72 | "accordion-down": "accordion-down 0.2s ease-out",
73 | "accordion-up": "accordion-up 0.2s ease-out",
74 | },
75 | },
76 | },
77 | plugins: [
78 | require("tailwindcss-animate"),
79 | require("@assistant-ui/react/tailwindcss"),
80 | require("@assistant-ui/react-markdown/tailwindcss"),
81 | ],
82 | } satisfies Config;
83 |
84 | export default config;
85 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | dependencies:
11 | '@ai-sdk/openai':
12 | specifier: ^0.0.36
13 | version: 0.0.36(zod@3.23.8)
14 | '@assistant-ui/react':
15 | specifier: ^0.4
16 | version: 0.4.8(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.5)
17 | '@assistant-ui/react-markdown':
18 | specifier: ^0.1.2
19 | version: 0.1.2(@assistant-ui/react@0.4.8(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.5))(@types/react@18.3.3)(react@18.3.1)(tailwindcss@3.4.5)
20 | '@assistant-ui/react-syntax-highlighter':
21 | specifier: ^0.0.3
22 | version: 0.0.3(@assistant-ui/react-markdown@0.1.2(@assistant-ui/react@0.4.8(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.5))(@types/react@18.3.3)(react@18.3.1)(tailwindcss@3.4.5))(@assistant-ui/react@0.4.8(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.5))(@types/react-syntax-highlighter@15.5.13)(@types/react@18.3.3)(react-syntax-highlighter@15.5.0(react@18.3.1))(react@18.3.1)
23 | '@radix-ui/react-avatar':
24 | specifier: ^1.1.0
25 | version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
26 | '@radix-ui/react-tabs':
27 | specifier: ^1.1.0
28 | version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
29 | class-variance-authority:
30 | specifier: ^0.7.0
31 | version: 0.7.0
32 | clsx:
33 | specifier: ^2.1.1
34 | version: 2.1.1
35 | html-format:
36 | specifier: ^1.1.7
37 | version: 1.1.7
38 | lucide-react:
39 | specifier: ^0.408.0
40 | version: 0.408.0(react@18.3.1)
41 | next:
42 | specifier: 14.2.5
43 | version: 14.2.5(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
44 | react:
45 | specifier: ^18
46 | version: 18.3.1
47 | react-dom:
48 | specifier: ^18
49 | version: 18.3.1(react@18.3.1)
50 | react-syntax-highlighter:
51 | specifier: ^15.5.0
52 | version: 15.5.0(react@18.3.1)
53 | tailwind-merge:
54 | specifier: ^2.4.0
55 | version: 2.4.0
56 | tailwindcss-animate:
57 | specifier: ^1.0.7
58 | version: 1.0.7(tailwindcss@3.4.5)
59 | zod:
60 | specifier: ^3.23.8
61 | version: 3.23.8
62 | devDependencies:
63 | '@types/node':
64 | specifier: ^20
65 | version: 20.14.8
66 | '@types/react':
67 | specifier: ^18
68 | version: 18.3.3
69 | '@types/react-dom':
70 | specifier: ^18
71 | version: 18.3.0
72 | '@types/react-syntax-highlighter':
73 | specifier: ^15.5.13
74 | version: 15.5.13
75 | eslint:
76 | specifier: ^8
77 | version: 8.57.0
78 | eslint-config-next:
79 | specifier: 14.2.5
80 | version: 14.2.5(eslint@8.57.0)(typescript@5.5.2)
81 | postcss:
82 | specifier: ^8
83 | version: 8.4.38
84 | tailwindcss:
85 | specifier: ^3.4.5
86 | version: 3.4.5
87 | typescript:
88 | specifier: ^5
89 | version: 5.5.2
90 |
91 | packages:
92 |
93 | '@ai-sdk/openai@0.0.36':
94 | resolution: {integrity: sha512-6IcvR35UMuuQEQPkVjzUtqDAuz6vy+PMCEL0PAS2ufHXdPPm81OTKVetqjgOPjebsikhVP0soK1pKPEe2cztAQ==}
95 | engines: {node: '>=18'}
96 | peerDependencies:
97 | zod: ^3.0.0
98 |
99 | '@ai-sdk/provider-utils@1.0.2':
100 | resolution: {integrity: sha512-57f6O4OFVNEpI8Z8o+K40tIB3YQiTw+VCql/qrAO9Utq7Ti1o6+X9tvm177DlZJL7ft0Rwzvgy48S9YhrEKgmA==}
101 | engines: {node: '>=18'}
102 | peerDependencies:
103 | zod: ^3.0.0
104 | peerDependenciesMeta:
105 | zod:
106 | optional: true
107 |
108 | '@ai-sdk/provider@0.0.12':
109 | resolution: {integrity: sha512-oOwPQD8i2Ynpn22cur4sk26FW3mSy6t6/X/K1Ay2yGBKYiSpRyLfObhOrZEGsXDx+3euKy4nEZ193R36NM+tpQ==}
110 | engines: {node: '>=18'}
111 |
112 | '@alloc/quick-lru@5.2.0':
113 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
114 | engines: {node: '>=10'}
115 |
116 | '@assistant-ui/react-markdown@0.1.2':
117 | resolution: {integrity: sha512-8ohmNACeN+s+obBLdaaBUQlNH0iwsuMpwKhc8oWmjRHge8bqefwTckl4legRnscxw6wfUSaH6iRYY8DvdHVN5g==}
118 | peerDependencies:
119 | '@assistant-ui/react': ^0.4.6
120 | '@types/react': '*'
121 | react: ^18
122 | tailwindcss: ^3.4.4
123 | peerDependenciesMeta:
124 | '@types/react':
125 | optional: true
126 | tailwindcss:
127 | optional: true
128 |
129 | '@assistant-ui/react-syntax-highlighter@0.0.3':
130 | resolution: {integrity: sha512-qLaPGLVV5wS96Ek3ox/x4speDnukHctueX+leyWpW9x+NA5uiC3ajMWqFgK24SZv1/sfuhn4LEXJL6OOc9TloQ==}
131 | peerDependencies:
132 | '@assistant-ui/react': ^0.4.0
133 | '@assistant-ui/react-markdown': ^0.1.0
134 | '@types/react': '*'
135 | '@types/react-syntax-highlighter': '*'
136 | react: ^18
137 | react-syntax-highlighter: ^15.5.0
138 | peerDependenciesMeta:
139 | '@types/react':
140 | optional: true
141 | '@types/react-syntax-highlighter':
142 | optional: true
143 |
144 | '@assistant-ui/react@0.4.8':
145 | resolution: {integrity: sha512-LapgtquUahuv3SVVFnBVSk6AFx9rkSzrGDTQhKSp7mbyoeMV4eE+GAoMp8KiSx8BondjG5fY0H41vFR53IquhA==}
146 | peerDependencies:
147 | '@types/react': '*'
148 | '@types/react-dom': '*'
149 | react: ^18
150 | react-dom: ^18
151 | tailwindcss: ^3.4.4
152 | peerDependenciesMeta:
153 | '@types/react':
154 | optional: true
155 | '@types/react-dom':
156 | optional: true
157 | tailwindcss:
158 | optional: true
159 |
160 | '@babel/runtime@7.24.7':
161 | resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==}
162 | engines: {node: '>=6.9.0'}
163 |
164 | '@eslint-community/eslint-utils@4.4.0':
165 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
166 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
167 | peerDependencies:
168 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
169 |
170 | '@eslint-community/regexpp@4.10.1':
171 | resolution: {integrity: sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==}
172 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
173 |
174 | '@eslint/eslintrc@2.1.4':
175 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
176 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
177 |
178 | '@eslint/js@8.57.0':
179 | resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
180 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
181 |
182 | '@floating-ui/core@1.6.4':
183 | resolution: {integrity: sha512-a4IowK4QkXl4SCWTGUR0INAfEOX3wtsYw3rKK5InQEHMGObkR8Xk44qYQD9P4r6HHw0iIfK6GUKECmY8sTkqRA==}
184 |
185 | '@floating-ui/dom@1.6.7':
186 | resolution: {integrity: sha512-wmVfPG5o2xnKDU4jx/m4w5qva9FWHcnZ8BvzEe90D/RpwsJaTAVYPEPdQ8sbr/N8zZTAHlZUTQdqg8ZUbzHmng==}
187 |
188 | '@floating-ui/react-dom@2.1.1':
189 | resolution: {integrity: sha512-4h84MJt3CHrtG18mGsXuLCHMrug49d7DFkU0RMIyshRveBeyV2hmV/pDaF2Uxtu8kgq5r46llp5E5FQiR0K2Yg==}
190 | peerDependencies:
191 | react: '>=16.8.0'
192 | react-dom: '>=16.8.0'
193 |
194 | '@floating-ui/utils@0.2.4':
195 | resolution: {integrity: sha512-dWO2pw8hhi+WrXq1YJy2yCuWoL20PddgGaqTgVe4cOS9Q6qklXCiA1tJEqX6BEwRNSCP84/afac9hd4MS+zEUA==}
196 |
197 | '@humanwhocodes/config-array@0.11.14':
198 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
199 | engines: {node: '>=10.10.0'}
200 | deprecated: Use @eslint/config-array instead
201 |
202 | '@humanwhocodes/module-importer@1.0.1':
203 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
204 | engines: {node: '>=12.22'}
205 |
206 | '@humanwhocodes/object-schema@2.0.3':
207 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
208 | deprecated: Use @eslint/object-schema instead
209 |
210 | '@isaacs/cliui@8.0.2':
211 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
212 | engines: {node: '>=12'}
213 |
214 | '@jridgewell/gen-mapping@0.3.5':
215 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
216 | engines: {node: '>=6.0.0'}
217 |
218 | '@jridgewell/resolve-uri@3.1.2':
219 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
220 | engines: {node: '>=6.0.0'}
221 |
222 | '@jridgewell/set-array@1.2.1':
223 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
224 | engines: {node: '>=6.0.0'}
225 |
226 | '@jridgewell/sourcemap-codec@1.4.15':
227 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
228 |
229 | '@jridgewell/trace-mapping@0.3.25':
230 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
231 |
232 | '@next/env@14.2.5':
233 | resolution: {integrity: sha512-/zZGkrTOsraVfYjGP8uM0p6r0BDT6xWpkjdVbcz66PJVSpwXX3yNiRycxAuDfBKGWBrZBXRuK/YVlkNgxHGwmA==}
234 |
235 | '@next/eslint-plugin-next@14.2.5':
236 | resolution: {integrity: sha512-LY3btOpPh+OTIpviNojDpUdIbHW9j0JBYBjsIp8IxtDFfYFyORvw3yNq6N231FVqQA7n7lwaf7xHbVJlA1ED7g==}
237 |
238 | '@next/swc-darwin-arm64@14.2.5':
239 | resolution: {integrity: sha512-/9zVxJ+K9lrzSGli1///ujyRfon/ZneeZ+v4ptpiPoOU+GKZnm8Wj8ELWU1Pm7GHltYRBklmXMTUqM/DqQ99FQ==}
240 | engines: {node: '>= 10'}
241 | cpu: [arm64]
242 | os: [darwin]
243 |
244 | '@next/swc-darwin-x64@14.2.5':
245 | resolution: {integrity: sha512-vXHOPCwfDe9qLDuq7U1OYM2wUY+KQ4Ex6ozwsKxp26BlJ6XXbHleOUldenM67JRyBfVjv371oneEvYd3H2gNSA==}
246 | engines: {node: '>= 10'}
247 | cpu: [x64]
248 | os: [darwin]
249 |
250 | '@next/swc-linux-arm64-gnu@14.2.5':
251 | resolution: {integrity: sha512-vlhB8wI+lj8q1ExFW8lbWutA4M2ZazQNvMWuEDqZcuJJc78iUnLdPPunBPX8rC4IgT6lIx/adB+Cwrl99MzNaA==}
252 | engines: {node: '>= 10'}
253 | cpu: [arm64]
254 | os: [linux]
255 |
256 | '@next/swc-linux-arm64-musl@14.2.5':
257 | resolution: {integrity: sha512-NpDB9NUR2t0hXzJJwQSGu1IAOYybsfeB+LxpGsXrRIb7QOrYmidJz3shzY8cM6+rO4Aojuef0N/PEaX18pi9OA==}
258 | engines: {node: '>= 10'}
259 | cpu: [arm64]
260 | os: [linux]
261 |
262 | '@next/swc-linux-x64-gnu@14.2.5':
263 | resolution: {integrity: sha512-8XFikMSxWleYNryWIjiCX+gU201YS+erTUidKdyOVYi5qUQo/gRxv/3N1oZFCgqpesN6FPeqGM72Zve+nReVXQ==}
264 | engines: {node: '>= 10'}
265 | cpu: [x64]
266 | os: [linux]
267 |
268 | '@next/swc-linux-x64-musl@14.2.5':
269 | resolution: {integrity: sha512-6QLwi7RaYiQDcRDSU/os40r5o06b5ue7Jsk5JgdRBGGp8l37RZEh9JsLSM8QF0YDsgcosSeHjglgqi25+m04IQ==}
270 | engines: {node: '>= 10'}
271 | cpu: [x64]
272 | os: [linux]
273 |
274 | '@next/swc-win32-arm64-msvc@14.2.5':
275 | resolution: {integrity: sha512-1GpG2VhbspO+aYoMOQPQiqc/tG3LzmsdBH0LhnDS3JrtDx2QmzXe0B6mSZZiN3Bq7IOMXxv1nlsjzoS1+9mzZw==}
276 | engines: {node: '>= 10'}
277 | cpu: [arm64]
278 | os: [win32]
279 |
280 | '@next/swc-win32-ia32-msvc@14.2.5':
281 | resolution: {integrity: sha512-Igh9ZlxwvCDsu6438FXlQTHlRno4gFpJzqPjSIBZooD22tKeI4fE/YMRoHVJHmrQ2P5YL1DoZ0qaOKkbeFWeMg==}
282 | engines: {node: '>= 10'}
283 | cpu: [ia32]
284 | os: [win32]
285 |
286 | '@next/swc-win32-x64-msvc@14.2.5':
287 | resolution: {integrity: sha512-tEQ7oinq1/CjSG9uSTerca3v4AZ+dFa+4Yu6ihaG8Ud8ddqLQgFGcnwYls13H5X5CPDPZJdYxyeMui6muOLd4g==}
288 | engines: {node: '>= 10'}
289 | cpu: [x64]
290 | os: [win32]
291 |
292 | '@nodelib/fs.scandir@2.1.5':
293 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
294 | engines: {node: '>= 8'}
295 |
296 | '@nodelib/fs.stat@2.0.5':
297 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
298 | engines: {node: '>= 8'}
299 |
300 | '@nodelib/fs.walk@1.2.8':
301 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
302 | engines: {node: '>= 8'}
303 |
304 | '@opentelemetry/api@1.9.0':
305 | resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
306 | engines: {node: '>=8.0.0'}
307 |
308 | '@pkgjs/parseargs@0.11.0':
309 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
310 | engines: {node: '>=14'}
311 |
312 | '@radix-ui/primitive@1.1.0':
313 | resolution: {integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==}
314 |
315 | '@radix-ui/react-arrow@1.1.0':
316 | resolution: {integrity: sha512-FmlW1rCg7hBpEBwFbjHwCW6AmWLQM6g/v0Sn8XbP9NvmSZ2San1FpQeyPtufzOMSIx7Y4dzjlHoifhp+7NkZhw==}
317 | peerDependencies:
318 | '@types/react': '*'
319 | '@types/react-dom': '*'
320 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
321 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
322 | peerDependenciesMeta:
323 | '@types/react':
324 | optional: true
325 | '@types/react-dom':
326 | optional: true
327 |
328 | '@radix-ui/react-avatar@1.1.0':
329 | resolution: {integrity: sha512-Q/PbuSMk/vyAd/UoIShVGZ7StHHeRFYU7wXmi5GV+8cLXflZAEpHL/F697H1klrzxKXNtZ97vWiC0q3RKUH8UA==}
330 | peerDependencies:
331 | '@types/react': '*'
332 | '@types/react-dom': '*'
333 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
334 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
335 | peerDependenciesMeta:
336 | '@types/react':
337 | optional: true
338 | '@types/react-dom':
339 | optional: true
340 |
341 | '@radix-ui/react-collection@1.1.0':
342 | resolution: {integrity: sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==}
343 | peerDependencies:
344 | '@types/react': '*'
345 | '@types/react-dom': '*'
346 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
347 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
348 | peerDependenciesMeta:
349 | '@types/react':
350 | optional: true
351 | '@types/react-dom':
352 | optional: true
353 |
354 | '@radix-ui/react-compose-refs@1.1.0':
355 | resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==}
356 | peerDependencies:
357 | '@types/react': '*'
358 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
359 | peerDependenciesMeta:
360 | '@types/react':
361 | optional: true
362 |
363 | '@radix-ui/react-context@1.1.0':
364 | resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==}
365 | peerDependencies:
366 | '@types/react': '*'
367 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
368 | peerDependenciesMeta:
369 | '@types/react':
370 | optional: true
371 |
372 | '@radix-ui/react-direction@1.1.0':
373 | resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
374 | peerDependencies:
375 | '@types/react': '*'
376 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
377 | peerDependenciesMeta:
378 | '@types/react':
379 | optional: true
380 |
381 | '@radix-ui/react-dismissable-layer@1.1.0':
382 | resolution: {integrity: sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==}
383 | peerDependencies:
384 | '@types/react': '*'
385 | '@types/react-dom': '*'
386 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
387 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
388 | peerDependenciesMeta:
389 | '@types/react':
390 | optional: true
391 | '@types/react-dom':
392 | optional: true
393 |
394 | '@radix-ui/react-focus-guards@1.1.0':
395 | resolution: {integrity: sha512-w6XZNUPVv6xCpZUqb/yN9DL6auvpGX3C/ee6Hdi16v2UUy25HV2Q5bcflsiDyT/g5RwbPQ/GIT1vLkeRb+ITBw==}
396 | peerDependencies:
397 | '@types/react': '*'
398 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
399 | peerDependenciesMeta:
400 | '@types/react':
401 | optional: true
402 |
403 | '@radix-ui/react-focus-scope@1.1.0':
404 | resolution: {integrity: sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==}
405 | peerDependencies:
406 | '@types/react': '*'
407 | '@types/react-dom': '*'
408 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
409 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
410 | peerDependenciesMeta:
411 | '@types/react':
412 | optional: true
413 | '@types/react-dom':
414 | optional: true
415 |
416 | '@radix-ui/react-id@1.1.0':
417 | resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
418 | peerDependencies:
419 | '@types/react': '*'
420 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
421 | peerDependenciesMeta:
422 | '@types/react':
423 | optional: true
424 |
425 | '@radix-ui/react-popover@1.1.1':
426 | resolution: {integrity: sha512-3y1A3isulwnWhvTTwmIreiB8CF4L+qRjZnK1wYLO7pplddzXKby/GnZ2M7OZY3qgnl6p9AodUIHRYGXNah8Y7g==}
427 | peerDependencies:
428 | '@types/react': '*'
429 | '@types/react-dom': '*'
430 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
431 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
432 | peerDependenciesMeta:
433 | '@types/react':
434 | optional: true
435 | '@types/react-dom':
436 | optional: true
437 |
438 | '@radix-ui/react-popper@1.2.0':
439 | resolution: {integrity: sha512-ZnRMshKF43aBxVWPWvbj21+7TQCvhuULWJ4gNIKYpRlQt5xGRhLx66tMp8pya2UkGHTSlhpXwmjqltDYHhw7Vg==}
440 | peerDependencies:
441 | '@types/react': '*'
442 | '@types/react-dom': '*'
443 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
444 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
445 | peerDependenciesMeta:
446 | '@types/react':
447 | optional: true
448 | '@types/react-dom':
449 | optional: true
450 |
451 | '@radix-ui/react-portal@1.1.1':
452 | resolution: {integrity: sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==}
453 | peerDependencies:
454 | '@types/react': '*'
455 | '@types/react-dom': '*'
456 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
457 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
458 | peerDependenciesMeta:
459 | '@types/react':
460 | optional: true
461 | '@types/react-dom':
462 | optional: true
463 |
464 | '@radix-ui/react-presence@1.1.0':
465 | resolution: {integrity: sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==}
466 | peerDependencies:
467 | '@types/react': '*'
468 | '@types/react-dom': '*'
469 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
470 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
471 | peerDependenciesMeta:
472 | '@types/react':
473 | optional: true
474 | '@types/react-dom':
475 | optional: true
476 |
477 | '@radix-ui/react-primitive@2.0.0':
478 | resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==}
479 | peerDependencies:
480 | '@types/react': '*'
481 | '@types/react-dom': '*'
482 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
483 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
484 | peerDependenciesMeta:
485 | '@types/react':
486 | optional: true
487 | '@types/react-dom':
488 | optional: true
489 |
490 | '@radix-ui/react-roving-focus@1.1.0':
491 | resolution: {integrity: sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==}
492 | peerDependencies:
493 | '@types/react': '*'
494 | '@types/react-dom': '*'
495 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
496 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
497 | peerDependenciesMeta:
498 | '@types/react':
499 | optional: true
500 | '@types/react-dom':
501 | optional: true
502 |
503 | '@radix-ui/react-slot@1.1.0':
504 | resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==}
505 | peerDependencies:
506 | '@types/react': '*'
507 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
508 | peerDependenciesMeta:
509 | '@types/react':
510 | optional: true
511 |
512 | '@radix-ui/react-tabs@1.1.0':
513 | resolution: {integrity: sha512-bZgOKB/LtZIij75FSuPzyEti/XBhJH52ExgtdVqjCIh+Nx/FW+LhnbXtbCzIi34ccyMsyOja8T0thCzoHFXNKA==}
514 | peerDependencies:
515 | '@types/react': '*'
516 | '@types/react-dom': '*'
517 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
518 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
519 | peerDependenciesMeta:
520 | '@types/react':
521 | optional: true
522 | '@types/react-dom':
523 | optional: true
524 |
525 | '@radix-ui/react-tooltip@1.1.2':
526 | resolution: {integrity: sha512-9XRsLwe6Yb9B/tlnYCPVUd/TFS4J7HuOZW345DCeC6vKIxQGMZdx21RK4VoZauPD5frgkXTYVS5y90L+3YBn4w==}
527 | peerDependencies:
528 | '@types/react': '*'
529 | '@types/react-dom': '*'
530 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
531 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
532 | peerDependenciesMeta:
533 | '@types/react':
534 | optional: true
535 | '@types/react-dom':
536 | optional: true
537 |
538 | '@radix-ui/react-use-callback-ref@1.1.0':
539 | resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
540 | peerDependencies:
541 | '@types/react': '*'
542 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
543 | peerDependenciesMeta:
544 | '@types/react':
545 | optional: true
546 |
547 | '@radix-ui/react-use-controllable-state@1.1.0':
548 | resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
549 | peerDependencies:
550 | '@types/react': '*'
551 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
552 | peerDependenciesMeta:
553 | '@types/react':
554 | optional: true
555 |
556 | '@radix-ui/react-use-escape-keydown@1.1.0':
557 | resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
558 | peerDependencies:
559 | '@types/react': '*'
560 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
561 | peerDependenciesMeta:
562 | '@types/react':
563 | optional: true
564 |
565 | '@radix-ui/react-use-layout-effect@1.1.0':
566 | resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
567 | peerDependencies:
568 | '@types/react': '*'
569 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
570 | peerDependenciesMeta:
571 | '@types/react':
572 | optional: true
573 |
574 | '@radix-ui/react-use-rect@1.1.0':
575 | resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
576 | peerDependencies:
577 | '@types/react': '*'
578 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
579 | peerDependenciesMeta:
580 | '@types/react':
581 | optional: true
582 |
583 | '@radix-ui/react-use-size@1.1.0':
584 | resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
585 | peerDependencies:
586 | '@types/react': '*'
587 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
588 | peerDependenciesMeta:
589 | '@types/react':
590 | optional: true
591 |
592 | '@radix-ui/react-visually-hidden@1.1.0':
593 | resolution: {integrity: sha512-N8MDZqtgCgG5S3aV60INAB475osJousYpZ4cTJ2cFbMpdHS5Y6loLTH8LPtkj2QN0x93J30HT/M3qJXM0+lyeQ==}
594 | peerDependencies:
595 | '@types/react': '*'
596 | '@types/react-dom': '*'
597 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
598 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
599 | peerDependenciesMeta:
600 | '@types/react':
601 | optional: true
602 | '@types/react-dom':
603 | optional: true
604 |
605 | '@radix-ui/rect@1.1.0':
606 | resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
607 |
608 | '@rushstack/eslint-patch@1.10.3':
609 | resolution: {integrity: sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg==}
610 |
611 | '@swc/counter@0.1.3':
612 | resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
613 |
614 | '@swc/helpers@0.5.5':
615 | resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
616 |
617 | '@types/debug@4.1.12':
618 | resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
619 |
620 | '@types/estree-jsx@1.0.5':
621 | resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
622 |
623 | '@types/estree@1.0.5':
624 | resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
625 |
626 | '@types/hast@2.3.10':
627 | resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==}
628 |
629 | '@types/hast@3.0.4':
630 | resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
631 |
632 | '@types/json5@0.0.29':
633 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
634 |
635 | '@types/mdast@4.0.4':
636 | resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
637 |
638 | '@types/ms@0.7.34':
639 | resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
640 |
641 | '@types/node@20.14.8':
642 | resolution: {integrity: sha512-DO+2/jZinXfROG7j7WKFn/3C6nFwxy2lLpgLjEXJz+0XKphZlTLJ14mo8Vfg8X5BWN6XjyESXq+LcYdT7tR3bA==}
643 |
644 | '@types/prop-types@15.7.12':
645 | resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
646 |
647 | '@types/react-dom@18.3.0':
648 | resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
649 |
650 | '@types/react-syntax-highlighter@15.5.13':
651 | resolution: {integrity: sha512-uLGJ87j6Sz8UaBAooU0T6lWJ0dBmjZgN1PZTrj05TNql2/XpC6+4HhMT5syIdFUUt+FASfCeLLv4kBygNU+8qA==}
652 |
653 | '@types/react@18.3.3':
654 | resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==}
655 |
656 | '@types/unist@2.0.10':
657 | resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
658 |
659 | '@types/unist@3.0.2':
660 | resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
661 |
662 | '@typescript-eslint/parser@7.2.0':
663 | resolution: {integrity: sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==}
664 | engines: {node: ^16.0.0 || >=18.0.0}
665 | peerDependencies:
666 | eslint: ^8.56.0
667 | typescript: '*'
668 | peerDependenciesMeta:
669 | typescript:
670 | optional: true
671 |
672 | '@typescript-eslint/scope-manager@7.2.0':
673 | resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==}
674 | engines: {node: ^16.0.0 || >=18.0.0}
675 |
676 | '@typescript-eslint/types@7.2.0':
677 | resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==}
678 | engines: {node: ^16.0.0 || >=18.0.0}
679 |
680 | '@typescript-eslint/typescript-estree@7.2.0':
681 | resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==}
682 | engines: {node: ^16.0.0 || >=18.0.0}
683 | peerDependencies:
684 | typescript: '*'
685 | peerDependenciesMeta:
686 | typescript:
687 | optional: true
688 |
689 | '@typescript-eslint/visitor-keys@7.2.0':
690 | resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==}
691 | engines: {node: ^16.0.0 || >=18.0.0}
692 |
693 | '@ungap/structured-clone@1.2.0':
694 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
695 |
696 | acorn-jsx@5.3.2:
697 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
698 | peerDependencies:
699 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
700 |
701 | acorn@8.12.0:
702 | resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
703 | engines: {node: '>=0.4.0'}
704 | hasBin: true
705 |
706 | ajv@6.12.6:
707 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
708 |
709 | ansi-regex@5.0.1:
710 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
711 | engines: {node: '>=8'}
712 |
713 | ansi-regex@6.0.1:
714 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
715 | engines: {node: '>=12'}
716 |
717 | ansi-styles@4.3.0:
718 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
719 | engines: {node: '>=8'}
720 |
721 | ansi-styles@6.2.1:
722 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
723 | engines: {node: '>=12'}
724 |
725 | any-promise@1.3.0:
726 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
727 |
728 | anymatch@3.1.3:
729 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
730 | engines: {node: '>= 8'}
731 |
732 | arg@5.0.2:
733 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
734 |
735 | argparse@2.0.1:
736 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
737 |
738 | aria-hidden@1.2.4:
739 | resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
740 | engines: {node: '>=10'}
741 |
742 | aria-query@5.1.3:
743 | resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
744 |
745 | array-buffer-byte-length@1.0.1:
746 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
747 | engines: {node: '>= 0.4'}
748 |
749 | array-includes@3.1.8:
750 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
751 | engines: {node: '>= 0.4'}
752 |
753 | array-union@2.1.0:
754 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
755 | engines: {node: '>=8'}
756 |
757 | array.prototype.findlast@1.2.5:
758 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
759 | engines: {node: '>= 0.4'}
760 |
761 | array.prototype.findlastindex@1.2.5:
762 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
763 | engines: {node: '>= 0.4'}
764 |
765 | array.prototype.flat@1.3.2:
766 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
767 | engines: {node: '>= 0.4'}
768 |
769 | array.prototype.flatmap@1.3.2:
770 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
771 | engines: {node: '>= 0.4'}
772 |
773 | array.prototype.toreversed@1.1.2:
774 | resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==}
775 |
776 | array.prototype.tosorted@1.1.4:
777 | resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
778 | engines: {node: '>= 0.4'}
779 |
780 | arraybuffer.prototype.slice@1.0.3:
781 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
782 | engines: {node: '>= 0.4'}
783 |
784 | ast-types-flow@0.0.8:
785 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
786 |
787 | available-typed-arrays@1.0.7:
788 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
789 | engines: {node: '>= 0.4'}
790 |
791 | axe-core@4.9.1:
792 | resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==}
793 | engines: {node: '>=4'}
794 |
795 | axobject-query@3.1.1:
796 | resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==}
797 |
798 | bail@2.0.2:
799 | resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
800 |
801 | balanced-match@1.0.2:
802 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
803 |
804 | binary-extensions@2.3.0:
805 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
806 | engines: {node: '>=8'}
807 |
808 | brace-expansion@1.1.11:
809 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
810 |
811 | brace-expansion@2.0.1:
812 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
813 |
814 | braces@3.0.3:
815 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
816 | engines: {node: '>=8'}
817 |
818 | busboy@1.6.0:
819 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
820 | engines: {node: '>=10.16.0'}
821 |
822 | call-bind@1.0.7:
823 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
824 | engines: {node: '>= 0.4'}
825 |
826 | callsites@3.1.0:
827 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
828 | engines: {node: '>=6'}
829 |
830 | camelcase-css@2.0.1:
831 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
832 | engines: {node: '>= 6'}
833 |
834 | caniuse-lite@1.0.30001636:
835 | resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==}
836 |
837 | ccount@2.0.1:
838 | resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
839 |
840 | chalk@4.1.2:
841 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
842 | engines: {node: '>=10'}
843 |
844 | character-entities-html4@2.1.0:
845 | resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
846 |
847 | character-entities-legacy@1.1.4:
848 | resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
849 |
850 | character-entities-legacy@3.0.0:
851 | resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
852 |
853 | character-entities@1.2.4:
854 | resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
855 |
856 | character-entities@2.0.2:
857 | resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
858 |
859 | character-reference-invalid@1.1.4:
860 | resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
861 |
862 | character-reference-invalid@2.0.1:
863 | resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
864 |
865 | chokidar@3.6.0:
866 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
867 | engines: {node: '>= 8.10.0'}
868 |
869 | class-variance-authority@0.7.0:
870 | resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
871 |
872 | classnames@2.5.1:
873 | resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
874 |
875 | client-only@0.0.1:
876 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
877 |
878 | clsx@2.0.0:
879 | resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
880 | engines: {node: '>=6'}
881 |
882 | clsx@2.1.1:
883 | resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
884 | engines: {node: '>=6'}
885 |
886 | color-convert@2.0.1:
887 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
888 | engines: {node: '>=7.0.0'}
889 |
890 | color-name@1.1.4:
891 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
892 |
893 | comma-separated-tokens@1.0.8:
894 | resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==}
895 |
896 | comma-separated-tokens@2.0.3:
897 | resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
898 |
899 | commander@4.1.1:
900 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
901 | engines: {node: '>= 6'}
902 |
903 | concat-map@0.0.1:
904 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
905 |
906 | cross-spawn@7.0.3:
907 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
908 | engines: {node: '>= 8'}
909 |
910 | cssesc@3.0.0:
911 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
912 | engines: {node: '>=4'}
913 | hasBin: true
914 |
915 | csstype@3.1.3:
916 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
917 |
918 | damerau-levenshtein@1.0.8:
919 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
920 |
921 | data-view-buffer@1.0.1:
922 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
923 | engines: {node: '>= 0.4'}
924 |
925 | data-view-byte-length@1.0.1:
926 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
927 | engines: {node: '>= 0.4'}
928 |
929 | data-view-byte-offset@1.0.0:
930 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
931 | engines: {node: '>= 0.4'}
932 |
933 | debug@3.2.7:
934 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
935 | peerDependencies:
936 | supports-color: '*'
937 | peerDependenciesMeta:
938 | supports-color:
939 | optional: true
940 |
941 | debug@4.3.5:
942 | resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
943 | engines: {node: '>=6.0'}
944 | peerDependencies:
945 | supports-color: '*'
946 | peerDependenciesMeta:
947 | supports-color:
948 | optional: true
949 |
950 | decode-named-character-reference@1.0.2:
951 | resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
952 |
953 | deep-equal@2.2.3:
954 | resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
955 | engines: {node: '>= 0.4'}
956 |
957 | deep-is@0.1.4:
958 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
959 |
960 | define-data-property@1.1.4:
961 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
962 | engines: {node: '>= 0.4'}
963 |
964 | define-properties@1.2.1:
965 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
966 | engines: {node: '>= 0.4'}
967 |
968 | dequal@2.0.3:
969 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
970 | engines: {node: '>=6'}
971 |
972 | detect-node-es@1.1.0:
973 | resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
974 |
975 | devlop@1.1.0:
976 | resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
977 |
978 | didyoumean@1.2.2:
979 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
980 |
981 | dir-glob@3.0.1:
982 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
983 | engines: {node: '>=8'}
984 |
985 | dlv@1.1.3:
986 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
987 |
988 | doctrine@2.1.0:
989 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
990 | engines: {node: '>=0.10.0'}
991 |
992 | doctrine@3.0.0:
993 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
994 | engines: {node: '>=6.0.0'}
995 |
996 | eastasianwidth@0.2.0:
997 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
998 |
999 | emoji-regex@8.0.0:
1000 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
1001 |
1002 | emoji-regex@9.2.2:
1003 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
1004 |
1005 | enhanced-resolve@5.17.0:
1006 | resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==}
1007 | engines: {node: '>=10.13.0'}
1008 |
1009 | es-abstract@1.23.3:
1010 | resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
1011 | engines: {node: '>= 0.4'}
1012 |
1013 | es-define-property@1.0.0:
1014 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
1015 | engines: {node: '>= 0.4'}
1016 |
1017 | es-errors@1.3.0:
1018 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
1019 | engines: {node: '>= 0.4'}
1020 |
1021 | es-get-iterator@1.1.3:
1022 | resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
1023 |
1024 | es-iterator-helpers@1.0.19:
1025 | resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
1026 | engines: {node: '>= 0.4'}
1027 |
1028 | es-object-atoms@1.0.0:
1029 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
1030 | engines: {node: '>= 0.4'}
1031 |
1032 | es-set-tostringtag@2.0.3:
1033 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
1034 | engines: {node: '>= 0.4'}
1035 |
1036 | es-shim-unscopables@1.0.2:
1037 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
1038 |
1039 | es-to-primitive@1.2.1:
1040 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
1041 | engines: {node: '>= 0.4'}
1042 |
1043 | escape-string-regexp@4.0.0:
1044 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
1045 | engines: {node: '>=10'}
1046 |
1047 | eslint-config-next@14.2.5:
1048 | resolution: {integrity: sha512-zogs9zlOiZ7ka+wgUnmcM0KBEDjo4Jis7kxN1jvC0N4wynQ2MIx/KBkg4mVF63J5EK4W0QMCn7xO3vNisjaAoA==}
1049 | peerDependencies:
1050 | eslint: ^7.23.0 || ^8.0.0
1051 | typescript: '>=3.3.1'
1052 | peerDependenciesMeta:
1053 | typescript:
1054 | optional: true
1055 |
1056 | eslint-import-resolver-node@0.3.9:
1057 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
1058 |
1059 | eslint-import-resolver-typescript@3.6.1:
1060 | resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
1061 | engines: {node: ^14.18.0 || >=16.0.0}
1062 | peerDependencies:
1063 | eslint: '*'
1064 | eslint-plugin-import: '*'
1065 |
1066 | eslint-module-utils@2.8.1:
1067 | resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
1068 | engines: {node: '>=4'}
1069 | peerDependencies:
1070 | '@typescript-eslint/parser': '*'
1071 | eslint: '*'
1072 | eslint-import-resolver-node: '*'
1073 | eslint-import-resolver-typescript: '*'
1074 | eslint-import-resolver-webpack: '*'
1075 | peerDependenciesMeta:
1076 | '@typescript-eslint/parser':
1077 | optional: true
1078 | eslint:
1079 | optional: true
1080 | eslint-import-resolver-node:
1081 | optional: true
1082 | eslint-import-resolver-typescript:
1083 | optional: true
1084 | eslint-import-resolver-webpack:
1085 | optional: true
1086 |
1087 | eslint-plugin-import@2.29.1:
1088 | resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
1089 | engines: {node: '>=4'}
1090 | peerDependencies:
1091 | '@typescript-eslint/parser': '*'
1092 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
1093 | peerDependenciesMeta:
1094 | '@typescript-eslint/parser':
1095 | optional: true
1096 |
1097 | eslint-plugin-jsx-a11y@6.9.0:
1098 | resolution: {integrity: sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g==}
1099 | engines: {node: '>=4.0'}
1100 | peerDependencies:
1101 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
1102 |
1103 | eslint-plugin-react-hooks@4.6.2:
1104 | resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
1105 | engines: {node: '>=10'}
1106 | peerDependencies:
1107 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
1108 |
1109 | eslint-plugin-react@7.34.3:
1110 | resolution: {integrity: sha512-aoW4MV891jkUulwDApQbPYTVZmeuSyFrudpbTAQuj5Fv8VL+o6df2xIGpw8B0hPjAaih1/Fb0om9grCdyFYemA==}
1111 | engines: {node: '>=4'}
1112 | peerDependencies:
1113 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
1114 |
1115 | eslint-scope@7.2.2:
1116 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
1117 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1118 |
1119 | eslint-visitor-keys@3.4.3:
1120 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
1121 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1122 |
1123 | eslint@8.57.0:
1124 | resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
1125 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1126 | hasBin: true
1127 |
1128 | espree@9.6.1:
1129 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
1130 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1131 |
1132 | esquery@1.5.0:
1133 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
1134 | engines: {node: '>=0.10'}
1135 |
1136 | esrecurse@4.3.0:
1137 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1138 | engines: {node: '>=4.0'}
1139 |
1140 | estraverse@5.3.0:
1141 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1142 | engines: {node: '>=4.0'}
1143 |
1144 | estree-util-is-identifier-name@3.0.0:
1145 | resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
1146 |
1147 | esutils@2.0.3:
1148 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1149 | engines: {node: '>=0.10.0'}
1150 |
1151 | eventsource-parser@1.1.2:
1152 | resolution: {integrity: sha512-v0eOBUbiaFojBu2s2NPBfYUoRR9GjcDNvCXVaqEf5vVfpIAh9f8RCo4vXTP8c63QRKCFwoLpMpTdPwwhEKVgzA==}
1153 | engines: {node: '>=14.18'}
1154 |
1155 | extend@3.0.2:
1156 | resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
1157 |
1158 | fast-deep-equal@3.1.3:
1159 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1160 |
1161 | fast-glob@3.3.2:
1162 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
1163 | engines: {node: '>=8.6.0'}
1164 |
1165 | fast-json-stable-stringify@2.1.0:
1166 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1167 |
1168 | fast-levenshtein@2.0.6:
1169 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1170 |
1171 | fastq@1.17.1:
1172 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
1173 |
1174 | fault@1.0.4:
1175 | resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==}
1176 |
1177 | file-entry-cache@6.0.1:
1178 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
1179 | engines: {node: ^10.12.0 || >=12.0.0}
1180 |
1181 | fill-range@7.1.1:
1182 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
1183 | engines: {node: '>=8'}
1184 |
1185 | find-up@5.0.0:
1186 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1187 | engines: {node: '>=10'}
1188 |
1189 | flat-cache@3.2.0:
1190 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
1191 | engines: {node: ^10.12.0 || >=12.0.0}
1192 |
1193 | flatted@3.3.1:
1194 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
1195 |
1196 | for-each@0.3.3:
1197 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
1198 |
1199 | foreground-child@3.2.1:
1200 | resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==}
1201 | engines: {node: '>=14'}
1202 |
1203 | format@0.2.2:
1204 | resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==}
1205 | engines: {node: '>=0.4.x'}
1206 |
1207 | fs.realpath@1.0.0:
1208 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
1209 |
1210 | fsevents@2.3.3:
1211 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1212 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1213 | os: [darwin]
1214 |
1215 | function-bind@1.1.2:
1216 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
1217 |
1218 | function.prototype.name@1.1.6:
1219 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
1220 | engines: {node: '>= 0.4'}
1221 |
1222 | functions-have-names@1.2.3:
1223 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
1224 |
1225 | get-intrinsic@1.2.4:
1226 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
1227 | engines: {node: '>= 0.4'}
1228 |
1229 | get-nonce@1.0.1:
1230 | resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
1231 | engines: {node: '>=6'}
1232 |
1233 | get-symbol-description@1.0.2:
1234 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
1235 | engines: {node: '>= 0.4'}
1236 |
1237 | get-tsconfig@4.7.5:
1238 | resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==}
1239 |
1240 | glob-parent@5.1.2:
1241 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1242 | engines: {node: '>= 6'}
1243 |
1244 | glob-parent@6.0.2:
1245 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1246 | engines: {node: '>=10.13.0'}
1247 |
1248 | glob@10.3.10:
1249 | resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
1250 | engines: {node: '>=16 || 14 >=14.17'}
1251 | hasBin: true
1252 |
1253 | glob@10.4.2:
1254 | resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==}
1255 | engines: {node: '>=16 || 14 >=14.18'}
1256 | hasBin: true
1257 |
1258 | glob@7.2.3:
1259 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
1260 | deprecated: Glob versions prior to v9 are no longer supported
1261 |
1262 | globals@13.24.0:
1263 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
1264 | engines: {node: '>=8'}
1265 |
1266 | globalthis@1.0.4:
1267 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
1268 | engines: {node: '>= 0.4'}
1269 |
1270 | globby@11.1.0:
1271 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
1272 | engines: {node: '>=10'}
1273 |
1274 | gopd@1.0.1:
1275 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
1276 |
1277 | graceful-fs@4.2.11:
1278 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
1279 |
1280 | graphemer@1.4.0:
1281 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
1282 |
1283 | has-bigints@1.0.2:
1284 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
1285 |
1286 | has-flag@4.0.0:
1287 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1288 | engines: {node: '>=8'}
1289 |
1290 | has-property-descriptors@1.0.2:
1291 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
1292 |
1293 | has-proto@1.0.3:
1294 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
1295 | engines: {node: '>= 0.4'}
1296 |
1297 | has-symbols@1.0.3:
1298 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
1299 | engines: {node: '>= 0.4'}
1300 |
1301 | has-tostringtag@1.0.2:
1302 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
1303 | engines: {node: '>= 0.4'}
1304 |
1305 | hasown@2.0.2:
1306 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
1307 | engines: {node: '>= 0.4'}
1308 |
1309 | hast-util-parse-selector@2.2.5:
1310 | resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==}
1311 |
1312 | hast-util-to-jsx-runtime@2.3.0:
1313 | resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==}
1314 |
1315 | hast-util-whitespace@3.0.0:
1316 | resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
1317 |
1318 | hastscript@6.0.0:
1319 | resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
1320 |
1321 | highlight.js@10.7.3:
1322 | resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==}
1323 |
1324 | html-format@1.1.7:
1325 | resolution: {integrity: sha512-ba6woq8dni6HkfRFpsu27PrCM/sxEz9KrVW22xVyMbXsZHbSpJE6Z1gAl7OeqEfU92MKYb9Pn7MnIyqV5tJHKA==}
1326 |
1327 | html-url-attributes@3.0.0:
1328 | resolution: {integrity: sha512-/sXbVCWayk6GDVg3ctOX6nxaVj7So40FcFAnWlWGNAB1LpYKcV5Cd10APjPjW80O7zYW2MsjBV4zZ7IZO5fVow==}
1329 |
1330 | ignore@5.3.1:
1331 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
1332 | engines: {node: '>= 4'}
1333 |
1334 | import-fresh@3.3.0:
1335 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
1336 | engines: {node: '>=6'}
1337 |
1338 | imurmurhash@0.1.4:
1339 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1340 | engines: {node: '>=0.8.19'}
1341 |
1342 | inflight@1.0.6:
1343 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
1344 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
1345 |
1346 | inherits@2.0.4:
1347 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1348 |
1349 | inline-style-parser@0.2.3:
1350 | resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==}
1351 |
1352 | internal-slot@1.0.7:
1353 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
1354 | engines: {node: '>= 0.4'}
1355 |
1356 | invariant@2.2.4:
1357 | resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
1358 |
1359 | is-alphabetical@1.0.4:
1360 | resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
1361 |
1362 | is-alphabetical@2.0.1:
1363 | resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
1364 |
1365 | is-alphanumerical@1.0.4:
1366 | resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
1367 |
1368 | is-alphanumerical@2.0.1:
1369 | resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
1370 |
1371 | is-arguments@1.1.1:
1372 | resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
1373 | engines: {node: '>= 0.4'}
1374 |
1375 | is-array-buffer@3.0.4:
1376 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
1377 | engines: {node: '>= 0.4'}
1378 |
1379 | is-async-function@2.0.0:
1380 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
1381 | engines: {node: '>= 0.4'}
1382 |
1383 | is-bigint@1.0.4:
1384 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
1385 |
1386 | is-binary-path@2.1.0:
1387 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
1388 | engines: {node: '>=8'}
1389 |
1390 | is-boolean-object@1.1.2:
1391 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
1392 | engines: {node: '>= 0.4'}
1393 |
1394 | is-callable@1.2.7:
1395 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
1396 | engines: {node: '>= 0.4'}
1397 |
1398 | is-core-module@2.14.0:
1399 | resolution: {integrity: sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==}
1400 | engines: {node: '>= 0.4'}
1401 |
1402 | is-data-view@1.0.1:
1403 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
1404 | engines: {node: '>= 0.4'}
1405 |
1406 | is-date-object@1.0.5:
1407 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
1408 | engines: {node: '>= 0.4'}
1409 |
1410 | is-decimal@1.0.4:
1411 | resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
1412 |
1413 | is-decimal@2.0.1:
1414 | resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
1415 |
1416 | is-extglob@2.1.1:
1417 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1418 | engines: {node: '>=0.10.0'}
1419 |
1420 | is-finalizationregistry@1.0.2:
1421 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
1422 |
1423 | is-fullwidth-code-point@3.0.0:
1424 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
1425 | engines: {node: '>=8'}
1426 |
1427 | is-generator-function@1.0.10:
1428 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
1429 | engines: {node: '>= 0.4'}
1430 |
1431 | is-glob@4.0.3:
1432 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1433 | engines: {node: '>=0.10.0'}
1434 |
1435 | is-hexadecimal@1.0.4:
1436 | resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
1437 |
1438 | is-hexadecimal@2.0.1:
1439 | resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
1440 |
1441 | is-map@2.0.3:
1442 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
1443 | engines: {node: '>= 0.4'}
1444 |
1445 | is-negative-zero@2.0.3:
1446 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
1447 | engines: {node: '>= 0.4'}
1448 |
1449 | is-number-object@1.0.7:
1450 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
1451 | engines: {node: '>= 0.4'}
1452 |
1453 | is-number@7.0.0:
1454 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1455 | engines: {node: '>=0.12.0'}
1456 |
1457 | is-path-inside@3.0.3:
1458 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
1459 | engines: {node: '>=8'}
1460 |
1461 | is-plain-obj@4.1.0:
1462 | resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
1463 | engines: {node: '>=12'}
1464 |
1465 | is-regex@1.1.4:
1466 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
1467 | engines: {node: '>= 0.4'}
1468 |
1469 | is-set@2.0.3:
1470 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
1471 | engines: {node: '>= 0.4'}
1472 |
1473 | is-shared-array-buffer@1.0.3:
1474 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
1475 | engines: {node: '>= 0.4'}
1476 |
1477 | is-string@1.0.7:
1478 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
1479 | engines: {node: '>= 0.4'}
1480 |
1481 | is-symbol@1.0.4:
1482 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
1483 | engines: {node: '>= 0.4'}
1484 |
1485 | is-typed-array@1.1.13:
1486 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
1487 | engines: {node: '>= 0.4'}
1488 |
1489 | is-weakmap@2.0.2:
1490 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
1491 | engines: {node: '>= 0.4'}
1492 |
1493 | is-weakref@1.0.2:
1494 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
1495 |
1496 | is-weakset@2.0.3:
1497 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
1498 | engines: {node: '>= 0.4'}
1499 |
1500 | isarray@2.0.5:
1501 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
1502 |
1503 | isexe@2.0.0:
1504 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1505 |
1506 | iterator.prototype@1.1.2:
1507 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
1508 |
1509 | jackspeak@2.3.6:
1510 | resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
1511 | engines: {node: '>=14'}
1512 |
1513 | jackspeak@3.4.0:
1514 | resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==}
1515 | engines: {node: '>=14'}
1516 |
1517 | jiti@1.21.6:
1518 | resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
1519 | hasBin: true
1520 |
1521 | js-tokens@4.0.0:
1522 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1523 |
1524 | js-yaml@4.1.0:
1525 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1526 | hasBin: true
1527 |
1528 | json-buffer@3.0.1:
1529 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1530 |
1531 | json-schema-traverse@0.4.1:
1532 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1533 |
1534 | json-schema@0.4.0:
1535 | resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
1536 |
1537 | json-stable-stringify-without-jsonify@1.0.1:
1538 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1539 |
1540 | json5@1.0.2:
1541 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
1542 | hasBin: true
1543 |
1544 | jsx-ast-utils@3.3.5:
1545 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
1546 | engines: {node: '>=4.0'}
1547 |
1548 | keyv@4.5.4:
1549 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1550 |
1551 | language-subtag-registry@0.3.23:
1552 | resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
1553 |
1554 | language-tags@1.0.9:
1555 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
1556 | engines: {node: '>=0.10'}
1557 |
1558 | levn@0.4.1:
1559 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1560 | engines: {node: '>= 0.8.0'}
1561 |
1562 | lilconfig@2.1.0:
1563 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
1564 | engines: {node: '>=10'}
1565 |
1566 | lilconfig@3.1.2:
1567 | resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
1568 | engines: {node: '>=14'}
1569 |
1570 | lines-and-columns@1.2.4:
1571 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1572 |
1573 | locate-path@6.0.0:
1574 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1575 | engines: {node: '>=10'}
1576 |
1577 | lodash.merge@4.6.2:
1578 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1579 |
1580 | longest-streak@3.1.0:
1581 | resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
1582 |
1583 | loose-envify@1.4.0:
1584 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1585 | hasBin: true
1586 |
1587 | lowlight@1.20.0:
1588 | resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==}
1589 |
1590 | lru-cache@10.2.2:
1591 | resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==}
1592 | engines: {node: 14 || >=16.14}
1593 |
1594 | lucide-react@0.407.0:
1595 | resolution: {integrity: sha512-+dRIu9Sry+E8wPF9+sY5eKld2omrU4X5IKXxrgqBt+o11IIHVU0QOfNoVWFuj0ZRDrxr4Wci26o2mKZqLGE0lA==}
1596 | peerDependencies:
1597 | react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
1598 |
1599 | lucide-react@0.408.0:
1600 | resolution: {integrity: sha512-8kETAAeWmOvtGIr7HPHm51DXoxlfkNncQ5FZWXR+abX8saQwMYXANWIkUstaYtcKSo/imOe/q+tVFA8ANzdSVA==}
1601 | peerDependencies:
1602 | react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
1603 |
1604 | mdast-util-from-markdown@2.0.1:
1605 | resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
1606 |
1607 | mdast-util-mdx-expression@2.0.0:
1608 | resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==}
1609 |
1610 | mdast-util-mdx-jsx@3.1.2:
1611 | resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==}
1612 |
1613 | mdast-util-mdxjs-esm@2.0.1:
1614 | resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==}
1615 |
1616 | mdast-util-phrasing@4.1.0:
1617 | resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
1618 |
1619 | mdast-util-to-hast@13.2.0:
1620 | resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==}
1621 |
1622 | mdast-util-to-markdown@2.1.0:
1623 | resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
1624 |
1625 | mdast-util-to-string@4.0.0:
1626 | resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
1627 |
1628 | merge2@1.4.1:
1629 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1630 | engines: {node: '>= 8'}
1631 |
1632 | micromark-core-commonmark@2.0.1:
1633 | resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==}
1634 |
1635 | micromark-factory-destination@2.0.0:
1636 | resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==}
1637 |
1638 | micromark-factory-label@2.0.0:
1639 | resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==}
1640 |
1641 | micromark-factory-space@2.0.0:
1642 | resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==}
1643 |
1644 | micromark-factory-title@2.0.0:
1645 | resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==}
1646 |
1647 | micromark-factory-whitespace@2.0.0:
1648 | resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==}
1649 |
1650 | micromark-util-character@2.1.0:
1651 | resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==}
1652 |
1653 | micromark-util-chunked@2.0.0:
1654 | resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==}
1655 |
1656 | micromark-util-classify-character@2.0.0:
1657 | resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==}
1658 |
1659 | micromark-util-combine-extensions@2.0.0:
1660 | resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==}
1661 |
1662 | micromark-util-decode-numeric-character-reference@2.0.1:
1663 | resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==}
1664 |
1665 | micromark-util-decode-string@2.0.0:
1666 | resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==}
1667 |
1668 | micromark-util-encode@2.0.0:
1669 | resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==}
1670 |
1671 | micromark-util-html-tag-name@2.0.0:
1672 | resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==}
1673 |
1674 | micromark-util-normalize-identifier@2.0.0:
1675 | resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==}
1676 |
1677 | micromark-util-resolve-all@2.0.0:
1678 | resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==}
1679 |
1680 | micromark-util-sanitize-uri@2.0.0:
1681 | resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==}
1682 |
1683 | micromark-util-subtokenize@2.0.1:
1684 | resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==}
1685 |
1686 | micromark-util-symbol@2.0.0:
1687 | resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==}
1688 |
1689 | micromark-util-types@2.0.0:
1690 | resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==}
1691 |
1692 | micromark@4.0.0:
1693 | resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
1694 |
1695 | micromatch@4.0.7:
1696 | resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
1697 | engines: {node: '>=8.6'}
1698 |
1699 | minimatch@3.1.2:
1700 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1701 |
1702 | minimatch@9.0.3:
1703 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
1704 | engines: {node: '>=16 || 14 >=14.17'}
1705 |
1706 | minimatch@9.0.4:
1707 | resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
1708 | engines: {node: '>=16 || 14 >=14.17'}
1709 |
1710 | minimist@1.2.8:
1711 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
1712 |
1713 | minipass@7.1.2:
1714 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
1715 | engines: {node: '>=16 || 14 >=14.17'}
1716 |
1717 | ms@2.1.2:
1718 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
1719 |
1720 | ms@2.1.3:
1721 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1722 |
1723 | mz@2.7.0:
1724 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
1725 |
1726 | nanoid@3.3.6:
1727 | resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
1728 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1729 | hasBin: true
1730 |
1731 | nanoid@3.3.7:
1732 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
1733 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1734 | hasBin: true
1735 |
1736 | nanoid@5.0.7:
1737 | resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==}
1738 | engines: {node: ^18 || >=20}
1739 | hasBin: true
1740 |
1741 | natural-compare@1.4.0:
1742 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1743 |
1744 | next@14.2.5:
1745 | resolution: {integrity: sha512-0f8aRfBVL+mpzfBjYfQuLWh2WyAwtJXCRfkPF4UJ5qd2YwrHczsrSzXU4tRMV0OAxR8ZJZWPFn6uhSC56UTsLA==}
1746 | engines: {node: '>=18.17.0'}
1747 | hasBin: true
1748 | peerDependencies:
1749 | '@opentelemetry/api': ^1.1.0
1750 | '@playwright/test': ^1.41.2
1751 | react: ^18.2.0
1752 | react-dom: ^18.2.0
1753 | sass: ^1.3.0
1754 | peerDependenciesMeta:
1755 | '@opentelemetry/api':
1756 | optional: true
1757 | '@playwright/test':
1758 | optional: true
1759 | sass:
1760 | optional: true
1761 |
1762 | normalize-path@3.0.0:
1763 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
1764 | engines: {node: '>=0.10.0'}
1765 |
1766 | object-assign@4.1.1:
1767 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1768 | engines: {node: '>=0.10.0'}
1769 |
1770 | object-hash@3.0.0:
1771 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
1772 | engines: {node: '>= 6'}
1773 |
1774 | object-inspect@1.13.2:
1775 | resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
1776 | engines: {node: '>= 0.4'}
1777 |
1778 | object-is@1.1.6:
1779 | resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
1780 | engines: {node: '>= 0.4'}
1781 |
1782 | object-keys@1.1.1:
1783 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
1784 | engines: {node: '>= 0.4'}
1785 |
1786 | object.assign@4.1.5:
1787 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
1788 | engines: {node: '>= 0.4'}
1789 |
1790 | object.entries@1.1.8:
1791 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
1792 | engines: {node: '>= 0.4'}
1793 |
1794 | object.fromentries@2.0.8:
1795 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
1796 | engines: {node: '>= 0.4'}
1797 |
1798 | object.groupby@1.0.3:
1799 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
1800 | engines: {node: '>= 0.4'}
1801 |
1802 | object.hasown@1.1.4:
1803 | resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==}
1804 | engines: {node: '>= 0.4'}
1805 |
1806 | object.values@1.2.0:
1807 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
1808 | engines: {node: '>= 0.4'}
1809 |
1810 | once@1.4.0:
1811 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
1812 |
1813 | optionator@0.9.4:
1814 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1815 | engines: {node: '>= 0.8.0'}
1816 |
1817 | p-limit@3.1.0:
1818 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1819 | engines: {node: '>=10'}
1820 |
1821 | p-locate@5.0.0:
1822 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1823 | engines: {node: '>=10'}
1824 |
1825 | package-json-from-dist@1.0.0:
1826 | resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
1827 |
1828 | parent-module@1.0.1:
1829 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1830 | engines: {node: '>=6'}
1831 |
1832 | parse-entities@2.0.0:
1833 | resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
1834 |
1835 | parse-entities@4.0.1:
1836 | resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
1837 |
1838 | path-exists@4.0.0:
1839 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1840 | engines: {node: '>=8'}
1841 |
1842 | path-is-absolute@1.0.1:
1843 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
1844 | engines: {node: '>=0.10.0'}
1845 |
1846 | path-key@3.1.1:
1847 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1848 | engines: {node: '>=8'}
1849 |
1850 | path-parse@1.0.7:
1851 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1852 |
1853 | path-scurry@1.11.1:
1854 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
1855 | engines: {node: '>=16 || 14 >=14.18'}
1856 |
1857 | path-type@4.0.0:
1858 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
1859 | engines: {node: '>=8'}
1860 |
1861 | picocolors@1.0.1:
1862 | resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
1863 |
1864 | picomatch@2.3.1:
1865 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1866 | engines: {node: '>=8.6'}
1867 |
1868 | pify@2.3.0:
1869 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
1870 | engines: {node: '>=0.10.0'}
1871 |
1872 | pirates@4.0.6:
1873 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
1874 | engines: {node: '>= 6'}
1875 |
1876 | possible-typed-array-names@1.0.0:
1877 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
1878 | engines: {node: '>= 0.4'}
1879 |
1880 | postcss-import@15.1.0:
1881 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
1882 | engines: {node: '>=14.0.0'}
1883 | peerDependencies:
1884 | postcss: ^8.0.0
1885 |
1886 | postcss-js@4.0.1:
1887 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
1888 | engines: {node: ^12 || ^14 || >= 16}
1889 | peerDependencies:
1890 | postcss: ^8.4.21
1891 |
1892 | postcss-load-config@4.0.2:
1893 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
1894 | engines: {node: '>= 14'}
1895 | peerDependencies:
1896 | postcss: '>=8.0.9'
1897 | ts-node: '>=9.0.0'
1898 | peerDependenciesMeta:
1899 | postcss:
1900 | optional: true
1901 | ts-node:
1902 | optional: true
1903 |
1904 | postcss-nested@6.0.1:
1905 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
1906 | engines: {node: '>=12.0'}
1907 | peerDependencies:
1908 | postcss: ^8.2.14
1909 |
1910 | postcss-selector-parser@6.1.0:
1911 | resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==}
1912 | engines: {node: '>=4'}
1913 |
1914 | postcss-value-parser@4.2.0:
1915 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
1916 |
1917 | postcss@8.4.31:
1918 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
1919 | engines: {node: ^10 || ^12 || >=14}
1920 |
1921 | postcss@8.4.38:
1922 | resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
1923 | engines: {node: ^10 || ^12 || >=14}
1924 |
1925 | prelude-ls@1.2.1:
1926 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1927 | engines: {node: '>= 0.8.0'}
1928 |
1929 | prismjs@1.27.0:
1930 | resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==}
1931 | engines: {node: '>=6'}
1932 |
1933 | prismjs@1.29.0:
1934 | resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
1935 | engines: {node: '>=6'}
1936 |
1937 | prop-types@15.8.1:
1938 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
1939 |
1940 | property-information@5.6.0:
1941 | resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
1942 |
1943 | property-information@6.5.0:
1944 | resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
1945 |
1946 | punycode@2.3.1:
1947 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1948 | engines: {node: '>=6'}
1949 |
1950 | queue-microtask@1.2.3:
1951 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1952 |
1953 | react-dom@18.3.1:
1954 | resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
1955 | peerDependencies:
1956 | react: ^18.3.1
1957 |
1958 | react-is@16.13.1:
1959 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
1960 |
1961 | react-markdown@9.0.1:
1962 | resolution: {integrity: sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==}
1963 | peerDependencies:
1964 | '@types/react': '>=18'
1965 | react: '>=18'
1966 |
1967 | react-remove-scroll-bar@2.3.6:
1968 | resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
1969 | engines: {node: '>=10'}
1970 | peerDependencies:
1971 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
1972 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
1973 | peerDependenciesMeta:
1974 | '@types/react':
1975 | optional: true
1976 |
1977 | react-remove-scroll@2.5.7:
1978 | resolution: {integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==}
1979 | engines: {node: '>=10'}
1980 | peerDependencies:
1981 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
1982 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
1983 | peerDependenciesMeta:
1984 | '@types/react':
1985 | optional: true
1986 |
1987 | react-style-singleton@2.2.1:
1988 | resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
1989 | engines: {node: '>=10'}
1990 | peerDependencies:
1991 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
1992 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
1993 | peerDependenciesMeta:
1994 | '@types/react':
1995 | optional: true
1996 |
1997 | react-syntax-highlighter@15.5.0:
1998 | resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==}
1999 | peerDependencies:
2000 | react: '>= 0.14.0'
2001 |
2002 | react-textarea-autosize@8.5.3:
2003 | resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==}
2004 | engines: {node: '>=10'}
2005 | peerDependencies:
2006 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2007 |
2008 | react@18.3.1:
2009 | resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
2010 | engines: {node: '>=0.10.0'}
2011 |
2012 | read-cache@1.0.0:
2013 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
2014 |
2015 | readdirp@3.6.0:
2016 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
2017 | engines: {node: '>=8.10.0'}
2018 |
2019 | reflect.getprototypeof@1.0.6:
2020 | resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
2021 | engines: {node: '>= 0.4'}
2022 |
2023 | refractor@3.6.0:
2024 | resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==}
2025 |
2026 | regenerator-runtime@0.14.1:
2027 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
2028 |
2029 | regexp.prototype.flags@1.5.2:
2030 | resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
2031 | engines: {node: '>= 0.4'}
2032 |
2033 | remark-parse@11.0.0:
2034 | resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
2035 |
2036 | remark-rehype@11.1.0:
2037 | resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==}
2038 |
2039 | resolve-from@4.0.0:
2040 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
2041 | engines: {node: '>=4'}
2042 |
2043 | resolve-pkg-maps@1.0.0:
2044 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
2045 |
2046 | resolve@1.22.8:
2047 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
2048 | hasBin: true
2049 |
2050 | resolve@2.0.0-next.5:
2051 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
2052 | hasBin: true
2053 |
2054 | reusify@1.0.4:
2055 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
2056 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
2057 |
2058 | rimraf@3.0.2:
2059 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
2060 | deprecated: Rimraf versions prior to v4 are no longer supported
2061 | hasBin: true
2062 |
2063 | run-parallel@1.2.0:
2064 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
2065 |
2066 | safe-array-concat@1.1.2:
2067 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
2068 | engines: {node: '>=0.4'}
2069 |
2070 | safe-regex-test@1.0.3:
2071 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
2072 | engines: {node: '>= 0.4'}
2073 |
2074 | scheduler@0.23.2:
2075 | resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
2076 |
2077 | secure-json-parse@2.7.0:
2078 | resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==}
2079 |
2080 | semver@6.3.1:
2081 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
2082 | hasBin: true
2083 |
2084 | semver@7.6.2:
2085 | resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
2086 | engines: {node: '>=10'}
2087 | hasBin: true
2088 |
2089 | set-function-length@1.2.2:
2090 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
2091 | engines: {node: '>= 0.4'}
2092 |
2093 | set-function-name@2.0.2:
2094 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
2095 | engines: {node: '>= 0.4'}
2096 |
2097 | shebang-command@2.0.0:
2098 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
2099 | engines: {node: '>=8'}
2100 |
2101 | shebang-regex@3.0.0:
2102 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
2103 | engines: {node: '>=8'}
2104 |
2105 | side-channel@1.0.6:
2106 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
2107 | engines: {node: '>= 0.4'}
2108 |
2109 | signal-exit@4.1.0:
2110 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
2111 | engines: {node: '>=14'}
2112 |
2113 | slash@3.0.0:
2114 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
2115 | engines: {node: '>=8'}
2116 |
2117 | source-map-js@1.2.0:
2118 | resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
2119 | engines: {node: '>=0.10.0'}
2120 |
2121 | space-separated-tokens@1.1.5:
2122 | resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==}
2123 |
2124 | space-separated-tokens@2.0.2:
2125 | resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
2126 |
2127 | stop-iteration-iterator@1.0.0:
2128 | resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
2129 | engines: {node: '>= 0.4'}
2130 |
2131 | streamsearch@1.1.0:
2132 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
2133 | engines: {node: '>=10.0.0'}
2134 |
2135 | string-width@4.2.3:
2136 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
2137 | engines: {node: '>=8'}
2138 |
2139 | string-width@5.1.2:
2140 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
2141 | engines: {node: '>=12'}
2142 |
2143 | string.prototype.includes@2.0.0:
2144 | resolution: {integrity: sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==}
2145 |
2146 | string.prototype.matchall@4.0.11:
2147 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
2148 | engines: {node: '>= 0.4'}
2149 |
2150 | string.prototype.trim@1.2.9:
2151 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
2152 | engines: {node: '>= 0.4'}
2153 |
2154 | string.prototype.trimend@1.0.8:
2155 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
2156 |
2157 | string.prototype.trimstart@1.0.8:
2158 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
2159 | engines: {node: '>= 0.4'}
2160 |
2161 | stringify-entities@4.0.4:
2162 | resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
2163 |
2164 | strip-ansi@6.0.1:
2165 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
2166 | engines: {node: '>=8'}
2167 |
2168 | strip-ansi@7.1.0:
2169 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
2170 | engines: {node: '>=12'}
2171 |
2172 | strip-bom@3.0.0:
2173 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
2174 | engines: {node: '>=4'}
2175 |
2176 | strip-json-comments@3.1.1:
2177 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
2178 | engines: {node: '>=8'}
2179 |
2180 | style-to-object@1.0.6:
2181 | resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==}
2182 |
2183 | styled-jsx@5.1.1:
2184 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
2185 | engines: {node: '>= 12.0.0'}
2186 | peerDependencies:
2187 | '@babel/core': '*'
2188 | babel-plugin-macros: '*'
2189 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
2190 | peerDependenciesMeta:
2191 | '@babel/core':
2192 | optional: true
2193 | babel-plugin-macros:
2194 | optional: true
2195 |
2196 | sucrase@3.35.0:
2197 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
2198 | engines: {node: '>=16 || 14 >=14.17'}
2199 | hasBin: true
2200 |
2201 | supports-color@7.2.0:
2202 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
2203 | engines: {node: '>=8'}
2204 |
2205 | supports-preserve-symlinks-flag@1.0.0:
2206 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
2207 | engines: {node: '>= 0.4'}
2208 |
2209 | tailwind-merge@2.4.0:
2210 | resolution: {integrity: sha512-49AwoOQNKdqKPd9CViyH5wJoSKsCDjUlzL8DxuGp3P1FsGY36NJDAa18jLZcaHAUUuTj+JB8IAo8zWgBNvBF7A==}
2211 |
2212 | tailwindcss-animate@1.0.7:
2213 | resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
2214 | peerDependencies:
2215 | tailwindcss: '>=3.0.0 || insiders'
2216 |
2217 | tailwindcss@3.4.5:
2218 | resolution: {integrity: sha512-DlTxttYcogpDfx3tf/8jfnma1nfAYi2cBUYV2YNoPPecwmO3YGiFlOX9D8tGAu+EDF38ryBzvrDKU/BLMsUwbw==}
2219 | engines: {node: '>=14.0.0'}
2220 | hasBin: true
2221 |
2222 | tapable@2.2.1:
2223 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
2224 | engines: {node: '>=6'}
2225 |
2226 | text-table@0.2.0:
2227 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
2228 |
2229 | thenify-all@1.6.0:
2230 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
2231 | engines: {node: '>=0.8'}
2232 |
2233 | thenify@3.3.1:
2234 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
2235 |
2236 | to-regex-range@5.0.1:
2237 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
2238 | engines: {node: '>=8.0'}
2239 |
2240 | trim-lines@3.0.1:
2241 | resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
2242 |
2243 | trough@2.2.0:
2244 | resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
2245 |
2246 | ts-api-utils@1.3.0:
2247 | resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
2248 | engines: {node: '>=16'}
2249 | peerDependencies:
2250 | typescript: '>=4.2.0'
2251 |
2252 | ts-interface-checker@0.1.13:
2253 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
2254 |
2255 | tsconfig-paths@3.15.0:
2256 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
2257 |
2258 | tslib@2.6.3:
2259 | resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
2260 |
2261 | type-check@0.4.0:
2262 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
2263 | engines: {node: '>= 0.8.0'}
2264 |
2265 | type-fest@0.20.2:
2266 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
2267 | engines: {node: '>=10'}
2268 |
2269 | typed-array-buffer@1.0.2:
2270 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
2271 | engines: {node: '>= 0.4'}
2272 |
2273 | typed-array-byte-length@1.0.1:
2274 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
2275 | engines: {node: '>= 0.4'}
2276 |
2277 | typed-array-byte-offset@1.0.2:
2278 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
2279 | engines: {node: '>= 0.4'}
2280 |
2281 | typed-array-length@1.0.6:
2282 | resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
2283 | engines: {node: '>= 0.4'}
2284 |
2285 | typescript@5.5.2:
2286 | resolution: {integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==}
2287 | engines: {node: '>=14.17'}
2288 | hasBin: true
2289 |
2290 | unbox-primitive@1.0.2:
2291 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
2292 |
2293 | undici-types@5.26.5:
2294 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
2295 |
2296 | unified@11.0.5:
2297 | resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
2298 |
2299 | unist-util-is@6.0.0:
2300 | resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
2301 |
2302 | unist-util-position@5.0.0:
2303 | resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
2304 |
2305 | unist-util-remove-position@5.0.0:
2306 | resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
2307 |
2308 | unist-util-stringify-position@4.0.0:
2309 | resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
2310 |
2311 | unist-util-visit-parents@6.0.1:
2312 | resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
2313 |
2314 | unist-util-visit@5.0.0:
2315 | resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
2316 |
2317 | uri-js@4.4.1:
2318 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
2319 |
2320 | use-callback-ref@1.3.2:
2321 | resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
2322 | engines: {node: '>=10'}
2323 | peerDependencies:
2324 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
2325 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2326 | peerDependenciesMeta:
2327 | '@types/react':
2328 | optional: true
2329 |
2330 | use-composed-ref@1.3.0:
2331 | resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
2332 | peerDependencies:
2333 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2334 |
2335 | use-isomorphic-layout-effect@1.1.2:
2336 | resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
2337 | peerDependencies:
2338 | '@types/react': '*'
2339 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2340 | peerDependenciesMeta:
2341 | '@types/react':
2342 | optional: true
2343 |
2344 | use-latest@1.2.1:
2345 | resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
2346 | peerDependencies:
2347 | '@types/react': '*'
2348 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2349 | peerDependenciesMeta:
2350 | '@types/react':
2351 | optional: true
2352 |
2353 | use-sidecar@1.1.2:
2354 | resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
2355 | engines: {node: '>=10'}
2356 | peerDependencies:
2357 | '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
2358 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2359 | peerDependenciesMeta:
2360 | '@types/react':
2361 | optional: true
2362 |
2363 | use-sync-external-store@1.2.0:
2364 | resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
2365 | peerDependencies:
2366 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
2367 |
2368 | util-deprecate@1.0.2:
2369 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
2370 |
2371 | vfile-message@4.0.2:
2372 | resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
2373 |
2374 | vfile@6.0.1:
2375 | resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
2376 |
2377 | which-boxed-primitive@1.0.2:
2378 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
2379 |
2380 | which-builtin-type@1.1.3:
2381 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
2382 | engines: {node: '>= 0.4'}
2383 |
2384 | which-collection@1.0.2:
2385 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
2386 | engines: {node: '>= 0.4'}
2387 |
2388 | which-typed-array@1.1.15:
2389 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
2390 | engines: {node: '>= 0.4'}
2391 |
2392 | which@2.0.2:
2393 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
2394 | engines: {node: '>= 8'}
2395 | hasBin: true
2396 |
2397 | word-wrap@1.2.5:
2398 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
2399 | engines: {node: '>=0.10.0'}
2400 |
2401 | wrap-ansi@7.0.0:
2402 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
2403 | engines: {node: '>=10'}
2404 |
2405 | wrap-ansi@8.1.0:
2406 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
2407 | engines: {node: '>=12'}
2408 |
2409 | wrappy@1.0.2:
2410 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
2411 |
2412 | xtend@4.0.2:
2413 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
2414 | engines: {node: '>=0.4'}
2415 |
2416 | yaml@2.4.5:
2417 | resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==}
2418 | engines: {node: '>= 14'}
2419 | hasBin: true
2420 |
2421 | yocto-queue@0.1.0:
2422 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
2423 | engines: {node: '>=10'}
2424 |
2425 | zod-to-json-schema@3.23.1:
2426 | resolution: {integrity: sha512-oT9INvydob1XV0v1d2IadrR74rLtDInLvDFfAa1CG0Pmg/vxATk7I2gSelfj271mbzeM4Da0uuDQE/Nkj3DWNw==}
2427 | peerDependencies:
2428 | zod: ^3.23.3
2429 |
2430 | zod@3.23.8:
2431 | resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
2432 |
2433 | zustand@4.5.4:
2434 | resolution: {integrity: sha512-/BPMyLKJPtFEvVL0E9E9BTUM63MNyhPGlvxk1XjrfWTUlV+BR8jufjsovHzrtR6YNcBEcL7cMHovL1n9xHawEg==}
2435 | engines: {node: '>=12.7.0'}
2436 | peerDependencies:
2437 | '@types/react': '>=16.8'
2438 | immer: '>=9.0.6'
2439 | react: '>=16.8'
2440 | peerDependenciesMeta:
2441 | '@types/react':
2442 | optional: true
2443 | immer:
2444 | optional: true
2445 | react:
2446 | optional: true
2447 |
2448 | zwitch@2.0.4:
2449 | resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
2450 |
2451 | snapshots:
2452 |
2453 | '@ai-sdk/openai@0.0.36(zod@3.23.8)':
2454 | dependencies:
2455 | '@ai-sdk/provider': 0.0.12
2456 | '@ai-sdk/provider-utils': 1.0.2(zod@3.23.8)
2457 | zod: 3.23.8
2458 |
2459 | '@ai-sdk/provider-utils@1.0.2(zod@3.23.8)':
2460 | dependencies:
2461 | '@ai-sdk/provider': 0.0.12
2462 | eventsource-parser: 1.1.2
2463 | nanoid: 3.3.6
2464 | secure-json-parse: 2.7.0
2465 | optionalDependencies:
2466 | zod: 3.23.8
2467 |
2468 | '@ai-sdk/provider@0.0.12':
2469 | dependencies:
2470 | json-schema: 0.4.0
2471 |
2472 | '@alloc/quick-lru@5.2.0': {}
2473 |
2474 | '@assistant-ui/react-markdown@0.1.2(@assistant-ui/react@0.4.8(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.5))(@types/react@18.3.3)(react@18.3.1)(tailwindcss@3.4.5)':
2475 | dependencies:
2476 | '@assistant-ui/react': 0.4.8(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.5)
2477 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2478 | classnames: 2.5.1
2479 | lucide-react: 0.407.0(react@18.3.1)
2480 | react: 18.3.1
2481 | react-markdown: 9.0.1(@types/react@18.3.3)(react@18.3.1)
2482 | optionalDependencies:
2483 | '@types/react': 18.3.3
2484 | tailwindcss: 3.4.5
2485 | transitivePeerDependencies:
2486 | - supports-color
2487 |
2488 | '@assistant-ui/react-syntax-highlighter@0.0.3(@assistant-ui/react-markdown@0.1.2(@assistant-ui/react@0.4.8(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.5))(@types/react@18.3.3)(react@18.3.1)(tailwindcss@3.4.5))(@assistant-ui/react@0.4.8(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.5))(@types/react-syntax-highlighter@15.5.13)(@types/react@18.3.3)(react-syntax-highlighter@15.5.0(react@18.3.1))(react@18.3.1)':
2489 | dependencies:
2490 | '@assistant-ui/react': 0.4.8(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.5)
2491 | '@assistant-ui/react-markdown': 0.1.2(@assistant-ui/react@0.4.8(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.5))(@types/react@18.3.3)(react@18.3.1)(tailwindcss@3.4.5)
2492 | react: 18.3.1
2493 | react-syntax-highlighter: 15.5.0(react@18.3.1)
2494 | optionalDependencies:
2495 | '@types/react': 18.3.3
2496 | '@types/react-syntax-highlighter': 15.5.13
2497 |
2498 | '@assistant-ui/react@0.4.8(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.5)':
2499 | dependencies:
2500 | '@ai-sdk/provider': 0.0.12
2501 | '@radix-ui/primitive': 1.1.0
2502 | '@radix-ui/react-avatar': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2503 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2504 | '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2505 | '@radix-ui/react-popover': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2506 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2507 | '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2508 | '@radix-ui/react-tooltip': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2509 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2510 | '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2511 | class-variance-authority: 0.7.0
2512 | classnames: 2.5.1
2513 | json-schema: 0.4.0
2514 | lucide-react: 0.407.0(react@18.3.1)
2515 | nanoid: 5.0.7
2516 | react: 18.3.1
2517 | react-dom: 18.3.1(react@18.3.1)
2518 | react-textarea-autosize: 8.5.3(@types/react@18.3.3)(react@18.3.1)
2519 | secure-json-parse: 2.7.0
2520 | zod: 3.23.8
2521 | zod-to-json-schema: 3.23.1(zod@3.23.8)
2522 | zustand: 4.5.4(@types/react@18.3.3)(react@18.3.1)
2523 | optionalDependencies:
2524 | '@types/react': 18.3.3
2525 | '@types/react-dom': 18.3.0
2526 | tailwindcss: 3.4.5
2527 | transitivePeerDependencies:
2528 | - immer
2529 |
2530 | '@babel/runtime@7.24.7':
2531 | dependencies:
2532 | regenerator-runtime: 0.14.1
2533 |
2534 | '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
2535 | dependencies:
2536 | eslint: 8.57.0
2537 | eslint-visitor-keys: 3.4.3
2538 |
2539 | '@eslint-community/regexpp@4.10.1': {}
2540 |
2541 | '@eslint/eslintrc@2.1.4':
2542 | dependencies:
2543 | ajv: 6.12.6
2544 | debug: 4.3.5
2545 | espree: 9.6.1
2546 | globals: 13.24.0
2547 | ignore: 5.3.1
2548 | import-fresh: 3.3.0
2549 | js-yaml: 4.1.0
2550 | minimatch: 3.1.2
2551 | strip-json-comments: 3.1.1
2552 | transitivePeerDependencies:
2553 | - supports-color
2554 |
2555 | '@eslint/js@8.57.0': {}
2556 |
2557 | '@floating-ui/core@1.6.4':
2558 | dependencies:
2559 | '@floating-ui/utils': 0.2.4
2560 |
2561 | '@floating-ui/dom@1.6.7':
2562 | dependencies:
2563 | '@floating-ui/core': 1.6.4
2564 | '@floating-ui/utils': 0.2.4
2565 |
2566 | '@floating-ui/react-dom@2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2567 | dependencies:
2568 | '@floating-ui/dom': 1.6.7
2569 | react: 18.3.1
2570 | react-dom: 18.3.1(react@18.3.1)
2571 |
2572 | '@floating-ui/utils@0.2.4': {}
2573 |
2574 | '@humanwhocodes/config-array@0.11.14':
2575 | dependencies:
2576 | '@humanwhocodes/object-schema': 2.0.3
2577 | debug: 4.3.5
2578 | minimatch: 3.1.2
2579 | transitivePeerDependencies:
2580 | - supports-color
2581 |
2582 | '@humanwhocodes/module-importer@1.0.1': {}
2583 |
2584 | '@humanwhocodes/object-schema@2.0.3': {}
2585 |
2586 | '@isaacs/cliui@8.0.2':
2587 | dependencies:
2588 | string-width: 5.1.2
2589 | string-width-cjs: string-width@4.2.3
2590 | strip-ansi: 7.1.0
2591 | strip-ansi-cjs: strip-ansi@6.0.1
2592 | wrap-ansi: 8.1.0
2593 | wrap-ansi-cjs: wrap-ansi@7.0.0
2594 |
2595 | '@jridgewell/gen-mapping@0.3.5':
2596 | dependencies:
2597 | '@jridgewell/set-array': 1.2.1
2598 | '@jridgewell/sourcemap-codec': 1.4.15
2599 | '@jridgewell/trace-mapping': 0.3.25
2600 |
2601 | '@jridgewell/resolve-uri@3.1.2': {}
2602 |
2603 | '@jridgewell/set-array@1.2.1': {}
2604 |
2605 | '@jridgewell/sourcemap-codec@1.4.15': {}
2606 |
2607 | '@jridgewell/trace-mapping@0.3.25':
2608 | dependencies:
2609 | '@jridgewell/resolve-uri': 3.1.2
2610 | '@jridgewell/sourcemap-codec': 1.4.15
2611 |
2612 | '@next/env@14.2.5': {}
2613 |
2614 | '@next/eslint-plugin-next@14.2.5':
2615 | dependencies:
2616 | glob: 10.3.10
2617 |
2618 | '@next/swc-darwin-arm64@14.2.5':
2619 | optional: true
2620 |
2621 | '@next/swc-darwin-x64@14.2.5':
2622 | optional: true
2623 |
2624 | '@next/swc-linux-arm64-gnu@14.2.5':
2625 | optional: true
2626 |
2627 | '@next/swc-linux-arm64-musl@14.2.5':
2628 | optional: true
2629 |
2630 | '@next/swc-linux-x64-gnu@14.2.5':
2631 | optional: true
2632 |
2633 | '@next/swc-linux-x64-musl@14.2.5':
2634 | optional: true
2635 |
2636 | '@next/swc-win32-arm64-msvc@14.2.5':
2637 | optional: true
2638 |
2639 | '@next/swc-win32-ia32-msvc@14.2.5':
2640 | optional: true
2641 |
2642 | '@next/swc-win32-x64-msvc@14.2.5':
2643 | optional: true
2644 |
2645 | '@nodelib/fs.scandir@2.1.5':
2646 | dependencies:
2647 | '@nodelib/fs.stat': 2.0.5
2648 | run-parallel: 1.2.0
2649 |
2650 | '@nodelib/fs.stat@2.0.5': {}
2651 |
2652 | '@nodelib/fs.walk@1.2.8':
2653 | dependencies:
2654 | '@nodelib/fs.scandir': 2.1.5
2655 | fastq: 1.17.1
2656 |
2657 | '@opentelemetry/api@1.9.0':
2658 | optional: true
2659 |
2660 | '@pkgjs/parseargs@0.11.0':
2661 | optional: true
2662 |
2663 | '@radix-ui/primitive@1.1.0': {}
2664 |
2665 | '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2666 | dependencies:
2667 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2668 | react: 18.3.1
2669 | react-dom: 18.3.1(react@18.3.1)
2670 | optionalDependencies:
2671 | '@types/react': 18.3.3
2672 | '@types/react-dom': 18.3.0
2673 |
2674 | '@radix-ui/react-avatar@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2675 | dependencies:
2676 | '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2677 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2678 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2679 | '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2680 | react: 18.3.1
2681 | react-dom: 18.3.1(react@18.3.1)
2682 | optionalDependencies:
2683 | '@types/react': 18.3.3
2684 | '@types/react-dom': 18.3.0
2685 |
2686 | '@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2687 | dependencies:
2688 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2689 | '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2690 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2691 | '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2692 | react: 18.3.1
2693 | react-dom: 18.3.1(react@18.3.1)
2694 | optionalDependencies:
2695 | '@types/react': 18.3.3
2696 | '@types/react-dom': 18.3.0
2697 |
2698 | '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.3)(react@18.3.1)':
2699 | dependencies:
2700 | react: 18.3.1
2701 | optionalDependencies:
2702 | '@types/react': 18.3.3
2703 |
2704 | '@radix-ui/react-context@1.1.0(@types/react@18.3.3)(react@18.3.1)':
2705 | dependencies:
2706 | react: 18.3.1
2707 | optionalDependencies:
2708 | '@types/react': 18.3.3
2709 |
2710 | '@radix-ui/react-direction@1.1.0(@types/react@18.3.3)(react@18.3.1)':
2711 | dependencies:
2712 | react: 18.3.1
2713 | optionalDependencies:
2714 | '@types/react': 18.3.3
2715 |
2716 | '@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2717 | dependencies:
2718 | '@radix-ui/primitive': 1.1.0
2719 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2720 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2721 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2722 | '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2723 | react: 18.3.1
2724 | react-dom: 18.3.1(react@18.3.1)
2725 | optionalDependencies:
2726 | '@types/react': 18.3.3
2727 | '@types/react-dom': 18.3.0
2728 |
2729 | '@radix-ui/react-focus-guards@1.1.0(@types/react@18.3.3)(react@18.3.1)':
2730 | dependencies:
2731 | react: 18.3.1
2732 | optionalDependencies:
2733 | '@types/react': 18.3.3
2734 |
2735 | '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2736 | dependencies:
2737 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2738 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2739 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2740 | react: 18.3.1
2741 | react-dom: 18.3.1(react@18.3.1)
2742 | optionalDependencies:
2743 | '@types/react': 18.3.3
2744 | '@types/react-dom': 18.3.0
2745 |
2746 | '@radix-ui/react-id@1.1.0(@types/react@18.3.3)(react@18.3.1)':
2747 | dependencies:
2748 | '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2749 | react: 18.3.1
2750 | optionalDependencies:
2751 | '@types/react': 18.3.3
2752 |
2753 | '@radix-ui/react-popover@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2754 | dependencies:
2755 | '@radix-ui/primitive': 1.1.0
2756 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2757 | '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2758 | '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2759 | '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2760 | '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2761 | '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2762 | '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2763 | '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2764 | '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2765 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2766 | '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2767 | '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2768 | aria-hidden: 1.2.4
2769 | react: 18.3.1
2770 | react-dom: 18.3.1(react@18.3.1)
2771 | react-remove-scroll: 2.5.7(@types/react@18.3.3)(react@18.3.1)
2772 | optionalDependencies:
2773 | '@types/react': 18.3.3
2774 | '@types/react-dom': 18.3.0
2775 |
2776 | '@radix-ui/react-popper@1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2777 | dependencies:
2778 | '@floating-ui/react-dom': 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2779 | '@radix-ui/react-arrow': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2780 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2781 | '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2782 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2783 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2784 | '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2785 | '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2786 | '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2787 | '@radix-ui/rect': 1.1.0
2788 | react: 18.3.1
2789 | react-dom: 18.3.1(react@18.3.1)
2790 | optionalDependencies:
2791 | '@types/react': 18.3.3
2792 | '@types/react-dom': 18.3.0
2793 |
2794 | '@radix-ui/react-portal@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2795 | dependencies:
2796 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2797 | '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2798 | react: 18.3.1
2799 | react-dom: 18.3.1(react@18.3.1)
2800 | optionalDependencies:
2801 | '@types/react': 18.3.3
2802 | '@types/react-dom': 18.3.0
2803 |
2804 | '@radix-ui/react-presence@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2805 | dependencies:
2806 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2807 | '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2808 | react: 18.3.1
2809 | react-dom: 18.3.1(react@18.3.1)
2810 | optionalDependencies:
2811 | '@types/react': 18.3.3
2812 | '@types/react-dom': 18.3.0
2813 |
2814 | '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2815 | dependencies:
2816 | '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2817 | react: 18.3.1
2818 | react-dom: 18.3.1(react@18.3.1)
2819 | optionalDependencies:
2820 | '@types/react': 18.3.3
2821 | '@types/react-dom': 18.3.0
2822 |
2823 | '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2824 | dependencies:
2825 | '@radix-ui/primitive': 1.1.0
2826 | '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2827 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2828 | '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2829 | '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2830 | '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2831 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2832 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2833 | '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2834 | react: 18.3.1
2835 | react-dom: 18.3.1(react@18.3.1)
2836 | optionalDependencies:
2837 | '@types/react': 18.3.3
2838 | '@types/react-dom': 18.3.0
2839 |
2840 | '@radix-ui/react-slot@1.1.0(@types/react@18.3.3)(react@18.3.1)':
2841 | dependencies:
2842 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2843 | react: 18.3.1
2844 | optionalDependencies:
2845 | '@types/react': 18.3.3
2846 |
2847 | '@radix-ui/react-tabs@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2848 | dependencies:
2849 | '@radix-ui/primitive': 1.1.0
2850 | '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2851 | '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2852 | '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2853 | '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2854 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2855 | '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2856 | '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2857 | react: 18.3.1
2858 | react-dom: 18.3.1(react@18.3.1)
2859 | optionalDependencies:
2860 | '@types/react': 18.3.3
2861 | '@types/react-dom': 18.3.0
2862 |
2863 | '@radix-ui/react-tooltip@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2864 | dependencies:
2865 | '@radix-ui/primitive': 1.1.0
2866 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2867 | '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2868 | '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2869 | '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2870 | '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2871 | '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2872 | '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2873 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2874 | '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2875 | '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2876 | '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2877 | react: 18.3.1
2878 | react-dom: 18.3.1(react@18.3.1)
2879 | optionalDependencies:
2880 | '@types/react': 18.3.3
2881 | '@types/react-dom': 18.3.0
2882 |
2883 | '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.3)(react@18.3.1)':
2884 | dependencies:
2885 | react: 18.3.1
2886 | optionalDependencies:
2887 | '@types/react': 18.3.3
2888 |
2889 | '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.3)(react@18.3.1)':
2890 | dependencies:
2891 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2892 | react: 18.3.1
2893 | optionalDependencies:
2894 | '@types/react': 18.3.3
2895 |
2896 | '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.3)(react@18.3.1)':
2897 | dependencies:
2898 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2899 | react: 18.3.1
2900 | optionalDependencies:
2901 | '@types/react': 18.3.3
2902 |
2903 | '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.3)(react@18.3.1)':
2904 | dependencies:
2905 | react: 18.3.1
2906 | optionalDependencies:
2907 | '@types/react': 18.3.3
2908 |
2909 | '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.3)(react@18.3.1)':
2910 | dependencies:
2911 | '@radix-ui/rect': 1.1.0
2912 | react: 18.3.1
2913 | optionalDependencies:
2914 | '@types/react': 18.3.3
2915 |
2916 | '@radix-ui/react-use-size@1.1.0(@types/react@18.3.3)(react@18.3.1)':
2917 | dependencies:
2918 | '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1)
2919 | react: 18.3.1
2920 | optionalDependencies:
2921 | '@types/react': 18.3.3
2922 |
2923 | '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2924 | dependencies:
2925 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
2926 | react: 18.3.1
2927 | react-dom: 18.3.1(react@18.3.1)
2928 | optionalDependencies:
2929 | '@types/react': 18.3.3
2930 | '@types/react-dom': 18.3.0
2931 |
2932 | '@radix-ui/rect@1.1.0': {}
2933 |
2934 | '@rushstack/eslint-patch@1.10.3': {}
2935 |
2936 | '@swc/counter@0.1.3': {}
2937 |
2938 | '@swc/helpers@0.5.5':
2939 | dependencies:
2940 | '@swc/counter': 0.1.3
2941 | tslib: 2.6.3
2942 |
2943 | '@types/debug@4.1.12':
2944 | dependencies:
2945 | '@types/ms': 0.7.34
2946 |
2947 | '@types/estree-jsx@1.0.5':
2948 | dependencies:
2949 | '@types/estree': 1.0.5
2950 |
2951 | '@types/estree@1.0.5': {}
2952 |
2953 | '@types/hast@2.3.10':
2954 | dependencies:
2955 | '@types/unist': 2.0.10
2956 |
2957 | '@types/hast@3.0.4':
2958 | dependencies:
2959 | '@types/unist': 3.0.2
2960 |
2961 | '@types/json5@0.0.29': {}
2962 |
2963 | '@types/mdast@4.0.4':
2964 | dependencies:
2965 | '@types/unist': 3.0.2
2966 |
2967 | '@types/ms@0.7.34': {}
2968 |
2969 | '@types/node@20.14.8':
2970 | dependencies:
2971 | undici-types: 5.26.5
2972 |
2973 | '@types/prop-types@15.7.12': {}
2974 |
2975 | '@types/react-dom@18.3.0':
2976 | dependencies:
2977 | '@types/react': 18.3.3
2978 |
2979 | '@types/react-syntax-highlighter@15.5.13':
2980 | dependencies:
2981 | '@types/react': 18.3.3
2982 |
2983 | '@types/react@18.3.3':
2984 | dependencies:
2985 | '@types/prop-types': 15.7.12
2986 | csstype: 3.1.3
2987 |
2988 | '@types/unist@2.0.10': {}
2989 |
2990 | '@types/unist@3.0.2': {}
2991 |
2992 | '@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2)':
2993 | dependencies:
2994 | '@typescript-eslint/scope-manager': 7.2.0
2995 | '@typescript-eslint/types': 7.2.0
2996 | '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.5.2)
2997 | '@typescript-eslint/visitor-keys': 7.2.0
2998 | debug: 4.3.5
2999 | eslint: 8.57.0
3000 | optionalDependencies:
3001 | typescript: 5.5.2
3002 | transitivePeerDependencies:
3003 | - supports-color
3004 |
3005 | '@typescript-eslint/scope-manager@7.2.0':
3006 | dependencies:
3007 | '@typescript-eslint/types': 7.2.0
3008 | '@typescript-eslint/visitor-keys': 7.2.0
3009 |
3010 | '@typescript-eslint/types@7.2.0': {}
3011 |
3012 | '@typescript-eslint/typescript-estree@7.2.0(typescript@5.5.2)':
3013 | dependencies:
3014 | '@typescript-eslint/types': 7.2.0
3015 | '@typescript-eslint/visitor-keys': 7.2.0
3016 | debug: 4.3.5
3017 | globby: 11.1.0
3018 | is-glob: 4.0.3
3019 | minimatch: 9.0.3
3020 | semver: 7.6.2
3021 | ts-api-utils: 1.3.0(typescript@5.5.2)
3022 | optionalDependencies:
3023 | typescript: 5.5.2
3024 | transitivePeerDependencies:
3025 | - supports-color
3026 |
3027 | '@typescript-eslint/visitor-keys@7.2.0':
3028 | dependencies:
3029 | '@typescript-eslint/types': 7.2.0
3030 | eslint-visitor-keys: 3.4.3
3031 |
3032 | '@ungap/structured-clone@1.2.0': {}
3033 |
3034 | acorn-jsx@5.3.2(acorn@8.12.0):
3035 | dependencies:
3036 | acorn: 8.12.0
3037 |
3038 | acorn@8.12.0: {}
3039 |
3040 | ajv@6.12.6:
3041 | dependencies:
3042 | fast-deep-equal: 3.1.3
3043 | fast-json-stable-stringify: 2.1.0
3044 | json-schema-traverse: 0.4.1
3045 | uri-js: 4.4.1
3046 |
3047 | ansi-regex@5.0.1: {}
3048 |
3049 | ansi-regex@6.0.1: {}
3050 |
3051 | ansi-styles@4.3.0:
3052 | dependencies:
3053 | color-convert: 2.0.1
3054 |
3055 | ansi-styles@6.2.1: {}
3056 |
3057 | any-promise@1.3.0: {}
3058 |
3059 | anymatch@3.1.3:
3060 | dependencies:
3061 | normalize-path: 3.0.0
3062 | picomatch: 2.3.1
3063 |
3064 | arg@5.0.2: {}
3065 |
3066 | argparse@2.0.1: {}
3067 |
3068 | aria-hidden@1.2.4:
3069 | dependencies:
3070 | tslib: 2.6.3
3071 |
3072 | aria-query@5.1.3:
3073 | dependencies:
3074 | deep-equal: 2.2.3
3075 |
3076 | array-buffer-byte-length@1.0.1:
3077 | dependencies:
3078 | call-bind: 1.0.7
3079 | is-array-buffer: 3.0.4
3080 |
3081 | array-includes@3.1.8:
3082 | dependencies:
3083 | call-bind: 1.0.7
3084 | define-properties: 1.2.1
3085 | es-abstract: 1.23.3
3086 | es-object-atoms: 1.0.0
3087 | get-intrinsic: 1.2.4
3088 | is-string: 1.0.7
3089 |
3090 | array-union@2.1.0: {}
3091 |
3092 | array.prototype.findlast@1.2.5:
3093 | dependencies:
3094 | call-bind: 1.0.7
3095 | define-properties: 1.2.1
3096 | es-abstract: 1.23.3
3097 | es-errors: 1.3.0
3098 | es-object-atoms: 1.0.0
3099 | es-shim-unscopables: 1.0.2
3100 |
3101 | array.prototype.findlastindex@1.2.5:
3102 | dependencies:
3103 | call-bind: 1.0.7
3104 | define-properties: 1.2.1
3105 | es-abstract: 1.23.3
3106 | es-errors: 1.3.0
3107 | es-object-atoms: 1.0.0
3108 | es-shim-unscopables: 1.0.2
3109 |
3110 | array.prototype.flat@1.3.2:
3111 | dependencies:
3112 | call-bind: 1.0.7
3113 | define-properties: 1.2.1
3114 | es-abstract: 1.23.3
3115 | es-shim-unscopables: 1.0.2
3116 |
3117 | array.prototype.flatmap@1.3.2:
3118 | dependencies:
3119 | call-bind: 1.0.7
3120 | define-properties: 1.2.1
3121 | es-abstract: 1.23.3
3122 | es-shim-unscopables: 1.0.2
3123 |
3124 | array.prototype.toreversed@1.1.2:
3125 | dependencies:
3126 | call-bind: 1.0.7
3127 | define-properties: 1.2.1
3128 | es-abstract: 1.23.3
3129 | es-shim-unscopables: 1.0.2
3130 |
3131 | array.prototype.tosorted@1.1.4:
3132 | dependencies:
3133 | call-bind: 1.0.7
3134 | define-properties: 1.2.1
3135 | es-abstract: 1.23.3
3136 | es-errors: 1.3.0
3137 | es-shim-unscopables: 1.0.2
3138 |
3139 | arraybuffer.prototype.slice@1.0.3:
3140 | dependencies:
3141 | array-buffer-byte-length: 1.0.1
3142 | call-bind: 1.0.7
3143 | define-properties: 1.2.1
3144 | es-abstract: 1.23.3
3145 | es-errors: 1.3.0
3146 | get-intrinsic: 1.2.4
3147 | is-array-buffer: 3.0.4
3148 | is-shared-array-buffer: 1.0.3
3149 |
3150 | ast-types-flow@0.0.8: {}
3151 |
3152 | available-typed-arrays@1.0.7:
3153 | dependencies:
3154 | possible-typed-array-names: 1.0.0
3155 |
3156 | axe-core@4.9.1: {}
3157 |
3158 | axobject-query@3.1.1:
3159 | dependencies:
3160 | deep-equal: 2.2.3
3161 |
3162 | bail@2.0.2: {}
3163 |
3164 | balanced-match@1.0.2: {}
3165 |
3166 | binary-extensions@2.3.0: {}
3167 |
3168 | brace-expansion@1.1.11:
3169 | dependencies:
3170 | balanced-match: 1.0.2
3171 | concat-map: 0.0.1
3172 |
3173 | brace-expansion@2.0.1:
3174 | dependencies:
3175 | balanced-match: 1.0.2
3176 |
3177 | braces@3.0.3:
3178 | dependencies:
3179 | fill-range: 7.1.1
3180 |
3181 | busboy@1.6.0:
3182 | dependencies:
3183 | streamsearch: 1.1.0
3184 |
3185 | call-bind@1.0.7:
3186 | dependencies:
3187 | es-define-property: 1.0.0
3188 | es-errors: 1.3.0
3189 | function-bind: 1.1.2
3190 | get-intrinsic: 1.2.4
3191 | set-function-length: 1.2.2
3192 |
3193 | callsites@3.1.0: {}
3194 |
3195 | camelcase-css@2.0.1: {}
3196 |
3197 | caniuse-lite@1.0.30001636: {}
3198 |
3199 | ccount@2.0.1: {}
3200 |
3201 | chalk@4.1.2:
3202 | dependencies:
3203 | ansi-styles: 4.3.0
3204 | supports-color: 7.2.0
3205 |
3206 | character-entities-html4@2.1.0: {}
3207 |
3208 | character-entities-legacy@1.1.4: {}
3209 |
3210 | character-entities-legacy@3.0.0: {}
3211 |
3212 | character-entities@1.2.4: {}
3213 |
3214 | character-entities@2.0.2: {}
3215 |
3216 | character-reference-invalid@1.1.4: {}
3217 |
3218 | character-reference-invalid@2.0.1: {}
3219 |
3220 | chokidar@3.6.0:
3221 | dependencies:
3222 | anymatch: 3.1.3
3223 | braces: 3.0.3
3224 | glob-parent: 5.1.2
3225 | is-binary-path: 2.1.0
3226 | is-glob: 4.0.3
3227 | normalize-path: 3.0.0
3228 | readdirp: 3.6.0
3229 | optionalDependencies:
3230 | fsevents: 2.3.3
3231 |
3232 | class-variance-authority@0.7.0:
3233 | dependencies:
3234 | clsx: 2.0.0
3235 |
3236 | classnames@2.5.1: {}
3237 |
3238 | client-only@0.0.1: {}
3239 |
3240 | clsx@2.0.0: {}
3241 |
3242 | clsx@2.1.1: {}
3243 |
3244 | color-convert@2.0.1:
3245 | dependencies:
3246 | color-name: 1.1.4
3247 |
3248 | color-name@1.1.4: {}
3249 |
3250 | comma-separated-tokens@1.0.8: {}
3251 |
3252 | comma-separated-tokens@2.0.3: {}
3253 |
3254 | commander@4.1.1: {}
3255 |
3256 | concat-map@0.0.1: {}
3257 |
3258 | cross-spawn@7.0.3:
3259 | dependencies:
3260 | path-key: 3.1.1
3261 | shebang-command: 2.0.0
3262 | which: 2.0.2
3263 |
3264 | cssesc@3.0.0: {}
3265 |
3266 | csstype@3.1.3: {}
3267 |
3268 | damerau-levenshtein@1.0.8: {}
3269 |
3270 | data-view-buffer@1.0.1:
3271 | dependencies:
3272 | call-bind: 1.0.7
3273 | es-errors: 1.3.0
3274 | is-data-view: 1.0.1
3275 |
3276 | data-view-byte-length@1.0.1:
3277 | dependencies:
3278 | call-bind: 1.0.7
3279 | es-errors: 1.3.0
3280 | is-data-view: 1.0.1
3281 |
3282 | data-view-byte-offset@1.0.0:
3283 | dependencies:
3284 | call-bind: 1.0.7
3285 | es-errors: 1.3.0
3286 | is-data-view: 1.0.1
3287 |
3288 | debug@3.2.7:
3289 | dependencies:
3290 | ms: 2.1.3
3291 |
3292 | debug@4.3.5:
3293 | dependencies:
3294 | ms: 2.1.2
3295 |
3296 | decode-named-character-reference@1.0.2:
3297 | dependencies:
3298 | character-entities: 2.0.2
3299 |
3300 | deep-equal@2.2.3:
3301 | dependencies:
3302 | array-buffer-byte-length: 1.0.1
3303 | call-bind: 1.0.7
3304 | es-get-iterator: 1.1.3
3305 | get-intrinsic: 1.2.4
3306 | is-arguments: 1.1.1
3307 | is-array-buffer: 3.0.4
3308 | is-date-object: 1.0.5
3309 | is-regex: 1.1.4
3310 | is-shared-array-buffer: 1.0.3
3311 | isarray: 2.0.5
3312 | object-is: 1.1.6
3313 | object-keys: 1.1.1
3314 | object.assign: 4.1.5
3315 | regexp.prototype.flags: 1.5.2
3316 | side-channel: 1.0.6
3317 | which-boxed-primitive: 1.0.2
3318 | which-collection: 1.0.2
3319 | which-typed-array: 1.1.15
3320 |
3321 | deep-is@0.1.4: {}
3322 |
3323 | define-data-property@1.1.4:
3324 | dependencies:
3325 | es-define-property: 1.0.0
3326 | es-errors: 1.3.0
3327 | gopd: 1.0.1
3328 |
3329 | define-properties@1.2.1:
3330 | dependencies:
3331 | define-data-property: 1.1.4
3332 | has-property-descriptors: 1.0.2
3333 | object-keys: 1.1.1
3334 |
3335 | dequal@2.0.3: {}
3336 |
3337 | detect-node-es@1.1.0: {}
3338 |
3339 | devlop@1.1.0:
3340 | dependencies:
3341 | dequal: 2.0.3
3342 |
3343 | didyoumean@1.2.2: {}
3344 |
3345 | dir-glob@3.0.1:
3346 | dependencies:
3347 | path-type: 4.0.0
3348 |
3349 | dlv@1.1.3: {}
3350 |
3351 | doctrine@2.1.0:
3352 | dependencies:
3353 | esutils: 2.0.3
3354 |
3355 | doctrine@3.0.0:
3356 | dependencies:
3357 | esutils: 2.0.3
3358 |
3359 | eastasianwidth@0.2.0: {}
3360 |
3361 | emoji-regex@8.0.0: {}
3362 |
3363 | emoji-regex@9.2.2: {}
3364 |
3365 | enhanced-resolve@5.17.0:
3366 | dependencies:
3367 | graceful-fs: 4.2.11
3368 | tapable: 2.2.1
3369 |
3370 | es-abstract@1.23.3:
3371 | dependencies:
3372 | array-buffer-byte-length: 1.0.1
3373 | arraybuffer.prototype.slice: 1.0.3
3374 | available-typed-arrays: 1.0.7
3375 | call-bind: 1.0.7
3376 | data-view-buffer: 1.0.1
3377 | data-view-byte-length: 1.0.1
3378 | data-view-byte-offset: 1.0.0
3379 | es-define-property: 1.0.0
3380 | es-errors: 1.3.0
3381 | es-object-atoms: 1.0.0
3382 | es-set-tostringtag: 2.0.3
3383 | es-to-primitive: 1.2.1
3384 | function.prototype.name: 1.1.6
3385 | get-intrinsic: 1.2.4
3386 | get-symbol-description: 1.0.2
3387 | globalthis: 1.0.4
3388 | gopd: 1.0.1
3389 | has-property-descriptors: 1.0.2
3390 | has-proto: 1.0.3
3391 | has-symbols: 1.0.3
3392 | hasown: 2.0.2
3393 | internal-slot: 1.0.7
3394 | is-array-buffer: 3.0.4
3395 | is-callable: 1.2.7
3396 | is-data-view: 1.0.1
3397 | is-negative-zero: 2.0.3
3398 | is-regex: 1.1.4
3399 | is-shared-array-buffer: 1.0.3
3400 | is-string: 1.0.7
3401 | is-typed-array: 1.1.13
3402 | is-weakref: 1.0.2
3403 | object-inspect: 1.13.2
3404 | object-keys: 1.1.1
3405 | object.assign: 4.1.5
3406 | regexp.prototype.flags: 1.5.2
3407 | safe-array-concat: 1.1.2
3408 | safe-regex-test: 1.0.3
3409 | string.prototype.trim: 1.2.9
3410 | string.prototype.trimend: 1.0.8
3411 | string.prototype.trimstart: 1.0.8
3412 | typed-array-buffer: 1.0.2
3413 | typed-array-byte-length: 1.0.1
3414 | typed-array-byte-offset: 1.0.2
3415 | typed-array-length: 1.0.6
3416 | unbox-primitive: 1.0.2
3417 | which-typed-array: 1.1.15
3418 |
3419 | es-define-property@1.0.0:
3420 | dependencies:
3421 | get-intrinsic: 1.2.4
3422 |
3423 | es-errors@1.3.0: {}
3424 |
3425 | es-get-iterator@1.1.3:
3426 | dependencies:
3427 | call-bind: 1.0.7
3428 | get-intrinsic: 1.2.4
3429 | has-symbols: 1.0.3
3430 | is-arguments: 1.1.1
3431 | is-map: 2.0.3
3432 | is-set: 2.0.3
3433 | is-string: 1.0.7
3434 | isarray: 2.0.5
3435 | stop-iteration-iterator: 1.0.0
3436 |
3437 | es-iterator-helpers@1.0.19:
3438 | dependencies:
3439 | call-bind: 1.0.7
3440 | define-properties: 1.2.1
3441 | es-abstract: 1.23.3
3442 | es-errors: 1.3.0
3443 | es-set-tostringtag: 2.0.3
3444 | function-bind: 1.1.2
3445 | get-intrinsic: 1.2.4
3446 | globalthis: 1.0.4
3447 | has-property-descriptors: 1.0.2
3448 | has-proto: 1.0.3
3449 | has-symbols: 1.0.3
3450 | internal-slot: 1.0.7
3451 | iterator.prototype: 1.1.2
3452 | safe-array-concat: 1.1.2
3453 |
3454 | es-object-atoms@1.0.0:
3455 | dependencies:
3456 | es-errors: 1.3.0
3457 |
3458 | es-set-tostringtag@2.0.3:
3459 | dependencies:
3460 | get-intrinsic: 1.2.4
3461 | has-tostringtag: 1.0.2
3462 | hasown: 2.0.2
3463 |
3464 | es-shim-unscopables@1.0.2:
3465 | dependencies:
3466 | hasown: 2.0.2
3467 |
3468 | es-to-primitive@1.2.1:
3469 | dependencies:
3470 | is-callable: 1.2.7
3471 | is-date-object: 1.0.5
3472 | is-symbol: 1.0.4
3473 |
3474 | escape-string-regexp@4.0.0: {}
3475 |
3476 | eslint-config-next@14.2.5(eslint@8.57.0)(typescript@5.5.2):
3477 | dependencies:
3478 | '@next/eslint-plugin-next': 14.2.5
3479 | '@rushstack/eslint-patch': 1.10.3
3480 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.5.2)
3481 | eslint: 8.57.0
3482 | eslint-import-resolver-node: 0.3.9
3483 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0)
3484 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0)
3485 | eslint-plugin-jsx-a11y: 6.9.0(eslint@8.57.0)
3486 | eslint-plugin-react: 7.34.3(eslint@8.57.0)
3487 | eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0)
3488 | optionalDependencies:
3489 | typescript: 5.5.2
3490 | transitivePeerDependencies:
3491 | - eslint-import-resolver-webpack
3492 | - supports-color
3493 |
3494 | eslint-import-resolver-node@0.3.9:
3495 | dependencies:
3496 | debug: 3.2.7
3497 | is-core-module: 2.14.0
3498 | resolve: 1.22.8
3499 | transitivePeerDependencies:
3500 | - supports-color
3501 |
3502 | eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0):
3503 | dependencies:
3504 | debug: 4.3.5
3505 | enhanced-resolve: 5.17.0
3506 | eslint: 8.57.0
3507 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0)
3508 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0)
3509 | fast-glob: 3.3.2
3510 | get-tsconfig: 4.7.5
3511 | is-core-module: 2.14.0
3512 | is-glob: 4.0.3
3513 | transitivePeerDependencies:
3514 | - '@typescript-eslint/parser'
3515 | - eslint-import-resolver-node
3516 | - eslint-import-resolver-webpack
3517 | - supports-color
3518 |
3519 | eslint-module-utils@2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0):
3520 | dependencies:
3521 | debug: 3.2.7
3522 | optionalDependencies:
3523 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.5.2)
3524 | eslint: 8.57.0
3525 | eslint-import-resolver-node: 0.3.9
3526 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0)
3527 | transitivePeerDependencies:
3528 | - supports-color
3529 |
3530 | eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0):
3531 | dependencies:
3532 | array-includes: 3.1.8
3533 | array.prototype.findlastindex: 1.2.5
3534 | array.prototype.flat: 1.3.2
3535 | array.prototype.flatmap: 1.3.2
3536 | debug: 3.2.7
3537 | doctrine: 2.1.0
3538 | eslint: 8.57.0
3539 | eslint-import-resolver-node: 0.3.9
3540 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0)
3541 | hasown: 2.0.2
3542 | is-core-module: 2.14.0
3543 | is-glob: 4.0.3
3544 | minimatch: 3.1.2
3545 | object.fromentries: 2.0.8
3546 | object.groupby: 1.0.3
3547 | object.values: 1.2.0
3548 | semver: 6.3.1
3549 | tsconfig-paths: 3.15.0
3550 | optionalDependencies:
3551 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.5.2)
3552 | transitivePeerDependencies:
3553 | - eslint-import-resolver-typescript
3554 | - eslint-import-resolver-webpack
3555 | - supports-color
3556 |
3557 | eslint-plugin-jsx-a11y@6.9.0(eslint@8.57.0):
3558 | dependencies:
3559 | aria-query: 5.1.3
3560 | array-includes: 3.1.8
3561 | array.prototype.flatmap: 1.3.2
3562 | ast-types-flow: 0.0.8
3563 | axe-core: 4.9.1
3564 | axobject-query: 3.1.1
3565 | damerau-levenshtein: 1.0.8
3566 | emoji-regex: 9.2.2
3567 | es-iterator-helpers: 1.0.19
3568 | eslint: 8.57.0
3569 | hasown: 2.0.2
3570 | jsx-ast-utils: 3.3.5
3571 | language-tags: 1.0.9
3572 | minimatch: 3.1.2
3573 | object.fromentries: 2.0.8
3574 | safe-regex-test: 1.0.3
3575 | string.prototype.includes: 2.0.0
3576 |
3577 | eslint-plugin-react-hooks@4.6.2(eslint@8.57.0):
3578 | dependencies:
3579 | eslint: 8.57.0
3580 |
3581 | eslint-plugin-react@7.34.3(eslint@8.57.0):
3582 | dependencies:
3583 | array-includes: 3.1.8
3584 | array.prototype.findlast: 1.2.5
3585 | array.prototype.flatmap: 1.3.2
3586 | array.prototype.toreversed: 1.1.2
3587 | array.prototype.tosorted: 1.1.4
3588 | doctrine: 2.1.0
3589 | es-iterator-helpers: 1.0.19
3590 | eslint: 8.57.0
3591 | estraverse: 5.3.0
3592 | jsx-ast-utils: 3.3.5
3593 | minimatch: 3.1.2
3594 | object.entries: 1.1.8
3595 | object.fromentries: 2.0.8
3596 | object.hasown: 1.1.4
3597 | object.values: 1.2.0
3598 | prop-types: 15.8.1
3599 | resolve: 2.0.0-next.5
3600 | semver: 6.3.1
3601 | string.prototype.matchall: 4.0.11
3602 |
3603 | eslint-scope@7.2.2:
3604 | dependencies:
3605 | esrecurse: 4.3.0
3606 | estraverse: 5.3.0
3607 |
3608 | eslint-visitor-keys@3.4.3: {}
3609 |
3610 | eslint@8.57.0:
3611 | dependencies:
3612 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
3613 | '@eslint-community/regexpp': 4.10.1
3614 | '@eslint/eslintrc': 2.1.4
3615 | '@eslint/js': 8.57.0
3616 | '@humanwhocodes/config-array': 0.11.14
3617 | '@humanwhocodes/module-importer': 1.0.1
3618 | '@nodelib/fs.walk': 1.2.8
3619 | '@ungap/structured-clone': 1.2.0
3620 | ajv: 6.12.6
3621 | chalk: 4.1.2
3622 | cross-spawn: 7.0.3
3623 | debug: 4.3.5
3624 | doctrine: 3.0.0
3625 | escape-string-regexp: 4.0.0
3626 | eslint-scope: 7.2.2
3627 | eslint-visitor-keys: 3.4.3
3628 | espree: 9.6.1
3629 | esquery: 1.5.0
3630 | esutils: 2.0.3
3631 | fast-deep-equal: 3.1.3
3632 | file-entry-cache: 6.0.1
3633 | find-up: 5.0.0
3634 | glob-parent: 6.0.2
3635 | globals: 13.24.0
3636 | graphemer: 1.4.0
3637 | ignore: 5.3.1
3638 | imurmurhash: 0.1.4
3639 | is-glob: 4.0.3
3640 | is-path-inside: 3.0.3
3641 | js-yaml: 4.1.0
3642 | json-stable-stringify-without-jsonify: 1.0.1
3643 | levn: 0.4.1
3644 | lodash.merge: 4.6.2
3645 | minimatch: 3.1.2
3646 | natural-compare: 1.4.0
3647 | optionator: 0.9.4
3648 | strip-ansi: 6.0.1
3649 | text-table: 0.2.0
3650 | transitivePeerDependencies:
3651 | - supports-color
3652 |
3653 | espree@9.6.1:
3654 | dependencies:
3655 | acorn: 8.12.0
3656 | acorn-jsx: 5.3.2(acorn@8.12.0)
3657 | eslint-visitor-keys: 3.4.3
3658 |
3659 | esquery@1.5.0:
3660 | dependencies:
3661 | estraverse: 5.3.0
3662 |
3663 | esrecurse@4.3.0:
3664 | dependencies:
3665 | estraverse: 5.3.0
3666 |
3667 | estraverse@5.3.0: {}
3668 |
3669 | estree-util-is-identifier-name@3.0.0: {}
3670 |
3671 | esutils@2.0.3: {}
3672 |
3673 | eventsource-parser@1.1.2: {}
3674 |
3675 | extend@3.0.2: {}
3676 |
3677 | fast-deep-equal@3.1.3: {}
3678 |
3679 | fast-glob@3.3.2:
3680 | dependencies:
3681 | '@nodelib/fs.stat': 2.0.5
3682 | '@nodelib/fs.walk': 1.2.8
3683 | glob-parent: 5.1.2
3684 | merge2: 1.4.1
3685 | micromatch: 4.0.7
3686 |
3687 | fast-json-stable-stringify@2.1.0: {}
3688 |
3689 | fast-levenshtein@2.0.6: {}
3690 |
3691 | fastq@1.17.1:
3692 | dependencies:
3693 | reusify: 1.0.4
3694 |
3695 | fault@1.0.4:
3696 | dependencies:
3697 | format: 0.2.2
3698 |
3699 | file-entry-cache@6.0.1:
3700 | dependencies:
3701 | flat-cache: 3.2.0
3702 |
3703 | fill-range@7.1.1:
3704 | dependencies:
3705 | to-regex-range: 5.0.1
3706 |
3707 | find-up@5.0.0:
3708 | dependencies:
3709 | locate-path: 6.0.0
3710 | path-exists: 4.0.0
3711 |
3712 | flat-cache@3.2.0:
3713 | dependencies:
3714 | flatted: 3.3.1
3715 | keyv: 4.5.4
3716 | rimraf: 3.0.2
3717 |
3718 | flatted@3.3.1: {}
3719 |
3720 | for-each@0.3.3:
3721 | dependencies:
3722 | is-callable: 1.2.7
3723 |
3724 | foreground-child@3.2.1:
3725 | dependencies:
3726 | cross-spawn: 7.0.3
3727 | signal-exit: 4.1.0
3728 |
3729 | format@0.2.2: {}
3730 |
3731 | fs.realpath@1.0.0: {}
3732 |
3733 | fsevents@2.3.3:
3734 | optional: true
3735 |
3736 | function-bind@1.1.2: {}
3737 |
3738 | function.prototype.name@1.1.6:
3739 | dependencies:
3740 | call-bind: 1.0.7
3741 | define-properties: 1.2.1
3742 | es-abstract: 1.23.3
3743 | functions-have-names: 1.2.3
3744 |
3745 | functions-have-names@1.2.3: {}
3746 |
3747 | get-intrinsic@1.2.4:
3748 | dependencies:
3749 | es-errors: 1.3.0
3750 | function-bind: 1.1.2
3751 | has-proto: 1.0.3
3752 | has-symbols: 1.0.3
3753 | hasown: 2.0.2
3754 |
3755 | get-nonce@1.0.1: {}
3756 |
3757 | get-symbol-description@1.0.2:
3758 | dependencies:
3759 | call-bind: 1.0.7
3760 | es-errors: 1.3.0
3761 | get-intrinsic: 1.2.4
3762 |
3763 | get-tsconfig@4.7.5:
3764 | dependencies:
3765 | resolve-pkg-maps: 1.0.0
3766 |
3767 | glob-parent@5.1.2:
3768 | dependencies:
3769 | is-glob: 4.0.3
3770 |
3771 | glob-parent@6.0.2:
3772 | dependencies:
3773 | is-glob: 4.0.3
3774 |
3775 | glob@10.3.10:
3776 | dependencies:
3777 | foreground-child: 3.2.1
3778 | jackspeak: 2.3.6
3779 | minimatch: 9.0.4
3780 | minipass: 7.1.2
3781 | path-scurry: 1.11.1
3782 |
3783 | glob@10.4.2:
3784 | dependencies:
3785 | foreground-child: 3.2.1
3786 | jackspeak: 3.4.0
3787 | minimatch: 9.0.4
3788 | minipass: 7.1.2
3789 | package-json-from-dist: 1.0.0
3790 | path-scurry: 1.11.1
3791 |
3792 | glob@7.2.3:
3793 | dependencies:
3794 | fs.realpath: 1.0.0
3795 | inflight: 1.0.6
3796 | inherits: 2.0.4
3797 | minimatch: 3.1.2
3798 | once: 1.4.0
3799 | path-is-absolute: 1.0.1
3800 |
3801 | globals@13.24.0:
3802 | dependencies:
3803 | type-fest: 0.20.2
3804 |
3805 | globalthis@1.0.4:
3806 | dependencies:
3807 | define-properties: 1.2.1
3808 | gopd: 1.0.1
3809 |
3810 | globby@11.1.0:
3811 | dependencies:
3812 | array-union: 2.1.0
3813 | dir-glob: 3.0.1
3814 | fast-glob: 3.3.2
3815 | ignore: 5.3.1
3816 | merge2: 1.4.1
3817 | slash: 3.0.0
3818 |
3819 | gopd@1.0.1:
3820 | dependencies:
3821 | get-intrinsic: 1.2.4
3822 |
3823 | graceful-fs@4.2.11: {}
3824 |
3825 | graphemer@1.4.0: {}
3826 |
3827 | has-bigints@1.0.2: {}
3828 |
3829 | has-flag@4.0.0: {}
3830 |
3831 | has-property-descriptors@1.0.2:
3832 | dependencies:
3833 | es-define-property: 1.0.0
3834 |
3835 | has-proto@1.0.3: {}
3836 |
3837 | has-symbols@1.0.3: {}
3838 |
3839 | has-tostringtag@1.0.2:
3840 | dependencies:
3841 | has-symbols: 1.0.3
3842 |
3843 | hasown@2.0.2:
3844 | dependencies:
3845 | function-bind: 1.1.2
3846 |
3847 | hast-util-parse-selector@2.2.5: {}
3848 |
3849 | hast-util-to-jsx-runtime@2.3.0:
3850 | dependencies:
3851 | '@types/estree': 1.0.5
3852 | '@types/hast': 3.0.4
3853 | '@types/unist': 3.0.2
3854 | comma-separated-tokens: 2.0.3
3855 | devlop: 1.1.0
3856 | estree-util-is-identifier-name: 3.0.0
3857 | hast-util-whitespace: 3.0.0
3858 | mdast-util-mdx-expression: 2.0.0
3859 | mdast-util-mdx-jsx: 3.1.2
3860 | mdast-util-mdxjs-esm: 2.0.1
3861 | property-information: 6.5.0
3862 | space-separated-tokens: 2.0.2
3863 | style-to-object: 1.0.6
3864 | unist-util-position: 5.0.0
3865 | vfile-message: 4.0.2
3866 | transitivePeerDependencies:
3867 | - supports-color
3868 |
3869 | hast-util-whitespace@3.0.0:
3870 | dependencies:
3871 | '@types/hast': 3.0.4
3872 |
3873 | hastscript@6.0.0:
3874 | dependencies:
3875 | '@types/hast': 2.3.10
3876 | comma-separated-tokens: 1.0.8
3877 | hast-util-parse-selector: 2.2.5
3878 | property-information: 5.6.0
3879 | space-separated-tokens: 1.1.5
3880 |
3881 | highlight.js@10.7.3: {}
3882 |
3883 | html-format@1.1.7: {}
3884 |
3885 | html-url-attributes@3.0.0: {}
3886 |
3887 | ignore@5.3.1: {}
3888 |
3889 | import-fresh@3.3.0:
3890 | dependencies:
3891 | parent-module: 1.0.1
3892 | resolve-from: 4.0.0
3893 |
3894 | imurmurhash@0.1.4: {}
3895 |
3896 | inflight@1.0.6:
3897 | dependencies:
3898 | once: 1.4.0
3899 | wrappy: 1.0.2
3900 |
3901 | inherits@2.0.4: {}
3902 |
3903 | inline-style-parser@0.2.3: {}
3904 |
3905 | internal-slot@1.0.7:
3906 | dependencies:
3907 | es-errors: 1.3.0
3908 | hasown: 2.0.2
3909 | side-channel: 1.0.6
3910 |
3911 | invariant@2.2.4:
3912 | dependencies:
3913 | loose-envify: 1.4.0
3914 |
3915 | is-alphabetical@1.0.4: {}
3916 |
3917 | is-alphabetical@2.0.1: {}
3918 |
3919 | is-alphanumerical@1.0.4:
3920 | dependencies:
3921 | is-alphabetical: 1.0.4
3922 | is-decimal: 1.0.4
3923 |
3924 | is-alphanumerical@2.0.1:
3925 | dependencies:
3926 | is-alphabetical: 2.0.1
3927 | is-decimal: 2.0.1
3928 |
3929 | is-arguments@1.1.1:
3930 | dependencies:
3931 | call-bind: 1.0.7
3932 | has-tostringtag: 1.0.2
3933 |
3934 | is-array-buffer@3.0.4:
3935 | dependencies:
3936 | call-bind: 1.0.7
3937 | get-intrinsic: 1.2.4
3938 |
3939 | is-async-function@2.0.0:
3940 | dependencies:
3941 | has-tostringtag: 1.0.2
3942 |
3943 | is-bigint@1.0.4:
3944 | dependencies:
3945 | has-bigints: 1.0.2
3946 |
3947 | is-binary-path@2.1.0:
3948 | dependencies:
3949 | binary-extensions: 2.3.0
3950 |
3951 | is-boolean-object@1.1.2:
3952 | dependencies:
3953 | call-bind: 1.0.7
3954 | has-tostringtag: 1.0.2
3955 |
3956 | is-callable@1.2.7: {}
3957 |
3958 | is-core-module@2.14.0:
3959 | dependencies:
3960 | hasown: 2.0.2
3961 |
3962 | is-data-view@1.0.1:
3963 | dependencies:
3964 | is-typed-array: 1.1.13
3965 |
3966 | is-date-object@1.0.5:
3967 | dependencies:
3968 | has-tostringtag: 1.0.2
3969 |
3970 | is-decimal@1.0.4: {}
3971 |
3972 | is-decimal@2.0.1: {}
3973 |
3974 | is-extglob@2.1.1: {}
3975 |
3976 | is-finalizationregistry@1.0.2:
3977 | dependencies:
3978 | call-bind: 1.0.7
3979 |
3980 | is-fullwidth-code-point@3.0.0: {}
3981 |
3982 | is-generator-function@1.0.10:
3983 | dependencies:
3984 | has-tostringtag: 1.0.2
3985 |
3986 | is-glob@4.0.3:
3987 | dependencies:
3988 | is-extglob: 2.1.1
3989 |
3990 | is-hexadecimal@1.0.4: {}
3991 |
3992 | is-hexadecimal@2.0.1: {}
3993 |
3994 | is-map@2.0.3: {}
3995 |
3996 | is-negative-zero@2.0.3: {}
3997 |
3998 | is-number-object@1.0.7:
3999 | dependencies:
4000 | has-tostringtag: 1.0.2
4001 |
4002 | is-number@7.0.0: {}
4003 |
4004 | is-path-inside@3.0.3: {}
4005 |
4006 | is-plain-obj@4.1.0: {}
4007 |
4008 | is-regex@1.1.4:
4009 | dependencies:
4010 | call-bind: 1.0.7
4011 | has-tostringtag: 1.0.2
4012 |
4013 | is-set@2.0.3: {}
4014 |
4015 | is-shared-array-buffer@1.0.3:
4016 | dependencies:
4017 | call-bind: 1.0.7
4018 |
4019 | is-string@1.0.7:
4020 | dependencies:
4021 | has-tostringtag: 1.0.2
4022 |
4023 | is-symbol@1.0.4:
4024 | dependencies:
4025 | has-symbols: 1.0.3
4026 |
4027 | is-typed-array@1.1.13:
4028 | dependencies:
4029 | which-typed-array: 1.1.15
4030 |
4031 | is-weakmap@2.0.2: {}
4032 |
4033 | is-weakref@1.0.2:
4034 | dependencies:
4035 | call-bind: 1.0.7
4036 |
4037 | is-weakset@2.0.3:
4038 | dependencies:
4039 | call-bind: 1.0.7
4040 | get-intrinsic: 1.2.4
4041 |
4042 | isarray@2.0.5: {}
4043 |
4044 | isexe@2.0.0: {}
4045 |
4046 | iterator.prototype@1.1.2:
4047 | dependencies:
4048 | define-properties: 1.2.1
4049 | get-intrinsic: 1.2.4
4050 | has-symbols: 1.0.3
4051 | reflect.getprototypeof: 1.0.6
4052 | set-function-name: 2.0.2
4053 |
4054 | jackspeak@2.3.6:
4055 | dependencies:
4056 | '@isaacs/cliui': 8.0.2
4057 | optionalDependencies:
4058 | '@pkgjs/parseargs': 0.11.0
4059 |
4060 | jackspeak@3.4.0:
4061 | dependencies:
4062 | '@isaacs/cliui': 8.0.2
4063 | optionalDependencies:
4064 | '@pkgjs/parseargs': 0.11.0
4065 |
4066 | jiti@1.21.6: {}
4067 |
4068 | js-tokens@4.0.0: {}
4069 |
4070 | js-yaml@4.1.0:
4071 | dependencies:
4072 | argparse: 2.0.1
4073 |
4074 | json-buffer@3.0.1: {}
4075 |
4076 | json-schema-traverse@0.4.1: {}
4077 |
4078 | json-schema@0.4.0: {}
4079 |
4080 | json-stable-stringify-without-jsonify@1.0.1: {}
4081 |
4082 | json5@1.0.2:
4083 | dependencies:
4084 | minimist: 1.2.8
4085 |
4086 | jsx-ast-utils@3.3.5:
4087 | dependencies:
4088 | array-includes: 3.1.8
4089 | array.prototype.flat: 1.3.2
4090 | object.assign: 4.1.5
4091 | object.values: 1.2.0
4092 |
4093 | keyv@4.5.4:
4094 | dependencies:
4095 | json-buffer: 3.0.1
4096 |
4097 | language-subtag-registry@0.3.23: {}
4098 |
4099 | language-tags@1.0.9:
4100 | dependencies:
4101 | language-subtag-registry: 0.3.23
4102 |
4103 | levn@0.4.1:
4104 | dependencies:
4105 | prelude-ls: 1.2.1
4106 | type-check: 0.4.0
4107 |
4108 | lilconfig@2.1.0: {}
4109 |
4110 | lilconfig@3.1.2: {}
4111 |
4112 | lines-and-columns@1.2.4: {}
4113 |
4114 | locate-path@6.0.0:
4115 | dependencies:
4116 | p-locate: 5.0.0
4117 |
4118 | lodash.merge@4.6.2: {}
4119 |
4120 | longest-streak@3.1.0: {}
4121 |
4122 | loose-envify@1.4.0:
4123 | dependencies:
4124 | js-tokens: 4.0.0
4125 |
4126 | lowlight@1.20.0:
4127 | dependencies:
4128 | fault: 1.0.4
4129 | highlight.js: 10.7.3
4130 |
4131 | lru-cache@10.2.2: {}
4132 |
4133 | lucide-react@0.407.0(react@18.3.1):
4134 | dependencies:
4135 | react: 18.3.1
4136 |
4137 | lucide-react@0.408.0(react@18.3.1):
4138 | dependencies:
4139 | react: 18.3.1
4140 |
4141 | mdast-util-from-markdown@2.0.1:
4142 | dependencies:
4143 | '@types/mdast': 4.0.4
4144 | '@types/unist': 3.0.2
4145 | decode-named-character-reference: 1.0.2
4146 | devlop: 1.1.0
4147 | mdast-util-to-string: 4.0.0
4148 | micromark: 4.0.0
4149 | micromark-util-decode-numeric-character-reference: 2.0.1
4150 | micromark-util-decode-string: 2.0.0
4151 | micromark-util-normalize-identifier: 2.0.0
4152 | micromark-util-symbol: 2.0.0
4153 | micromark-util-types: 2.0.0
4154 | unist-util-stringify-position: 4.0.0
4155 | transitivePeerDependencies:
4156 | - supports-color
4157 |
4158 | mdast-util-mdx-expression@2.0.0:
4159 | dependencies:
4160 | '@types/estree-jsx': 1.0.5
4161 | '@types/hast': 3.0.4
4162 | '@types/mdast': 4.0.4
4163 | devlop: 1.1.0
4164 | mdast-util-from-markdown: 2.0.1
4165 | mdast-util-to-markdown: 2.1.0
4166 | transitivePeerDependencies:
4167 | - supports-color
4168 |
4169 | mdast-util-mdx-jsx@3.1.2:
4170 | dependencies:
4171 | '@types/estree-jsx': 1.0.5
4172 | '@types/hast': 3.0.4
4173 | '@types/mdast': 4.0.4
4174 | '@types/unist': 3.0.2
4175 | ccount: 2.0.1
4176 | devlop: 1.1.0
4177 | mdast-util-from-markdown: 2.0.1
4178 | mdast-util-to-markdown: 2.1.0
4179 | parse-entities: 4.0.1
4180 | stringify-entities: 4.0.4
4181 | unist-util-remove-position: 5.0.0
4182 | unist-util-stringify-position: 4.0.0
4183 | vfile-message: 4.0.2
4184 | transitivePeerDependencies:
4185 | - supports-color
4186 |
4187 | mdast-util-mdxjs-esm@2.0.1:
4188 | dependencies:
4189 | '@types/estree-jsx': 1.0.5
4190 | '@types/hast': 3.0.4
4191 | '@types/mdast': 4.0.4
4192 | devlop: 1.1.0
4193 | mdast-util-from-markdown: 2.0.1
4194 | mdast-util-to-markdown: 2.1.0
4195 | transitivePeerDependencies:
4196 | - supports-color
4197 |
4198 | mdast-util-phrasing@4.1.0:
4199 | dependencies:
4200 | '@types/mdast': 4.0.4
4201 | unist-util-is: 6.0.0
4202 |
4203 | mdast-util-to-hast@13.2.0:
4204 | dependencies:
4205 | '@types/hast': 3.0.4
4206 | '@types/mdast': 4.0.4
4207 | '@ungap/structured-clone': 1.2.0
4208 | devlop: 1.1.0
4209 | micromark-util-sanitize-uri: 2.0.0
4210 | trim-lines: 3.0.1
4211 | unist-util-position: 5.0.0
4212 | unist-util-visit: 5.0.0
4213 | vfile: 6.0.1
4214 |
4215 | mdast-util-to-markdown@2.1.0:
4216 | dependencies:
4217 | '@types/mdast': 4.0.4
4218 | '@types/unist': 3.0.2
4219 | longest-streak: 3.1.0
4220 | mdast-util-phrasing: 4.1.0
4221 | mdast-util-to-string: 4.0.0
4222 | micromark-util-decode-string: 2.0.0
4223 | unist-util-visit: 5.0.0
4224 | zwitch: 2.0.4
4225 |
4226 | mdast-util-to-string@4.0.0:
4227 | dependencies:
4228 | '@types/mdast': 4.0.4
4229 |
4230 | merge2@1.4.1: {}
4231 |
4232 | micromark-core-commonmark@2.0.1:
4233 | dependencies:
4234 | decode-named-character-reference: 1.0.2
4235 | devlop: 1.1.0
4236 | micromark-factory-destination: 2.0.0
4237 | micromark-factory-label: 2.0.0
4238 | micromark-factory-space: 2.0.0
4239 | micromark-factory-title: 2.0.0
4240 | micromark-factory-whitespace: 2.0.0
4241 | micromark-util-character: 2.1.0
4242 | micromark-util-chunked: 2.0.0
4243 | micromark-util-classify-character: 2.0.0
4244 | micromark-util-html-tag-name: 2.0.0
4245 | micromark-util-normalize-identifier: 2.0.0
4246 | micromark-util-resolve-all: 2.0.0
4247 | micromark-util-subtokenize: 2.0.1
4248 | micromark-util-symbol: 2.0.0
4249 | micromark-util-types: 2.0.0
4250 |
4251 | micromark-factory-destination@2.0.0:
4252 | dependencies:
4253 | micromark-util-character: 2.1.0
4254 | micromark-util-symbol: 2.0.0
4255 | micromark-util-types: 2.0.0
4256 |
4257 | micromark-factory-label@2.0.0:
4258 | dependencies:
4259 | devlop: 1.1.0
4260 | micromark-util-character: 2.1.0
4261 | micromark-util-symbol: 2.0.0
4262 | micromark-util-types: 2.0.0
4263 |
4264 | micromark-factory-space@2.0.0:
4265 | dependencies:
4266 | micromark-util-character: 2.1.0
4267 | micromark-util-types: 2.0.0
4268 |
4269 | micromark-factory-title@2.0.0:
4270 | dependencies:
4271 | micromark-factory-space: 2.0.0
4272 | micromark-util-character: 2.1.0
4273 | micromark-util-symbol: 2.0.0
4274 | micromark-util-types: 2.0.0
4275 |
4276 | micromark-factory-whitespace@2.0.0:
4277 | dependencies:
4278 | micromark-factory-space: 2.0.0
4279 | micromark-util-character: 2.1.0
4280 | micromark-util-symbol: 2.0.0
4281 | micromark-util-types: 2.0.0
4282 |
4283 | micromark-util-character@2.1.0:
4284 | dependencies:
4285 | micromark-util-symbol: 2.0.0
4286 | micromark-util-types: 2.0.0
4287 |
4288 | micromark-util-chunked@2.0.0:
4289 | dependencies:
4290 | micromark-util-symbol: 2.0.0
4291 |
4292 | micromark-util-classify-character@2.0.0:
4293 | dependencies:
4294 | micromark-util-character: 2.1.0
4295 | micromark-util-symbol: 2.0.0
4296 | micromark-util-types: 2.0.0
4297 |
4298 | micromark-util-combine-extensions@2.0.0:
4299 | dependencies:
4300 | micromark-util-chunked: 2.0.0
4301 | micromark-util-types: 2.0.0
4302 |
4303 | micromark-util-decode-numeric-character-reference@2.0.1:
4304 | dependencies:
4305 | micromark-util-symbol: 2.0.0
4306 |
4307 | micromark-util-decode-string@2.0.0:
4308 | dependencies:
4309 | decode-named-character-reference: 1.0.2
4310 | micromark-util-character: 2.1.0
4311 | micromark-util-decode-numeric-character-reference: 2.0.1
4312 | micromark-util-symbol: 2.0.0
4313 |
4314 | micromark-util-encode@2.0.0: {}
4315 |
4316 | micromark-util-html-tag-name@2.0.0: {}
4317 |
4318 | micromark-util-normalize-identifier@2.0.0:
4319 | dependencies:
4320 | micromark-util-symbol: 2.0.0
4321 |
4322 | micromark-util-resolve-all@2.0.0:
4323 | dependencies:
4324 | micromark-util-types: 2.0.0
4325 |
4326 | micromark-util-sanitize-uri@2.0.0:
4327 | dependencies:
4328 | micromark-util-character: 2.1.0
4329 | micromark-util-encode: 2.0.0
4330 | micromark-util-symbol: 2.0.0
4331 |
4332 | micromark-util-subtokenize@2.0.1:
4333 | dependencies:
4334 | devlop: 1.1.0
4335 | micromark-util-chunked: 2.0.0
4336 | micromark-util-symbol: 2.0.0
4337 | micromark-util-types: 2.0.0
4338 |
4339 | micromark-util-symbol@2.0.0: {}
4340 |
4341 | micromark-util-types@2.0.0: {}
4342 |
4343 | micromark@4.0.0:
4344 | dependencies:
4345 | '@types/debug': 4.1.12
4346 | debug: 4.3.5
4347 | decode-named-character-reference: 1.0.2
4348 | devlop: 1.1.0
4349 | micromark-core-commonmark: 2.0.1
4350 | micromark-factory-space: 2.0.0
4351 | micromark-util-character: 2.1.0
4352 | micromark-util-chunked: 2.0.0
4353 | micromark-util-combine-extensions: 2.0.0
4354 | micromark-util-decode-numeric-character-reference: 2.0.1
4355 | micromark-util-encode: 2.0.0
4356 | micromark-util-normalize-identifier: 2.0.0
4357 | micromark-util-resolve-all: 2.0.0
4358 | micromark-util-sanitize-uri: 2.0.0
4359 | micromark-util-subtokenize: 2.0.1
4360 | micromark-util-symbol: 2.0.0
4361 | micromark-util-types: 2.0.0
4362 | transitivePeerDependencies:
4363 | - supports-color
4364 |
4365 | micromatch@4.0.7:
4366 | dependencies:
4367 | braces: 3.0.3
4368 | picomatch: 2.3.1
4369 |
4370 | minimatch@3.1.2:
4371 | dependencies:
4372 | brace-expansion: 1.1.11
4373 |
4374 | minimatch@9.0.3:
4375 | dependencies:
4376 | brace-expansion: 2.0.1
4377 |
4378 | minimatch@9.0.4:
4379 | dependencies:
4380 | brace-expansion: 2.0.1
4381 |
4382 | minimist@1.2.8: {}
4383 |
4384 | minipass@7.1.2: {}
4385 |
4386 | ms@2.1.2: {}
4387 |
4388 | ms@2.1.3: {}
4389 |
4390 | mz@2.7.0:
4391 | dependencies:
4392 | any-promise: 1.3.0
4393 | object-assign: 4.1.1
4394 | thenify-all: 1.6.0
4395 |
4396 | nanoid@3.3.6: {}
4397 |
4398 | nanoid@3.3.7: {}
4399 |
4400 | nanoid@5.0.7: {}
4401 |
4402 | natural-compare@1.4.0: {}
4403 |
4404 | next@14.2.5(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
4405 | dependencies:
4406 | '@next/env': 14.2.5
4407 | '@swc/helpers': 0.5.5
4408 | busboy: 1.6.0
4409 | caniuse-lite: 1.0.30001636
4410 | graceful-fs: 4.2.11
4411 | postcss: 8.4.31
4412 | react: 18.3.1
4413 | react-dom: 18.3.1(react@18.3.1)
4414 | styled-jsx: 5.1.1(react@18.3.1)
4415 | optionalDependencies:
4416 | '@next/swc-darwin-arm64': 14.2.5
4417 | '@next/swc-darwin-x64': 14.2.5
4418 | '@next/swc-linux-arm64-gnu': 14.2.5
4419 | '@next/swc-linux-arm64-musl': 14.2.5
4420 | '@next/swc-linux-x64-gnu': 14.2.5
4421 | '@next/swc-linux-x64-musl': 14.2.5
4422 | '@next/swc-win32-arm64-msvc': 14.2.5
4423 | '@next/swc-win32-ia32-msvc': 14.2.5
4424 | '@next/swc-win32-x64-msvc': 14.2.5
4425 | '@opentelemetry/api': 1.9.0
4426 | transitivePeerDependencies:
4427 | - '@babel/core'
4428 | - babel-plugin-macros
4429 |
4430 | normalize-path@3.0.0: {}
4431 |
4432 | object-assign@4.1.1: {}
4433 |
4434 | object-hash@3.0.0: {}
4435 |
4436 | object-inspect@1.13.2: {}
4437 |
4438 | object-is@1.1.6:
4439 | dependencies:
4440 | call-bind: 1.0.7
4441 | define-properties: 1.2.1
4442 |
4443 | object-keys@1.1.1: {}
4444 |
4445 | object.assign@4.1.5:
4446 | dependencies:
4447 | call-bind: 1.0.7
4448 | define-properties: 1.2.1
4449 | has-symbols: 1.0.3
4450 | object-keys: 1.1.1
4451 |
4452 | object.entries@1.1.8:
4453 | dependencies:
4454 | call-bind: 1.0.7
4455 | define-properties: 1.2.1
4456 | es-object-atoms: 1.0.0
4457 |
4458 | object.fromentries@2.0.8:
4459 | dependencies:
4460 | call-bind: 1.0.7
4461 | define-properties: 1.2.1
4462 | es-abstract: 1.23.3
4463 | es-object-atoms: 1.0.0
4464 |
4465 | object.groupby@1.0.3:
4466 | dependencies:
4467 | call-bind: 1.0.7
4468 | define-properties: 1.2.1
4469 | es-abstract: 1.23.3
4470 |
4471 | object.hasown@1.1.4:
4472 | dependencies:
4473 | define-properties: 1.2.1
4474 | es-abstract: 1.23.3
4475 | es-object-atoms: 1.0.0
4476 |
4477 | object.values@1.2.0:
4478 | dependencies:
4479 | call-bind: 1.0.7
4480 | define-properties: 1.2.1
4481 | es-object-atoms: 1.0.0
4482 |
4483 | once@1.4.0:
4484 | dependencies:
4485 | wrappy: 1.0.2
4486 |
4487 | optionator@0.9.4:
4488 | dependencies:
4489 | deep-is: 0.1.4
4490 | fast-levenshtein: 2.0.6
4491 | levn: 0.4.1
4492 | prelude-ls: 1.2.1
4493 | type-check: 0.4.0
4494 | word-wrap: 1.2.5
4495 |
4496 | p-limit@3.1.0:
4497 | dependencies:
4498 | yocto-queue: 0.1.0
4499 |
4500 | p-locate@5.0.0:
4501 | dependencies:
4502 | p-limit: 3.1.0
4503 |
4504 | package-json-from-dist@1.0.0: {}
4505 |
4506 | parent-module@1.0.1:
4507 | dependencies:
4508 | callsites: 3.1.0
4509 |
4510 | parse-entities@2.0.0:
4511 | dependencies:
4512 | character-entities: 1.2.4
4513 | character-entities-legacy: 1.1.4
4514 | character-reference-invalid: 1.1.4
4515 | is-alphanumerical: 1.0.4
4516 | is-decimal: 1.0.4
4517 | is-hexadecimal: 1.0.4
4518 |
4519 | parse-entities@4.0.1:
4520 | dependencies:
4521 | '@types/unist': 2.0.10
4522 | character-entities: 2.0.2
4523 | character-entities-legacy: 3.0.0
4524 | character-reference-invalid: 2.0.1
4525 | decode-named-character-reference: 1.0.2
4526 | is-alphanumerical: 2.0.1
4527 | is-decimal: 2.0.1
4528 | is-hexadecimal: 2.0.1
4529 |
4530 | path-exists@4.0.0: {}
4531 |
4532 | path-is-absolute@1.0.1: {}
4533 |
4534 | path-key@3.1.1: {}
4535 |
4536 | path-parse@1.0.7: {}
4537 |
4538 | path-scurry@1.11.1:
4539 | dependencies:
4540 | lru-cache: 10.2.2
4541 | minipass: 7.1.2
4542 |
4543 | path-type@4.0.0: {}
4544 |
4545 | picocolors@1.0.1: {}
4546 |
4547 | picomatch@2.3.1: {}
4548 |
4549 | pify@2.3.0: {}
4550 |
4551 | pirates@4.0.6: {}
4552 |
4553 | possible-typed-array-names@1.0.0: {}
4554 |
4555 | postcss-import@15.1.0(postcss@8.4.38):
4556 | dependencies:
4557 | postcss: 8.4.38
4558 | postcss-value-parser: 4.2.0
4559 | read-cache: 1.0.0
4560 | resolve: 1.22.8
4561 |
4562 | postcss-js@4.0.1(postcss@8.4.38):
4563 | dependencies:
4564 | camelcase-css: 2.0.1
4565 | postcss: 8.4.38
4566 |
4567 | postcss-load-config@4.0.2(postcss@8.4.38):
4568 | dependencies:
4569 | lilconfig: 3.1.2
4570 | yaml: 2.4.5
4571 | optionalDependencies:
4572 | postcss: 8.4.38
4573 |
4574 | postcss-nested@6.0.1(postcss@8.4.38):
4575 | dependencies:
4576 | postcss: 8.4.38
4577 | postcss-selector-parser: 6.1.0
4578 |
4579 | postcss-selector-parser@6.1.0:
4580 | dependencies:
4581 | cssesc: 3.0.0
4582 | util-deprecate: 1.0.2
4583 |
4584 | postcss-value-parser@4.2.0: {}
4585 |
4586 | postcss@8.4.31:
4587 | dependencies:
4588 | nanoid: 3.3.7
4589 | picocolors: 1.0.1
4590 | source-map-js: 1.2.0
4591 |
4592 | postcss@8.4.38:
4593 | dependencies:
4594 | nanoid: 3.3.7
4595 | picocolors: 1.0.1
4596 | source-map-js: 1.2.0
4597 |
4598 | prelude-ls@1.2.1: {}
4599 |
4600 | prismjs@1.27.0: {}
4601 |
4602 | prismjs@1.29.0: {}
4603 |
4604 | prop-types@15.8.1:
4605 | dependencies:
4606 | loose-envify: 1.4.0
4607 | object-assign: 4.1.1
4608 | react-is: 16.13.1
4609 |
4610 | property-information@5.6.0:
4611 | dependencies:
4612 | xtend: 4.0.2
4613 |
4614 | property-information@6.5.0: {}
4615 |
4616 | punycode@2.3.1: {}
4617 |
4618 | queue-microtask@1.2.3: {}
4619 |
4620 | react-dom@18.3.1(react@18.3.1):
4621 | dependencies:
4622 | loose-envify: 1.4.0
4623 | react: 18.3.1
4624 | scheduler: 0.23.2
4625 |
4626 | react-is@16.13.1: {}
4627 |
4628 | react-markdown@9.0.1(@types/react@18.3.3)(react@18.3.1):
4629 | dependencies:
4630 | '@types/hast': 3.0.4
4631 | '@types/react': 18.3.3
4632 | devlop: 1.1.0
4633 | hast-util-to-jsx-runtime: 2.3.0
4634 | html-url-attributes: 3.0.0
4635 | mdast-util-to-hast: 13.2.0
4636 | react: 18.3.1
4637 | remark-parse: 11.0.0
4638 | remark-rehype: 11.1.0
4639 | unified: 11.0.5
4640 | unist-util-visit: 5.0.0
4641 | vfile: 6.0.1
4642 | transitivePeerDependencies:
4643 | - supports-color
4644 |
4645 | react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@18.3.1):
4646 | dependencies:
4647 | react: 18.3.1
4648 | react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1)
4649 | tslib: 2.6.3
4650 | optionalDependencies:
4651 | '@types/react': 18.3.3
4652 |
4653 | react-remove-scroll@2.5.7(@types/react@18.3.3)(react@18.3.1):
4654 | dependencies:
4655 | react: 18.3.1
4656 | react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@18.3.1)
4657 | react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1)
4658 | tslib: 2.6.3
4659 | use-callback-ref: 1.3.2(@types/react@18.3.3)(react@18.3.1)
4660 | use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1)
4661 | optionalDependencies:
4662 | '@types/react': 18.3.3
4663 |
4664 | react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.3.1):
4665 | dependencies:
4666 | get-nonce: 1.0.1
4667 | invariant: 2.2.4
4668 | react: 18.3.1
4669 | tslib: 2.6.3
4670 | optionalDependencies:
4671 | '@types/react': 18.3.3
4672 |
4673 | react-syntax-highlighter@15.5.0(react@18.3.1):
4674 | dependencies:
4675 | '@babel/runtime': 7.24.7
4676 | highlight.js: 10.7.3
4677 | lowlight: 1.20.0
4678 | prismjs: 1.29.0
4679 | react: 18.3.1
4680 | refractor: 3.6.0
4681 |
4682 | react-textarea-autosize@8.5.3(@types/react@18.3.3)(react@18.3.1):
4683 | dependencies:
4684 | '@babel/runtime': 7.24.7
4685 | react: 18.3.1
4686 | use-composed-ref: 1.3.0(react@18.3.1)
4687 | use-latest: 1.2.1(@types/react@18.3.3)(react@18.3.1)
4688 | transitivePeerDependencies:
4689 | - '@types/react'
4690 |
4691 | react@18.3.1:
4692 | dependencies:
4693 | loose-envify: 1.4.0
4694 |
4695 | read-cache@1.0.0:
4696 | dependencies:
4697 | pify: 2.3.0
4698 |
4699 | readdirp@3.6.0:
4700 | dependencies:
4701 | picomatch: 2.3.1
4702 |
4703 | reflect.getprototypeof@1.0.6:
4704 | dependencies:
4705 | call-bind: 1.0.7
4706 | define-properties: 1.2.1
4707 | es-abstract: 1.23.3
4708 | es-errors: 1.3.0
4709 | get-intrinsic: 1.2.4
4710 | globalthis: 1.0.4
4711 | which-builtin-type: 1.1.3
4712 |
4713 | refractor@3.6.0:
4714 | dependencies:
4715 | hastscript: 6.0.0
4716 | parse-entities: 2.0.0
4717 | prismjs: 1.27.0
4718 |
4719 | regenerator-runtime@0.14.1: {}
4720 |
4721 | regexp.prototype.flags@1.5.2:
4722 | dependencies:
4723 | call-bind: 1.0.7
4724 | define-properties: 1.2.1
4725 | es-errors: 1.3.0
4726 | set-function-name: 2.0.2
4727 |
4728 | remark-parse@11.0.0:
4729 | dependencies:
4730 | '@types/mdast': 4.0.4
4731 | mdast-util-from-markdown: 2.0.1
4732 | micromark-util-types: 2.0.0
4733 | unified: 11.0.5
4734 | transitivePeerDependencies:
4735 | - supports-color
4736 |
4737 | remark-rehype@11.1.0:
4738 | dependencies:
4739 | '@types/hast': 3.0.4
4740 | '@types/mdast': 4.0.4
4741 | mdast-util-to-hast: 13.2.0
4742 | unified: 11.0.5
4743 | vfile: 6.0.1
4744 |
4745 | resolve-from@4.0.0: {}
4746 |
4747 | resolve-pkg-maps@1.0.0: {}
4748 |
4749 | resolve@1.22.8:
4750 | dependencies:
4751 | is-core-module: 2.14.0
4752 | path-parse: 1.0.7
4753 | supports-preserve-symlinks-flag: 1.0.0
4754 |
4755 | resolve@2.0.0-next.5:
4756 | dependencies:
4757 | is-core-module: 2.14.0
4758 | path-parse: 1.0.7
4759 | supports-preserve-symlinks-flag: 1.0.0
4760 |
4761 | reusify@1.0.4: {}
4762 |
4763 | rimraf@3.0.2:
4764 | dependencies:
4765 | glob: 7.2.3
4766 |
4767 | run-parallel@1.2.0:
4768 | dependencies:
4769 | queue-microtask: 1.2.3
4770 |
4771 | safe-array-concat@1.1.2:
4772 | dependencies:
4773 | call-bind: 1.0.7
4774 | get-intrinsic: 1.2.4
4775 | has-symbols: 1.0.3
4776 | isarray: 2.0.5
4777 |
4778 | safe-regex-test@1.0.3:
4779 | dependencies:
4780 | call-bind: 1.0.7
4781 | es-errors: 1.3.0
4782 | is-regex: 1.1.4
4783 |
4784 | scheduler@0.23.2:
4785 | dependencies:
4786 | loose-envify: 1.4.0
4787 |
4788 | secure-json-parse@2.7.0: {}
4789 |
4790 | semver@6.3.1: {}
4791 |
4792 | semver@7.6.2: {}
4793 |
4794 | set-function-length@1.2.2:
4795 | dependencies:
4796 | define-data-property: 1.1.4
4797 | es-errors: 1.3.0
4798 | function-bind: 1.1.2
4799 | get-intrinsic: 1.2.4
4800 | gopd: 1.0.1
4801 | has-property-descriptors: 1.0.2
4802 |
4803 | set-function-name@2.0.2:
4804 | dependencies:
4805 | define-data-property: 1.1.4
4806 | es-errors: 1.3.0
4807 | functions-have-names: 1.2.3
4808 | has-property-descriptors: 1.0.2
4809 |
4810 | shebang-command@2.0.0:
4811 | dependencies:
4812 | shebang-regex: 3.0.0
4813 |
4814 | shebang-regex@3.0.0: {}
4815 |
4816 | side-channel@1.0.6:
4817 | dependencies:
4818 | call-bind: 1.0.7
4819 | es-errors: 1.3.0
4820 | get-intrinsic: 1.2.4
4821 | object-inspect: 1.13.2
4822 |
4823 | signal-exit@4.1.0: {}
4824 |
4825 | slash@3.0.0: {}
4826 |
4827 | source-map-js@1.2.0: {}
4828 |
4829 | space-separated-tokens@1.1.5: {}
4830 |
4831 | space-separated-tokens@2.0.2: {}
4832 |
4833 | stop-iteration-iterator@1.0.0:
4834 | dependencies:
4835 | internal-slot: 1.0.7
4836 |
4837 | streamsearch@1.1.0: {}
4838 |
4839 | string-width@4.2.3:
4840 | dependencies:
4841 | emoji-regex: 8.0.0
4842 | is-fullwidth-code-point: 3.0.0
4843 | strip-ansi: 6.0.1
4844 |
4845 | string-width@5.1.2:
4846 | dependencies:
4847 | eastasianwidth: 0.2.0
4848 | emoji-regex: 9.2.2
4849 | strip-ansi: 7.1.0
4850 |
4851 | string.prototype.includes@2.0.0:
4852 | dependencies:
4853 | define-properties: 1.2.1
4854 | es-abstract: 1.23.3
4855 |
4856 | string.prototype.matchall@4.0.11:
4857 | dependencies:
4858 | call-bind: 1.0.7
4859 | define-properties: 1.2.1
4860 | es-abstract: 1.23.3
4861 | es-errors: 1.3.0
4862 | es-object-atoms: 1.0.0
4863 | get-intrinsic: 1.2.4
4864 | gopd: 1.0.1
4865 | has-symbols: 1.0.3
4866 | internal-slot: 1.0.7
4867 | regexp.prototype.flags: 1.5.2
4868 | set-function-name: 2.0.2
4869 | side-channel: 1.0.6
4870 |
4871 | string.prototype.trim@1.2.9:
4872 | dependencies:
4873 | call-bind: 1.0.7
4874 | define-properties: 1.2.1
4875 | es-abstract: 1.23.3
4876 | es-object-atoms: 1.0.0
4877 |
4878 | string.prototype.trimend@1.0.8:
4879 | dependencies:
4880 | call-bind: 1.0.7
4881 | define-properties: 1.2.1
4882 | es-object-atoms: 1.0.0
4883 |
4884 | string.prototype.trimstart@1.0.8:
4885 | dependencies:
4886 | call-bind: 1.0.7
4887 | define-properties: 1.2.1
4888 | es-object-atoms: 1.0.0
4889 |
4890 | stringify-entities@4.0.4:
4891 | dependencies:
4892 | character-entities-html4: 2.1.0
4893 | character-entities-legacy: 3.0.0
4894 |
4895 | strip-ansi@6.0.1:
4896 | dependencies:
4897 | ansi-regex: 5.0.1
4898 |
4899 | strip-ansi@7.1.0:
4900 | dependencies:
4901 | ansi-regex: 6.0.1
4902 |
4903 | strip-bom@3.0.0: {}
4904 |
4905 | strip-json-comments@3.1.1: {}
4906 |
4907 | style-to-object@1.0.6:
4908 | dependencies:
4909 | inline-style-parser: 0.2.3
4910 |
4911 | styled-jsx@5.1.1(react@18.3.1):
4912 | dependencies:
4913 | client-only: 0.0.1
4914 | react: 18.3.1
4915 |
4916 | sucrase@3.35.0:
4917 | dependencies:
4918 | '@jridgewell/gen-mapping': 0.3.5
4919 | commander: 4.1.1
4920 | glob: 10.4.2
4921 | lines-and-columns: 1.2.4
4922 | mz: 2.7.0
4923 | pirates: 4.0.6
4924 | ts-interface-checker: 0.1.13
4925 |
4926 | supports-color@7.2.0:
4927 | dependencies:
4928 | has-flag: 4.0.0
4929 |
4930 | supports-preserve-symlinks-flag@1.0.0: {}
4931 |
4932 | tailwind-merge@2.4.0: {}
4933 |
4934 | tailwindcss-animate@1.0.7(tailwindcss@3.4.5):
4935 | dependencies:
4936 | tailwindcss: 3.4.5
4937 |
4938 | tailwindcss@3.4.5:
4939 | dependencies:
4940 | '@alloc/quick-lru': 5.2.0
4941 | arg: 5.0.2
4942 | chokidar: 3.6.0
4943 | didyoumean: 1.2.2
4944 | dlv: 1.1.3
4945 | fast-glob: 3.3.2
4946 | glob-parent: 6.0.2
4947 | is-glob: 4.0.3
4948 | jiti: 1.21.6
4949 | lilconfig: 2.1.0
4950 | micromatch: 4.0.7
4951 | normalize-path: 3.0.0
4952 | object-hash: 3.0.0
4953 | picocolors: 1.0.1
4954 | postcss: 8.4.38
4955 | postcss-import: 15.1.0(postcss@8.4.38)
4956 | postcss-js: 4.0.1(postcss@8.4.38)
4957 | postcss-load-config: 4.0.2(postcss@8.4.38)
4958 | postcss-nested: 6.0.1(postcss@8.4.38)
4959 | postcss-selector-parser: 6.1.0
4960 | resolve: 1.22.8
4961 | sucrase: 3.35.0
4962 | transitivePeerDependencies:
4963 | - ts-node
4964 |
4965 | tapable@2.2.1: {}
4966 |
4967 | text-table@0.2.0: {}
4968 |
4969 | thenify-all@1.6.0:
4970 | dependencies:
4971 | thenify: 3.3.1
4972 |
4973 | thenify@3.3.1:
4974 | dependencies:
4975 | any-promise: 1.3.0
4976 |
4977 | to-regex-range@5.0.1:
4978 | dependencies:
4979 | is-number: 7.0.0
4980 |
4981 | trim-lines@3.0.1: {}
4982 |
4983 | trough@2.2.0: {}
4984 |
4985 | ts-api-utils@1.3.0(typescript@5.5.2):
4986 | dependencies:
4987 | typescript: 5.5.2
4988 |
4989 | ts-interface-checker@0.1.13: {}
4990 |
4991 | tsconfig-paths@3.15.0:
4992 | dependencies:
4993 | '@types/json5': 0.0.29
4994 | json5: 1.0.2
4995 | minimist: 1.2.8
4996 | strip-bom: 3.0.0
4997 |
4998 | tslib@2.6.3: {}
4999 |
5000 | type-check@0.4.0:
5001 | dependencies:
5002 | prelude-ls: 1.2.1
5003 |
5004 | type-fest@0.20.2: {}
5005 |
5006 | typed-array-buffer@1.0.2:
5007 | dependencies:
5008 | call-bind: 1.0.7
5009 | es-errors: 1.3.0
5010 | is-typed-array: 1.1.13
5011 |
5012 | typed-array-byte-length@1.0.1:
5013 | dependencies:
5014 | call-bind: 1.0.7
5015 | for-each: 0.3.3
5016 | gopd: 1.0.1
5017 | has-proto: 1.0.3
5018 | is-typed-array: 1.1.13
5019 |
5020 | typed-array-byte-offset@1.0.2:
5021 | dependencies:
5022 | available-typed-arrays: 1.0.7
5023 | call-bind: 1.0.7
5024 | for-each: 0.3.3
5025 | gopd: 1.0.1
5026 | has-proto: 1.0.3
5027 | is-typed-array: 1.1.13
5028 |
5029 | typed-array-length@1.0.6:
5030 | dependencies:
5031 | call-bind: 1.0.7
5032 | for-each: 0.3.3
5033 | gopd: 1.0.1
5034 | has-proto: 1.0.3
5035 | is-typed-array: 1.1.13
5036 | possible-typed-array-names: 1.0.0
5037 |
5038 | typescript@5.5.2: {}
5039 |
5040 | unbox-primitive@1.0.2:
5041 | dependencies:
5042 | call-bind: 1.0.7
5043 | has-bigints: 1.0.2
5044 | has-symbols: 1.0.3
5045 | which-boxed-primitive: 1.0.2
5046 |
5047 | undici-types@5.26.5: {}
5048 |
5049 | unified@11.0.5:
5050 | dependencies:
5051 | '@types/unist': 3.0.2
5052 | bail: 2.0.2
5053 | devlop: 1.1.0
5054 | extend: 3.0.2
5055 | is-plain-obj: 4.1.0
5056 | trough: 2.2.0
5057 | vfile: 6.0.1
5058 |
5059 | unist-util-is@6.0.0:
5060 | dependencies:
5061 | '@types/unist': 3.0.2
5062 |
5063 | unist-util-position@5.0.0:
5064 | dependencies:
5065 | '@types/unist': 3.0.2
5066 |
5067 | unist-util-remove-position@5.0.0:
5068 | dependencies:
5069 | '@types/unist': 3.0.2
5070 | unist-util-visit: 5.0.0
5071 |
5072 | unist-util-stringify-position@4.0.0:
5073 | dependencies:
5074 | '@types/unist': 3.0.2
5075 |
5076 | unist-util-visit-parents@6.0.1:
5077 | dependencies:
5078 | '@types/unist': 3.0.2
5079 | unist-util-is: 6.0.0
5080 |
5081 | unist-util-visit@5.0.0:
5082 | dependencies:
5083 | '@types/unist': 3.0.2
5084 | unist-util-is: 6.0.0
5085 | unist-util-visit-parents: 6.0.1
5086 |
5087 | uri-js@4.4.1:
5088 | dependencies:
5089 | punycode: 2.3.1
5090 |
5091 | use-callback-ref@1.3.2(@types/react@18.3.3)(react@18.3.1):
5092 | dependencies:
5093 | react: 18.3.1
5094 | tslib: 2.6.3
5095 | optionalDependencies:
5096 | '@types/react': 18.3.3
5097 |
5098 | use-composed-ref@1.3.0(react@18.3.1):
5099 | dependencies:
5100 | react: 18.3.1
5101 |
5102 | use-isomorphic-layout-effect@1.1.2(@types/react@18.3.3)(react@18.3.1):
5103 | dependencies:
5104 | react: 18.3.1
5105 | optionalDependencies:
5106 | '@types/react': 18.3.3
5107 |
5108 | use-latest@1.2.1(@types/react@18.3.3)(react@18.3.1):
5109 | dependencies:
5110 | react: 18.3.1
5111 | use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1)
5112 | optionalDependencies:
5113 | '@types/react': 18.3.3
5114 |
5115 | use-sidecar@1.1.2(@types/react@18.3.3)(react@18.3.1):
5116 | dependencies:
5117 | detect-node-es: 1.1.0
5118 | react: 18.3.1
5119 | tslib: 2.6.3
5120 | optionalDependencies:
5121 | '@types/react': 18.3.3
5122 |
5123 | use-sync-external-store@1.2.0(react@18.3.1):
5124 | dependencies:
5125 | react: 18.3.1
5126 |
5127 | util-deprecate@1.0.2: {}
5128 |
5129 | vfile-message@4.0.2:
5130 | dependencies:
5131 | '@types/unist': 3.0.2
5132 | unist-util-stringify-position: 4.0.0
5133 |
5134 | vfile@6.0.1:
5135 | dependencies:
5136 | '@types/unist': 3.0.2
5137 | unist-util-stringify-position: 4.0.0
5138 | vfile-message: 4.0.2
5139 |
5140 | which-boxed-primitive@1.0.2:
5141 | dependencies:
5142 | is-bigint: 1.0.4
5143 | is-boolean-object: 1.1.2
5144 | is-number-object: 1.0.7
5145 | is-string: 1.0.7
5146 | is-symbol: 1.0.4
5147 |
5148 | which-builtin-type@1.1.3:
5149 | dependencies:
5150 | function.prototype.name: 1.1.6
5151 | has-tostringtag: 1.0.2
5152 | is-async-function: 2.0.0
5153 | is-date-object: 1.0.5
5154 | is-finalizationregistry: 1.0.2
5155 | is-generator-function: 1.0.10
5156 | is-regex: 1.1.4
5157 | is-weakref: 1.0.2
5158 | isarray: 2.0.5
5159 | which-boxed-primitive: 1.0.2
5160 | which-collection: 1.0.2
5161 | which-typed-array: 1.1.15
5162 |
5163 | which-collection@1.0.2:
5164 | dependencies:
5165 | is-map: 2.0.3
5166 | is-set: 2.0.3
5167 | is-weakmap: 2.0.2
5168 | is-weakset: 2.0.3
5169 |
5170 | which-typed-array@1.1.15:
5171 | dependencies:
5172 | available-typed-arrays: 1.0.7
5173 | call-bind: 1.0.7
5174 | for-each: 0.3.3
5175 | gopd: 1.0.1
5176 | has-tostringtag: 1.0.2
5177 |
5178 | which@2.0.2:
5179 | dependencies:
5180 | isexe: 2.0.0
5181 |
5182 | word-wrap@1.2.5: {}
5183 |
5184 | wrap-ansi@7.0.0:
5185 | dependencies:
5186 | ansi-styles: 4.3.0
5187 | string-width: 4.2.3
5188 | strip-ansi: 6.0.1
5189 |
5190 | wrap-ansi@8.1.0:
5191 | dependencies:
5192 | ansi-styles: 6.2.1
5193 | string-width: 5.1.2
5194 | strip-ansi: 7.1.0
5195 |
5196 | wrappy@1.0.2: {}
5197 |
5198 | xtend@4.0.2: {}
5199 |
5200 | yaml@2.4.5: {}
5201 |
5202 | yocto-queue@0.1.0: {}
5203 |
5204 | zod-to-json-schema@3.23.1(zod@3.23.8):
5205 | dependencies:
5206 | zod: 3.23.8
5207 |
5208 | zod@3.23.8: {}
5209 |
5210 | zustand@4.5.4(@types/react@18.3.3)(react@18.3.1):
5211 | dependencies:
5212 | use-sync-external-store: 1.2.0(react@18.3.1)
5213 | optionalDependencies:
5214 | '@types/react': 18.3.3
5215 | react: 18.3.1
5216 |
5217 | zwitch@2.0.4: {}
5218 |
--------------------------------------------------------------------------------