├── .eslintrc.json
├── public
├── banner.webp
├── favicon.ico
├── banner-dark.png
├── banner-dark.webp
└── bluesky-logo.svg
├── README.md
├── src
├── pages
│ ├── fonts
│ │ ├── GeistVF.woff
│ │ └── GeistMonoVF.woff
│ ├── _app.tsx
│ ├── _document.tsx
│ └── index.tsx
├── lib
│ └── utils.ts
├── components
│ ├── BlueSkyLogo.tsx
│ ├── ui
│ │ └── tooltip.tsx
│ └── GithubLogo.tsx
└── styles
│ └── globals.css
├── postcss.config.mjs
├── next.config.ts
├── components.json
├── tsconfig.json
├── package.json
├── tailwind.config.ts
├── .gitignore
└── pnpm-lock.yaml
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["next/core-web-vitals", "next/typescript"]
3 | }
4 |
--------------------------------------------------------------------------------
/public/banner.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hipstersmoothie/bluesky-migrate/HEAD/public/banner.webp
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hipstersmoothie/bluesky-migrate/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Bluesky Migration
2 |
3 | This is a repo for the Bluesky migration guide.
4 |
5 | ## Assets
6 |
--------------------------------------------------------------------------------
/public/banner-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hipstersmoothie/bluesky-migrate/HEAD/public/banner-dark.png
--------------------------------------------------------------------------------
/public/banner-dark.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hipstersmoothie/bluesky-migrate/HEAD/public/banner-dark.webp
--------------------------------------------------------------------------------
/src/pages/fonts/GeistVF.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hipstersmoothie/bluesky-migrate/HEAD/src/pages/fonts/GeistVF.woff
--------------------------------------------------------------------------------
/src/pages/fonts/GeistMonoVF.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hipstersmoothie/bluesky-migrate/HEAD/src/pages/fonts/GeistMonoVF.woff
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/next.config.ts:
--------------------------------------------------------------------------------
1 | import type { NextConfig } from "next";
2 |
3 | const nextConfig: NextConfig = {
4 | /* config options here */
5 | reactStrictMode: true,
6 | };
7 |
8 | export default nextConfig;
9 |
--------------------------------------------------------------------------------
/src/lib/utils.ts:
--------------------------------------------------------------------------------
1 | import { clsx, type ClassValue } from "clsx"
2 | import { twMerge } from "tailwind-merge"
3 |
4 | export function cn(...inputs: ClassValue[]) {
5 | return twMerge(clsx(inputs))
6 | }
7 |
--------------------------------------------------------------------------------
/src/pages/_app.tsx:
--------------------------------------------------------------------------------
1 | import "@/styles/globals.css";
2 | import type { AppProps } from "next/app";
3 | import { TooltipProvider } from "../components/ui/tooltip";
4 |
5 | export default function App({ Component, pageProps }: AppProps) {
6 | return (
7 |
8 |
9 |
10 | );
11 | }
12 |
--------------------------------------------------------------------------------
/components.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://ui.shadcn.com/schema.json",
3 | "style": "default",
4 | "rsc": false,
5 | "tsx": true,
6 | "tailwind": {
7 | "config": "tailwind.config.ts",
8 | "css": "src/styles/globals.css",
9 | "baseColor": "neutral",
10 | "cssVariables": true,
11 | "prefix": ""
12 | },
13 | "aliases": {
14 | "components": "@/components",
15 | "utils": "@/lib/utils",
16 | "ui": "@/components/ui",
17 | "lib": "@/lib",
18 | "hooks": "@/hooks"
19 | },
20 | "iconLibrary": "lucide"
21 | }
--------------------------------------------------------------------------------
/src/pages/_document.tsx:
--------------------------------------------------------------------------------
1 | import { Html, Head, Main, NextScript } from "next/document";
2 |
3 | export default function Document() {
4 | return (
5 |
6 |
7 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | );
19 | }
20 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2017",
4 | "lib": ["dom", "dom.iterable", "esnext"],
5 | "allowJs": true,
6 | "skipLibCheck": true,
7 | "strict": true,
8 | "noEmit": true,
9 | "esModuleInterop": true,
10 | "module": "esnext",
11 | "moduleResolution": "bundler",
12 | "resolveJsonModule": true,
13 | "isolatedModules": true,
14 | "jsx": "preserve",
15 | "incremental": true,
16 | "paths": {
17 | "@/*": ["./src/*"]
18 | }
19 | },
20 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
21 | "exclude": ["node_modules"]
22 | }
23 |
--------------------------------------------------------------------------------
/public/bluesky-logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "bluesky-migrate",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev --turbopack",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "next lint"
10 | },
11 | "dependencies": {
12 | "@radix-ui/react-icons": "^1.3.1",
13 | "@radix-ui/react-tooltip": "^1.1.3",
14 | "class-variance-authority": "^0.7.0",
15 | "clsx": "^2.1.1",
16 | "lucide-react": "^0.456.0",
17 | "next": "15.0.3",
18 | "react": "19.0.0-rc-66855b96-20241106",
19 | "react-dom": "19.0.0-rc-66855b96-20241106",
20 | "tailwind-merge": "^2.5.4",
21 | "tailwindcss-animate": "^1.0.7",
22 | "tailwindcss-radix-colors": "^1.4.1"
23 | },
24 | "devDependencies": {
25 | "@types/node": "^20",
26 | "@types/react": "^18",
27 | "@types/react-dom": "^18",
28 | "eslint": "^8",
29 | "eslint-config-next": "15.0.3",
30 | "postcss": "^8",
31 | "tailwindcss": "^3.4.1",
32 | "typescript": "^5"
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/src/components/BlueSkyLogo.tsx:
--------------------------------------------------------------------------------
1 | export default function BlueSkyLogo({
2 | color = "#0285FF",
3 | size = "default",
4 | }: {
5 | color?: string;
6 | size?: "small" | "default";
7 | }) {
8 | return (
9 |
15 |
19 |
20 | );
21 | }
22 |
--------------------------------------------------------------------------------
/src/components/ui/tooltip.tsx:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import * as TooltipPrimitive from "@radix-ui/react-tooltip";
3 |
4 | import { cn } from "@/lib/utils";
5 |
6 | const TooltipProvider = TooltipPrimitive.Provider;
7 |
8 | const Tooltip = TooltipPrimitive.Root;
9 |
10 | const TooltipTrigger = TooltipPrimitive.Trigger;
11 |
12 | const TooltipContent = React.forwardRef<
13 | React.ElementRef,
14 | React.ComponentPropsWithoutRef
15 | >(({ className, sideOffset = 4, ...props }, ref) => (
16 |
25 | ));
26 | TooltipContent.displayName = TooltipPrimitive.Content.displayName;
27 |
28 | export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider };
29 |
--------------------------------------------------------------------------------
/src/components/GithubLogo.tsx:
--------------------------------------------------------------------------------
1 | export default function GithubLogo({
2 | color = "#24292e",
3 | size = "default",
4 | }: {
5 | color?: string;
6 | size?: "small" | "default";
7 | }) {
8 | return (
9 |
14 |
20 |
21 | );
22 | }
23 |
--------------------------------------------------------------------------------
/src/styles/globals.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 | @layer base {
5 | :root {
6 | --background: 0 0% 100%;
7 | --foreground: 0 0% 3.9%;
8 | --card: 0 0% 100%;
9 | --card-foreground: 0 0% 3.9%;
10 | --popover: 0 0% 100%;
11 | --popover-foreground: 0 0% 3.9%;
12 | --primary: 0 0% 9%;
13 | --primary-foreground: 0 0% 98%;
14 | --secondary: 0 0% 96.1%;
15 | --secondary-foreground: 0 0% 9%;
16 | --muted: 0 0% 96.1%;
17 | --muted-foreground: 0 0% 45.1%;
18 | --accent: 0 0% 96.1%;
19 | --accent-foreground: 0 0% 9%;
20 | --destructive: 0 84.2% 60.2%;
21 | --destructive-foreground: 0 0% 98%;
22 | --border: 0 0% 89.8%;
23 | --input: 0 0% 89.8%;
24 | --ring: 0 0% 3.9%;
25 | --chart-1: 12 76% 61%;
26 | --chart-2: 173 58% 39%;
27 | --chart-3: 197 37% 24%;
28 | --chart-4: 43 74% 66%;
29 | --chart-5: 27 87% 67%;
30 | --radius: 0.5rem;
31 | }
32 | .dark {
33 | --background: 0 0% 3.9%;
34 | --foreground: 0 0% 98%;
35 | --card: 0 0% 3.9%;
36 | --card-foreground: 0 0% 98%;
37 | --popover: 0 0% 3.9%;
38 | --popover-foreground: 0 0% 98%;
39 | --primary: 0 0% 98%;
40 | --primary-foreground: 0 0% 9%;
41 | --secondary: 0 0% 14.9%;
42 | --secondary-foreground: 0 0% 98%;
43 | --muted: 0 0% 14.9%;
44 | --muted-foreground: 0 0% 63.9%;
45 | --accent: 0 0% 14.9%;
46 | --accent-foreground: 0 0% 98%;
47 | --destructive: 0 62.8% 30.6%;
48 | --destructive-foreground: 0 0% 98%;
49 | --border: 0 0% 14.9%;
50 | --input: 0 0% 14.9%;
51 | --ring: 0 0% 83.1%;
52 | --chart-1: 220 70% 50%;
53 | --chart-2: 160 60% 45%;
54 | --chart-3: 30 80% 55%;
55 | --chart-4: 280 65% 60%;
56 | --chart-5: 340 75% 55%;
57 | }
58 | }
59 | @layer base {
60 | * {
61 | @apply border-border;
62 | }
63 | body {
64 | @apply bg-background text-foreground;
65 | }
66 | }
67 |
--------------------------------------------------------------------------------
/tailwind.config.ts:
--------------------------------------------------------------------------------
1 | import type { Config } from "tailwindcss";
2 | import tailwindcssRadixColors from "tailwindcss-radix-colors";
3 |
4 | export default {
5 | content: [
6 | "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
7 | "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
8 | "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
9 | ],
10 | // eslint-disable-next-line @typescript-eslint/no-require-imports
11 | plugins: [tailwindcssRadixColors, require("tailwindcss-animate")],
12 | theme: {
13 | extend: {
14 | borderRadius: {
15 | lg: "var(--radius)",
16 | md: "calc(var(--radius) - 2px)",
17 | sm: "calc(var(--radius) - 4px)",
18 | },
19 | colors: {
20 | background: "hsl(var(--background))",
21 | foreground: "hsl(var(--foreground))",
22 | card: {
23 | DEFAULT: "hsl(var(--card))",
24 | foreground: "hsl(var(--card-foreground))",
25 | },
26 | popover: {
27 | DEFAULT: "hsl(var(--popover))",
28 | foreground: "hsl(var(--popover-foreground))",
29 | },
30 | primary: {
31 | DEFAULT: "hsl(var(--primary))",
32 | foreground: "hsl(var(--primary-foreground))",
33 | },
34 | secondary: {
35 | DEFAULT: "hsl(var(--secondary))",
36 | foreground: "hsl(var(--secondary-foreground))",
37 | },
38 | muted: {
39 | DEFAULT: "hsl(var(--muted))",
40 | foreground: "hsl(var(--muted-foreground))",
41 | },
42 | accent: {
43 | DEFAULT: "hsl(var(--accent))",
44 | foreground: "hsl(var(--accent-foreground))",
45 | },
46 | destructive: {
47 | DEFAULT: "hsl(var(--destructive))",
48 | foreground: "hsl(var(--destructive-foreground))",
49 | },
50 | border: "hsl(var(--border))",
51 | input: "hsl(var(--input))",
52 | ring: "hsl(var(--ring))",
53 | chart: {
54 | "1": "hsl(var(--chart-1))",
55 | "2": "hsl(var(--chart-2))",
56 | "3": "hsl(var(--chart-3))",
57 | "4": "hsl(var(--chart-4))",
58 | "5": "hsl(var(--chart-5))",
59 | },
60 | },
61 | },
62 | },
63 | } satisfies Config;
64 |
--------------------------------------------------------------------------------
/.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.*
7 | .yarn/*
8 | !.yarn/patches
9 | !.yarn/plugins
10 | !.yarn/releases
11 | !.yarn/versions
12 |
13 | # testing
14 | /coverage
15 |
16 | # next.js
17 | /.next/
18 | /out/
19 |
20 | # production
21 | /build
22 |
23 | # misc
24 | .DS_Store
25 | *.pem
26 |
27 | # debug
28 | npm-debug.log*
29 | yarn-debug.log*
30 | yarn-error.log*
31 |
32 | # env files (can opt-in for committing if needed)
33 | .env*
34 |
35 | # vercel
36 | .vercel
37 |
38 | # typescript
39 | *.tsbuildinfo
40 | next-env.d.ts
41 | # Logs
42 | logs
43 | *.log
44 | npm-debug.log*
45 | yarn-debug.log*
46 | yarn-error.log*
47 | lerna-debug.log*
48 | .pnpm-debug.log*
49 |
50 | # Diagnostic reports (https://nodejs.org/api/report.html)
51 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
52 |
53 | # Runtime data
54 | pids
55 | *.pid
56 | *.seed
57 | *.pid.lock
58 |
59 | # Directory for instrumented libs generated by jscoverage/JSCover
60 | lib-cov
61 |
62 | # Coverage directory used by tools like istanbul
63 | coverage
64 | *.lcov
65 |
66 | # nyc test coverage
67 | .nyc_output
68 |
69 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
70 | .grunt
71 |
72 | # Bower dependency directory (https://bower.io/)
73 | bower_components
74 |
75 | # node-waf configuration
76 | .lock-wscript
77 |
78 | # Compiled binary addons (https://nodejs.org/api/addons.html)
79 | build/Release
80 |
81 | # Dependency directories
82 | node_modules/
83 | jspm_packages/
84 |
85 | # Snowpack dependency directory (https://snowpack.dev/)
86 | web_modules/
87 |
88 | # TypeScript cache
89 | *.tsbuildinfo
90 |
91 | # Optional npm cache directory
92 | .npm
93 |
94 | # Optional eslint cache
95 | .eslintcache
96 |
97 | # Optional stylelint cache
98 | .stylelintcache
99 |
100 | # Microbundle cache
101 | .rpt2_cache/
102 | .rts2_cache_cjs/
103 | .rts2_cache_es/
104 | .rts2_cache_umd/
105 |
106 | # Optional REPL history
107 | .node_repl_history
108 |
109 | # Output of 'npm pack'
110 | *.tgz
111 |
112 | # Yarn Integrity file
113 | .yarn-integrity
114 |
115 | # dotenv environment variable files
116 | .env
117 | .env.development.local
118 | .env.test.local
119 | .env.production.local
120 | .env.local
121 |
122 | # parcel-bundler cache (https://parceljs.org/)
123 | .cache
124 | .parcel-cache
125 |
126 | # Next.js build output
127 | .next
128 | out
129 |
130 | # Nuxt.js build / generate output
131 | .nuxt
132 | dist
133 |
134 | # Gatsby files
135 | .cache/
136 | # Comment in the public line in if your project uses Gatsby and not Next.js
137 | # https://nextjs.org/blog/next-9-1#public-directory-support
138 | # public
139 |
140 | # vuepress build output
141 | .vuepress/dist
142 |
143 | # vuepress v2.x temp and cache directory
144 | .temp
145 | .cache
146 |
147 | # Docusaurus cache and generated files
148 | .docusaurus
149 |
150 | # Serverless directories
151 | .serverless/
152 |
153 | # FuseBox cache
154 | .fusebox/
155 |
156 | # DynamoDB Local files
157 | .dynamodb/
158 |
159 | # TernJS port file
160 | .tern-port
161 |
162 | # Stores VSCode versions used for testing VSCode extensions
163 | .vscode-test
164 |
165 | # yarn v2
166 | .yarn/cache
167 | .yarn/unplugged
168 | .yarn/build-state.yml
169 | .yarn/install-state.gz
170 | .pnp.*
171 |
--------------------------------------------------------------------------------
/src/pages/index.tsx:
--------------------------------------------------------------------------------
1 | import Image from "next/image";
2 | import localFont from "next/font/local";
3 | import {
4 | Tooltip,
5 | TooltipContent,
6 | TooltipTrigger,
7 | } from "../components/ui/tooltip";
8 | import GithubLogo from "../components/GithubLogo";
9 | import BlueSkyLogo from "../components/BlueSkyLogo";
10 | import { DownloadIcon } from "@radix-ui/react-icons";
11 | import Head from "next/head";
12 |
13 | const geistSans = localFont({
14 | src: "./fonts/GeistVF.woff",
15 | variable: "--font-geist-sans",
16 | weight: "100 900",
17 | });
18 | const geistMono = localFont({
19 | src: "./fonts/GeistMonoVF.woff",
20 | variable: "--font-geist-mono",
21 | weight: "100 900",
22 | });
23 |
24 | function Link({
25 | variant,
26 | ...props
27 | }: React.ComponentProps<"a"> & {
28 | variant?: "destructive";
29 | }) {
30 | return (
31 |
37 | );
38 | }
39 |
40 | function BannerPreview({ src, alt }: { src: string; alt: string }) {
41 | return (
42 |
47 |
48 |
49 |
50 |
51 |
52 |
53 | );
54 | }
55 |
56 | export default function Home() {
57 | const year = new Date().getFullYear();
58 |
59 | return (
60 | <>
61 |
62 |
63 |
64 |
68 |
72 |
73 |
76 |
77 |
78 |
79 |
80 | Bluesky Migration
81 |
82 |
83 |
84 |
85 | This page serves a simple guide on how to migrate to{" "}
86 | Bluesky from X. All steps are
87 | optional, but you should really do the first two.
88 |
89 |
90 |
91 |
92 |
97 | Import X Followers
98 | {" "}
99 | - To start you can check if anyone you follow on X is on Bluesky
100 |
101 |
102 |
107 | Starter packs
108 | {" "}
109 | - Lists of users that help you mass follow members of a
110 | community.
111 |
112 |
113 |
114 | X Display Name
115 | {" "}
116 | - Change your display name on X (not your handle) to:
117 |
118 | Your Name 🦋 @your.bluesky.handle
119 |
120 |
121 |
122 |
127 | Say goodbye to X
128 | {" "}
129 | - Post a goodbye with a 🦋. If you want to help others, post and
130 | pin this website to your profile.
131 |
132 |
133 | X Banner -
134 | Change your banner to one of the following images:
135 |
136 |
137 |
141 |
142 |
143 |
144 |
149 | Import Tweets
150 | {" "}
151 | - Bring all your tweets along with you. Developers can use{" "}
152 |
157 | this
158 |
159 | .
160 |
161 |
162 |
168 | Delete Tweets
169 | {" "}
170 | - (Very optional) A paid service, but you can use{" "}
171 |
176 | this project
177 | {" "}
178 | if you're technical. This will mess up any embedded tweets
179 | throughout the internet.
180 |
181 |
182 |
183 | Update social links
184 | {" "}
185 | - Replace X with Bluesky. Make this change across LinkedIn,
186 | GitHub, Medium, personal website, and other platforms.
187 |
210 |
211 |
212 |
213 |
214 |
219 | Buy the T-Shirt
220 |
221 |
222 |
223 |
224 |
225 |
258 |
259 | >
260 | );
261 | }
262 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | dependencies:
11 | '@radix-ui/react-icons':
12 | specifier: ^1.3.1
13 | version: 1.3.1(react@19.0.0-rc-66855b96-20241106)
14 | '@radix-ui/react-tooltip':
15 | specifier: ^1.1.3
16 | version: 1.1.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
17 | class-variance-authority:
18 | specifier: ^0.7.0
19 | version: 0.7.0
20 | clsx:
21 | specifier: ^2.1.1
22 | version: 2.1.1
23 | lucide-react:
24 | specifier: ^0.456.0
25 | version: 0.456.0(react@19.0.0-rc-66855b96-20241106)
26 | next:
27 | specifier: 15.0.3
28 | version: 15.0.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
29 | react:
30 | specifier: 19.0.0-rc-66855b96-20241106
31 | version: 19.0.0-rc-66855b96-20241106
32 | react-dom:
33 | specifier: 19.0.0-rc-66855b96-20241106
34 | version: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
35 | tailwind-merge:
36 | specifier: ^2.5.4
37 | version: 2.5.4
38 | tailwindcss-animate:
39 | specifier: ^1.0.7
40 | version: 1.0.7(tailwindcss@3.4.14)
41 | tailwindcss-radix-colors:
42 | specifier: ^1.4.1
43 | version: 1.4.1(tailwindcss@3.4.14)
44 | devDependencies:
45 | '@types/node':
46 | specifier: ^20
47 | version: 20.17.6
48 | '@types/react':
49 | specifier: ^18
50 | version: 18.3.12
51 | '@types/react-dom':
52 | specifier: ^18
53 | version: 18.3.1
54 | eslint:
55 | specifier: ^8
56 | version: 8.57.1
57 | eslint-config-next:
58 | specifier: 15.0.3
59 | version: 15.0.3(eslint@8.57.1)(typescript@5.6.3)
60 | postcss:
61 | specifier: ^8
62 | version: 8.4.47
63 | tailwindcss:
64 | specifier: ^3.4.1
65 | version: 3.4.14
66 | typescript:
67 | specifier: ^5
68 | version: 5.6.3
69 |
70 | packages:
71 |
72 | '@alloc/quick-lru@5.2.0':
73 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
74 | engines: {node: '>=10'}
75 |
76 | '@emnapi/runtime@1.3.1':
77 | resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
78 |
79 | '@eslint-community/eslint-utils@4.4.1':
80 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
81 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
82 | peerDependencies:
83 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
84 |
85 | '@eslint-community/regexpp@4.12.1':
86 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
87 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
88 |
89 | '@eslint/eslintrc@2.1.4':
90 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
91 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
92 |
93 | '@eslint/js@8.57.1':
94 | resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
95 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
96 |
97 | '@floating-ui/core@1.6.8':
98 | resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
99 |
100 | '@floating-ui/dom@1.6.12':
101 | resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
102 |
103 | '@floating-ui/react-dom@2.1.2':
104 | resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
105 | peerDependencies:
106 | react: '>=16.8.0'
107 | react-dom: '>=16.8.0'
108 |
109 | '@floating-ui/utils@0.2.8':
110 | resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
111 |
112 | '@humanwhocodes/config-array@0.13.0':
113 | resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
114 | engines: {node: '>=10.10.0'}
115 | deprecated: Use @eslint/config-array instead
116 |
117 | '@humanwhocodes/module-importer@1.0.1':
118 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
119 | engines: {node: '>=12.22'}
120 |
121 | '@humanwhocodes/object-schema@2.0.3':
122 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
123 | deprecated: Use @eslint/object-schema instead
124 |
125 | '@img/sharp-darwin-arm64@0.33.5':
126 | resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
127 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
128 | cpu: [arm64]
129 | os: [darwin]
130 |
131 | '@img/sharp-darwin-x64@0.33.5':
132 | resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
133 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
134 | cpu: [x64]
135 | os: [darwin]
136 |
137 | '@img/sharp-libvips-darwin-arm64@1.0.4':
138 | resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
139 | cpu: [arm64]
140 | os: [darwin]
141 |
142 | '@img/sharp-libvips-darwin-x64@1.0.4':
143 | resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
144 | cpu: [x64]
145 | os: [darwin]
146 |
147 | '@img/sharp-libvips-linux-arm64@1.0.4':
148 | resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
149 | cpu: [arm64]
150 | os: [linux]
151 |
152 | '@img/sharp-libvips-linux-arm@1.0.5':
153 | resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
154 | cpu: [arm]
155 | os: [linux]
156 |
157 | '@img/sharp-libvips-linux-s390x@1.0.4':
158 | resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
159 | cpu: [s390x]
160 | os: [linux]
161 |
162 | '@img/sharp-libvips-linux-x64@1.0.4':
163 | resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
164 | cpu: [x64]
165 | os: [linux]
166 |
167 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
168 | resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
169 | cpu: [arm64]
170 | os: [linux]
171 |
172 | '@img/sharp-libvips-linuxmusl-x64@1.0.4':
173 | resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
174 | cpu: [x64]
175 | os: [linux]
176 |
177 | '@img/sharp-linux-arm64@0.33.5':
178 | resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
179 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
180 | cpu: [arm64]
181 | os: [linux]
182 |
183 | '@img/sharp-linux-arm@0.33.5':
184 | resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
185 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
186 | cpu: [arm]
187 | os: [linux]
188 |
189 | '@img/sharp-linux-s390x@0.33.5':
190 | resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
191 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
192 | cpu: [s390x]
193 | os: [linux]
194 |
195 | '@img/sharp-linux-x64@0.33.5':
196 | resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
197 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
198 | cpu: [x64]
199 | os: [linux]
200 |
201 | '@img/sharp-linuxmusl-arm64@0.33.5':
202 | resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
203 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
204 | cpu: [arm64]
205 | os: [linux]
206 |
207 | '@img/sharp-linuxmusl-x64@0.33.5':
208 | resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
209 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
210 | cpu: [x64]
211 | os: [linux]
212 |
213 | '@img/sharp-wasm32@0.33.5':
214 | resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
215 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
216 | cpu: [wasm32]
217 |
218 | '@img/sharp-win32-ia32@0.33.5':
219 | resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
220 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
221 | cpu: [ia32]
222 | os: [win32]
223 |
224 | '@img/sharp-win32-x64@0.33.5':
225 | resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
226 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
227 | cpu: [x64]
228 | os: [win32]
229 |
230 | '@isaacs/cliui@8.0.2':
231 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
232 | engines: {node: '>=12'}
233 |
234 | '@jridgewell/gen-mapping@0.3.5':
235 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
236 | engines: {node: '>=6.0.0'}
237 |
238 | '@jridgewell/resolve-uri@3.1.2':
239 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
240 | engines: {node: '>=6.0.0'}
241 |
242 | '@jridgewell/set-array@1.2.1':
243 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
244 | engines: {node: '>=6.0.0'}
245 |
246 | '@jridgewell/sourcemap-codec@1.5.0':
247 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
248 |
249 | '@jridgewell/trace-mapping@0.3.25':
250 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
251 |
252 | '@next/env@15.0.3':
253 | resolution: {integrity: sha512-t9Xy32pjNOvVn2AS+Utt6VmyrshbpfUMhIjFO60gI58deSo/KgLOp31XZ4O+kY/Is8WAGYwA5gR7kOb1eORDBA==}
254 |
255 | '@next/eslint-plugin-next@15.0.3':
256 | resolution: {integrity: sha512-3Ln/nHq2V+v8uIaxCR6YfYo7ceRgZNXfTd3yW1ukTaFbO+/I8jNakrjYWODvG9BuR2v5kgVtH/C8r0i11quOgw==}
257 |
258 | '@next/swc-darwin-arm64@15.0.3':
259 | resolution: {integrity: sha512-s3Q/NOorCsLYdCKvQlWU+a+GeAd3C8Rb3L1YnetsgwXzhc3UTWrtQpB/3eCjFOdGUj5QmXfRak12uocd1ZiiQw==}
260 | engines: {node: '>= 10'}
261 | cpu: [arm64]
262 | os: [darwin]
263 |
264 | '@next/swc-darwin-x64@15.0.3':
265 | resolution: {integrity: sha512-Zxl/TwyXVZPCFSf0u2BNj5sE0F2uR6iSKxWpq4Wlk/Sv9Ob6YCKByQTkV2y6BCic+fkabp9190hyrDdPA/dNrw==}
266 | engines: {node: '>= 10'}
267 | cpu: [x64]
268 | os: [darwin]
269 |
270 | '@next/swc-linux-arm64-gnu@15.0.3':
271 | resolution: {integrity: sha512-T5+gg2EwpsY3OoaLxUIofmMb7ohAUlcNZW0fPQ6YAutaWJaxt1Z1h+8zdl4FRIOr5ABAAhXtBcpkZNwUcKI2fw==}
272 | engines: {node: '>= 10'}
273 | cpu: [arm64]
274 | os: [linux]
275 |
276 | '@next/swc-linux-arm64-musl@15.0.3':
277 | resolution: {integrity: sha512-WkAk6R60mwDjH4lG/JBpb2xHl2/0Vj0ZRu1TIzWuOYfQ9tt9NFsIinI1Epma77JVgy81F32X/AeD+B2cBu/YQA==}
278 | engines: {node: '>= 10'}
279 | cpu: [arm64]
280 | os: [linux]
281 |
282 | '@next/swc-linux-x64-gnu@15.0.3':
283 | resolution: {integrity: sha512-gWL/Cta1aPVqIGgDb6nxkqy06DkwJ9gAnKORdHWX1QBbSZZB+biFYPFti8aKIQL7otCE1pjyPaXpFzGeG2OS2w==}
284 | engines: {node: '>= 10'}
285 | cpu: [x64]
286 | os: [linux]
287 |
288 | '@next/swc-linux-x64-musl@15.0.3':
289 | resolution: {integrity: sha512-QQEMwFd8r7C0GxQS62Zcdy6GKx999I/rTO2ubdXEe+MlZk9ZiinsrjwoiBL5/57tfyjikgh6GOU2WRQVUej3UA==}
290 | engines: {node: '>= 10'}
291 | cpu: [x64]
292 | os: [linux]
293 |
294 | '@next/swc-win32-arm64-msvc@15.0.3':
295 | resolution: {integrity: sha512-9TEp47AAd/ms9fPNgtgnT7F3M1Hf7koIYYWCMQ9neOwjbVWJsHZxrFbI3iEDJ8rf1TDGpmHbKxXf2IFpAvheIQ==}
296 | engines: {node: '>= 10'}
297 | cpu: [arm64]
298 | os: [win32]
299 |
300 | '@next/swc-win32-x64-msvc@15.0.3':
301 | resolution: {integrity: sha512-VNAz+HN4OGgvZs6MOoVfnn41kBzT+M+tB+OK4cww6DNyWS6wKaDpaAm/qLeOUbnMh0oVx1+mg0uoYARF69dJyA==}
302 | engines: {node: '>= 10'}
303 | cpu: [x64]
304 | os: [win32]
305 |
306 | '@nodelib/fs.scandir@2.1.5':
307 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
308 | engines: {node: '>= 8'}
309 |
310 | '@nodelib/fs.stat@2.0.5':
311 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
312 | engines: {node: '>= 8'}
313 |
314 | '@nodelib/fs.walk@1.2.8':
315 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
316 | engines: {node: '>= 8'}
317 |
318 | '@nolyfill/is-core-module@1.0.39':
319 | resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
320 | engines: {node: '>=12.4.0'}
321 |
322 | '@pkgjs/parseargs@0.11.0':
323 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
324 | engines: {node: '>=14'}
325 |
326 | '@radix-ui/colors@3.0.0':
327 | resolution: {integrity: sha512-FUOsGBkHrYJwCSEtWRCIfQbZG7q1e6DgxCIOe1SUQzDe/7rXXeA47s8yCn6fuTNQAj1Zq4oTFi9Yjp3wzElcxg==}
328 |
329 | '@radix-ui/primitive@1.1.0':
330 | resolution: {integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==}
331 |
332 | '@radix-ui/react-arrow@1.1.0':
333 | resolution: {integrity: sha512-FmlW1rCg7hBpEBwFbjHwCW6AmWLQM6g/v0Sn8XbP9NvmSZ2San1FpQeyPtufzOMSIx7Y4dzjlHoifhp+7NkZhw==}
334 | peerDependencies:
335 | '@types/react': '*'
336 | '@types/react-dom': '*'
337 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
338 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
339 | peerDependenciesMeta:
340 | '@types/react':
341 | optional: true
342 | '@types/react-dom':
343 | optional: true
344 |
345 | '@radix-ui/react-compose-refs@1.1.0':
346 | resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==}
347 | peerDependencies:
348 | '@types/react': '*'
349 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
350 | peerDependenciesMeta:
351 | '@types/react':
352 | optional: true
353 |
354 | '@radix-ui/react-context@1.1.0':
355 | resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==}
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.1':
364 | resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==}
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-dismissable-layer@1.1.1':
373 | resolution: {integrity: sha512-QSxg29lfr/xcev6kSz7MAlmDnzbP1eI/Dwn3Tp1ip0KT5CUELsxkekFEMVBEoykI3oV39hKT4TKZzBNMbcTZYQ==}
374 | peerDependencies:
375 | '@types/react': '*'
376 | '@types/react-dom': '*'
377 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
378 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
379 | peerDependenciesMeta:
380 | '@types/react':
381 | optional: true
382 | '@types/react-dom':
383 | optional: true
384 |
385 | '@radix-ui/react-icons@1.3.1':
386 | resolution: {integrity: sha512-QvYompk0X+8Yjlo/Fv4McrzxohDdM5GgLHyQcPpcsPvlOSXCGFjdbuyGL5dzRbg0GpknAjQJJZzdiRK7iWVuFQ==}
387 | peerDependencies:
388 | react: ^16.x || ^17.x || ^18.x || ^19.x
389 |
390 | '@radix-ui/react-id@1.1.0':
391 | resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
392 | peerDependencies:
393 | '@types/react': '*'
394 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
395 | peerDependenciesMeta:
396 | '@types/react':
397 | optional: true
398 |
399 | '@radix-ui/react-popper@1.2.0':
400 | resolution: {integrity: sha512-ZnRMshKF43aBxVWPWvbj21+7TQCvhuULWJ4gNIKYpRlQt5xGRhLx66tMp8pya2UkGHTSlhpXwmjqltDYHhw7Vg==}
401 | peerDependencies:
402 | '@types/react': '*'
403 | '@types/react-dom': '*'
404 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
405 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
406 | peerDependenciesMeta:
407 | '@types/react':
408 | optional: true
409 | '@types/react-dom':
410 | optional: true
411 |
412 | '@radix-ui/react-portal@1.1.2':
413 | resolution: {integrity: sha512-WeDYLGPxJb/5EGBoedyJbT0MpoULmwnIPMJMSldkuiMsBAv7N1cRdsTWZWht9vpPOiN3qyiGAtbK2is47/uMFg==}
414 | peerDependencies:
415 | '@types/react': '*'
416 | '@types/react-dom': '*'
417 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
418 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
419 | peerDependenciesMeta:
420 | '@types/react':
421 | optional: true
422 | '@types/react-dom':
423 | optional: true
424 |
425 | '@radix-ui/react-presence@1.1.1':
426 | resolution: {integrity: sha512-IeFXVi4YS1K0wVZzXNrbaaUvIJ3qdY+/Ih4eHFhWA9SwGR9UDX7Ck8abvL57C4cv3wwMvUE0OG69Qc3NCcTe/A==}
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-primitive@2.0.0':
439 | resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==}
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-slot@1.1.0':
452 | resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==}
453 | peerDependencies:
454 | '@types/react': '*'
455 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
456 | peerDependenciesMeta:
457 | '@types/react':
458 | optional: true
459 |
460 | '@radix-ui/react-tooltip@1.1.3':
461 | resolution: {integrity: sha512-Z4w1FIS0BqVFI2c1jZvb/uDVJijJjJ2ZMuPV81oVgTZ7g3BZxobplnMVvXtFWgtozdvYJ+MFWtwkM5S2HnAong==}
462 | peerDependencies:
463 | '@types/react': '*'
464 | '@types/react-dom': '*'
465 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
466 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
467 | peerDependenciesMeta:
468 | '@types/react':
469 | optional: true
470 | '@types/react-dom':
471 | optional: true
472 |
473 | '@radix-ui/react-use-callback-ref@1.1.0':
474 | resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
475 | peerDependencies:
476 | '@types/react': '*'
477 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
478 | peerDependenciesMeta:
479 | '@types/react':
480 | optional: true
481 |
482 | '@radix-ui/react-use-controllable-state@1.1.0':
483 | resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
484 | peerDependencies:
485 | '@types/react': '*'
486 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
487 | peerDependenciesMeta:
488 | '@types/react':
489 | optional: true
490 |
491 | '@radix-ui/react-use-escape-keydown@1.1.0':
492 | resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
493 | peerDependencies:
494 | '@types/react': '*'
495 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
496 | peerDependenciesMeta:
497 | '@types/react':
498 | optional: true
499 |
500 | '@radix-ui/react-use-layout-effect@1.1.0':
501 | resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
502 | peerDependencies:
503 | '@types/react': '*'
504 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
505 | peerDependenciesMeta:
506 | '@types/react':
507 | optional: true
508 |
509 | '@radix-ui/react-use-rect@1.1.0':
510 | resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
511 | peerDependencies:
512 | '@types/react': '*'
513 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
514 | peerDependenciesMeta:
515 | '@types/react':
516 | optional: true
517 |
518 | '@radix-ui/react-use-size@1.1.0':
519 | resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
520 | peerDependencies:
521 | '@types/react': '*'
522 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
523 | peerDependenciesMeta:
524 | '@types/react':
525 | optional: true
526 |
527 | '@radix-ui/react-visually-hidden@1.1.0':
528 | resolution: {integrity: sha512-N8MDZqtgCgG5S3aV60INAB475osJousYpZ4cTJ2cFbMpdHS5Y6loLTH8LPtkj2QN0x93J30HT/M3qJXM0+lyeQ==}
529 | peerDependencies:
530 | '@types/react': '*'
531 | '@types/react-dom': '*'
532 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
533 | react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
534 | peerDependenciesMeta:
535 | '@types/react':
536 | optional: true
537 | '@types/react-dom':
538 | optional: true
539 |
540 | '@radix-ui/rect@1.1.0':
541 | resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
542 |
543 | '@rtsao/scc@1.1.0':
544 | resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
545 |
546 | '@rushstack/eslint-patch@1.10.4':
547 | resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==}
548 |
549 | '@swc/counter@0.1.3':
550 | resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
551 |
552 | '@swc/helpers@0.5.13':
553 | resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==}
554 |
555 | '@types/json5@0.0.29':
556 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
557 |
558 | '@types/node@20.17.6':
559 | resolution: {integrity: sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==}
560 |
561 | '@types/prop-types@15.7.13':
562 | resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
563 |
564 | '@types/react-dom@18.3.1':
565 | resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
566 |
567 | '@types/react@18.3.12':
568 | resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==}
569 |
570 | '@typescript-eslint/eslint-plugin@8.13.0':
571 | resolution: {integrity: sha512-nQtBLiZYMUPkclSeC3id+x4uVd1SGtHuElTxL++SfP47jR0zfkZBJHc+gL4qPsgTuypz0k8Y2GheaDYn6Gy3rg==}
572 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
573 | peerDependencies:
574 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
575 | eslint: ^8.57.0 || ^9.0.0
576 | typescript: '*'
577 | peerDependenciesMeta:
578 | typescript:
579 | optional: true
580 |
581 | '@typescript-eslint/parser@8.13.0':
582 | resolution: {integrity: sha512-w0xp+xGg8u/nONcGw1UXAr6cjCPU1w0XVyBs6Zqaj5eLmxkKQAByTdV/uGgNN5tVvN/kKpoQlP2cL7R+ajZZIQ==}
583 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
584 | peerDependencies:
585 | eslint: ^8.57.0 || ^9.0.0
586 | typescript: '*'
587 | peerDependenciesMeta:
588 | typescript:
589 | optional: true
590 |
591 | '@typescript-eslint/scope-manager@8.13.0':
592 | resolution: {integrity: sha512-XsGWww0odcUT0gJoBZ1DeulY1+jkaHUciUq4jKNv4cpInbvvrtDoyBH9rE/n2V29wQJPk8iCH1wipra9BhmiMA==}
593 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
594 |
595 | '@typescript-eslint/type-utils@8.13.0':
596 | resolution: {integrity: sha512-Rqnn6xXTR316fP4D2pohZenJnp+NwQ1mo7/JM+J1LWZENSLkJI8ID8QNtlvFeb0HnFSK94D6q0cnMX6SbE5/vA==}
597 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
598 | peerDependencies:
599 | typescript: '*'
600 | peerDependenciesMeta:
601 | typescript:
602 | optional: true
603 |
604 | '@typescript-eslint/types@8.13.0':
605 | resolution: {integrity: sha512-4cyFErJetFLckcThRUFdReWJjVsPCqyBlJTi6IDEpc1GWCIIZRFxVppjWLIMcQhNGhdWJJRYFHpHoDWvMlDzng==}
606 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
607 |
608 | '@typescript-eslint/typescript-estree@8.13.0':
609 | resolution: {integrity: sha512-v7SCIGmVsRK2Cy/LTLGN22uea6SaUIlpBcO/gnMGT/7zPtxp90bphcGf4fyrCQl3ZtiBKqVTG32hb668oIYy1g==}
610 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
611 | peerDependencies:
612 | typescript: '*'
613 | peerDependenciesMeta:
614 | typescript:
615 | optional: true
616 |
617 | '@typescript-eslint/utils@8.13.0':
618 | resolution: {integrity: sha512-A1EeYOND6Uv250nybnLZapeXpYMl8tkzYUxqmoKAWnI4sei3ihf2XdZVd+vVOmHGcp3t+P7yRrNsyyiXTvShFQ==}
619 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
620 | peerDependencies:
621 | eslint: ^8.57.0 || ^9.0.0
622 |
623 | '@typescript-eslint/visitor-keys@8.13.0':
624 | resolution: {integrity: sha512-7N/+lztJqH4Mrf0lb10R/CbI1EaAMMGyF5y0oJvFoAhafwgiRA7TXyd8TFn8FC8k5y2dTsYogg238qavRGNnlw==}
625 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
626 |
627 | '@ungap/structured-clone@1.2.0':
628 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
629 |
630 | acorn-jsx@5.3.2:
631 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
632 | peerDependencies:
633 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
634 |
635 | acorn@8.14.0:
636 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
637 | engines: {node: '>=0.4.0'}
638 | hasBin: true
639 |
640 | ajv@6.12.6:
641 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
642 |
643 | ansi-regex@5.0.1:
644 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
645 | engines: {node: '>=8'}
646 |
647 | ansi-regex@6.1.0:
648 | resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
649 | engines: {node: '>=12'}
650 |
651 | ansi-styles@4.3.0:
652 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
653 | engines: {node: '>=8'}
654 |
655 | ansi-styles@6.2.1:
656 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
657 | engines: {node: '>=12'}
658 |
659 | any-promise@1.3.0:
660 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
661 |
662 | anymatch@3.1.3:
663 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
664 | engines: {node: '>= 8'}
665 |
666 | arg@5.0.2:
667 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
668 |
669 | argparse@2.0.1:
670 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
671 |
672 | aria-query@5.3.2:
673 | resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
674 | engines: {node: '>= 0.4'}
675 |
676 | array-buffer-byte-length@1.0.1:
677 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
678 | engines: {node: '>= 0.4'}
679 |
680 | array-includes@3.1.8:
681 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
682 | engines: {node: '>= 0.4'}
683 |
684 | array.prototype.findlast@1.2.5:
685 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
686 | engines: {node: '>= 0.4'}
687 |
688 | array.prototype.findlastindex@1.2.5:
689 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
690 | engines: {node: '>= 0.4'}
691 |
692 | array.prototype.flat@1.3.2:
693 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
694 | engines: {node: '>= 0.4'}
695 |
696 | array.prototype.flatmap@1.3.2:
697 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
698 | engines: {node: '>= 0.4'}
699 |
700 | array.prototype.tosorted@1.1.4:
701 | resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
702 | engines: {node: '>= 0.4'}
703 |
704 | arraybuffer.prototype.slice@1.0.3:
705 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
706 | engines: {node: '>= 0.4'}
707 |
708 | ast-types-flow@0.0.8:
709 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
710 |
711 | available-typed-arrays@1.0.7:
712 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
713 | engines: {node: '>= 0.4'}
714 |
715 | axe-core@4.10.2:
716 | resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
717 | engines: {node: '>=4'}
718 |
719 | axobject-query@4.1.0:
720 | resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
721 | engines: {node: '>= 0.4'}
722 |
723 | balanced-match@1.0.2:
724 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
725 |
726 | binary-extensions@2.3.0:
727 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
728 | engines: {node: '>=8'}
729 |
730 | brace-expansion@1.1.11:
731 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
732 |
733 | brace-expansion@2.0.1:
734 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
735 |
736 | braces@3.0.3:
737 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
738 | engines: {node: '>=8'}
739 |
740 | busboy@1.6.0:
741 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
742 | engines: {node: '>=10.16.0'}
743 |
744 | call-bind@1.0.7:
745 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
746 | engines: {node: '>= 0.4'}
747 |
748 | callsites@3.1.0:
749 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
750 | engines: {node: '>=6'}
751 |
752 | camelcase-css@2.0.1:
753 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
754 | engines: {node: '>= 6'}
755 |
756 | caniuse-lite@1.0.30001679:
757 | resolution: {integrity: sha512-j2YqID/YwpLnKzCmBOS4tlZdWprXm3ZmQLBH9ZBXFOhoxLA46fwyBvx6toCBWBmnuwUY/qB3kEU6gFx8qgCroA==}
758 |
759 | chalk@4.1.2:
760 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
761 | engines: {node: '>=10'}
762 |
763 | chokidar@3.6.0:
764 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
765 | engines: {node: '>= 8.10.0'}
766 |
767 | class-variance-authority@0.7.0:
768 | resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
769 |
770 | client-only@0.0.1:
771 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
772 |
773 | clsx@2.0.0:
774 | resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
775 | engines: {node: '>=6'}
776 |
777 | clsx@2.1.1:
778 | resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
779 | engines: {node: '>=6'}
780 |
781 | color-convert@2.0.1:
782 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
783 | engines: {node: '>=7.0.0'}
784 |
785 | color-name@1.1.4:
786 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
787 |
788 | color-string@1.9.1:
789 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
790 |
791 | color@4.2.3:
792 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
793 | engines: {node: '>=12.5.0'}
794 |
795 | commander@4.1.1:
796 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
797 | engines: {node: '>= 6'}
798 |
799 | concat-map@0.0.1:
800 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
801 |
802 | cross-spawn@7.0.5:
803 | resolution: {integrity: sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==}
804 | engines: {node: '>= 8'}
805 |
806 | cssesc@3.0.0:
807 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
808 | engines: {node: '>=4'}
809 | hasBin: true
810 |
811 | csstype@3.1.3:
812 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
813 |
814 | damerau-levenshtein@1.0.8:
815 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
816 |
817 | data-view-buffer@1.0.1:
818 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
819 | engines: {node: '>= 0.4'}
820 |
821 | data-view-byte-length@1.0.1:
822 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
823 | engines: {node: '>= 0.4'}
824 |
825 | data-view-byte-offset@1.0.0:
826 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
827 | engines: {node: '>= 0.4'}
828 |
829 | debug@3.2.7:
830 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
831 | peerDependencies:
832 | supports-color: '*'
833 | peerDependenciesMeta:
834 | supports-color:
835 | optional: true
836 |
837 | debug@4.3.7:
838 | resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
839 | engines: {node: '>=6.0'}
840 | peerDependencies:
841 | supports-color: '*'
842 | peerDependenciesMeta:
843 | supports-color:
844 | optional: true
845 |
846 | deep-is@0.1.4:
847 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
848 |
849 | define-data-property@1.1.4:
850 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
851 | engines: {node: '>= 0.4'}
852 |
853 | define-properties@1.2.1:
854 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
855 | engines: {node: '>= 0.4'}
856 |
857 | detect-libc@2.0.3:
858 | resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
859 | engines: {node: '>=8'}
860 |
861 | didyoumean@1.2.2:
862 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
863 |
864 | dlv@1.1.3:
865 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
866 |
867 | doctrine@2.1.0:
868 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
869 | engines: {node: '>=0.10.0'}
870 |
871 | doctrine@3.0.0:
872 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
873 | engines: {node: '>=6.0.0'}
874 |
875 | eastasianwidth@0.2.0:
876 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
877 |
878 | emoji-regex@8.0.0:
879 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
880 |
881 | emoji-regex@9.2.2:
882 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
883 |
884 | enhanced-resolve@5.17.1:
885 | resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
886 | engines: {node: '>=10.13.0'}
887 |
888 | es-abstract@1.23.3:
889 | resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
890 | engines: {node: '>= 0.4'}
891 |
892 | es-define-property@1.0.0:
893 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
894 | engines: {node: '>= 0.4'}
895 |
896 | es-errors@1.3.0:
897 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
898 | engines: {node: '>= 0.4'}
899 |
900 | es-iterator-helpers@1.2.0:
901 | resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==}
902 | engines: {node: '>= 0.4'}
903 |
904 | es-object-atoms@1.0.0:
905 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
906 | engines: {node: '>= 0.4'}
907 |
908 | es-set-tostringtag@2.0.3:
909 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
910 | engines: {node: '>= 0.4'}
911 |
912 | es-shim-unscopables@1.0.2:
913 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
914 |
915 | es-to-primitive@1.2.1:
916 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
917 | engines: {node: '>= 0.4'}
918 |
919 | escape-string-regexp@4.0.0:
920 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
921 | engines: {node: '>=10'}
922 |
923 | eslint-config-next@15.0.3:
924 | resolution: {integrity: sha512-IGP2DdQQrgjcr4mwFPve4DrCqo7CVVez1WoYY47XwKSrYO4hC0Dlb+iJA60i0YfICOzgNADIb8r28BpQ5Zs0wg==}
925 | peerDependencies:
926 | eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
927 | typescript: '>=3.3.1'
928 | peerDependenciesMeta:
929 | typescript:
930 | optional: true
931 |
932 | eslint-import-resolver-node@0.3.9:
933 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
934 |
935 | eslint-import-resolver-typescript@3.6.3:
936 | resolution: {integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==}
937 | engines: {node: ^14.18.0 || >=16.0.0}
938 | peerDependencies:
939 | eslint: '*'
940 | eslint-plugin-import: '*'
941 | eslint-plugin-import-x: '*'
942 | peerDependenciesMeta:
943 | eslint-plugin-import:
944 | optional: true
945 | eslint-plugin-import-x:
946 | optional: true
947 |
948 | eslint-module-utils@2.12.0:
949 | resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
950 | engines: {node: '>=4'}
951 | peerDependencies:
952 | '@typescript-eslint/parser': '*'
953 | eslint: '*'
954 | eslint-import-resolver-node: '*'
955 | eslint-import-resolver-typescript: '*'
956 | eslint-import-resolver-webpack: '*'
957 | peerDependenciesMeta:
958 | '@typescript-eslint/parser':
959 | optional: true
960 | eslint:
961 | optional: true
962 | eslint-import-resolver-node:
963 | optional: true
964 | eslint-import-resolver-typescript:
965 | optional: true
966 | eslint-import-resolver-webpack:
967 | optional: true
968 |
969 | eslint-plugin-import@2.31.0:
970 | resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
971 | engines: {node: '>=4'}
972 | peerDependencies:
973 | '@typescript-eslint/parser': '*'
974 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
975 | peerDependenciesMeta:
976 | '@typescript-eslint/parser':
977 | optional: true
978 |
979 | eslint-plugin-jsx-a11y@6.10.2:
980 | resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
981 | engines: {node: '>=4.0'}
982 | peerDependencies:
983 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
984 |
985 | eslint-plugin-react-hooks@5.0.0:
986 | resolution: {integrity: sha512-hIOwI+5hYGpJEc4uPRmz2ulCjAGD/N13Lukkh8cLV0i2IRk/bdZDYjgLVHj+U9Z704kLIdIO6iueGvxNur0sgw==}
987 | engines: {node: '>=10'}
988 | peerDependencies:
989 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
990 |
991 | eslint-plugin-react@7.37.2:
992 | resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
993 | engines: {node: '>=4'}
994 | peerDependencies:
995 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
996 |
997 | eslint-scope@7.2.2:
998 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
999 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1000 |
1001 | eslint-visitor-keys@3.4.3:
1002 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
1003 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1004 |
1005 | eslint@8.57.1:
1006 | resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
1007 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1008 | deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
1009 | hasBin: true
1010 |
1011 | espree@9.6.1:
1012 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
1013 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1014 |
1015 | esquery@1.6.0:
1016 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
1017 | engines: {node: '>=0.10'}
1018 |
1019 | esrecurse@4.3.0:
1020 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1021 | engines: {node: '>=4.0'}
1022 |
1023 | estraverse@5.3.0:
1024 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1025 | engines: {node: '>=4.0'}
1026 |
1027 | esutils@2.0.3:
1028 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1029 | engines: {node: '>=0.10.0'}
1030 |
1031 | fast-deep-equal@3.1.3:
1032 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1033 |
1034 | fast-glob@3.3.1:
1035 | resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
1036 | engines: {node: '>=8.6.0'}
1037 |
1038 | fast-glob@3.3.2:
1039 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
1040 | engines: {node: '>=8.6.0'}
1041 |
1042 | fast-json-stable-stringify@2.1.0:
1043 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1044 |
1045 | fast-levenshtein@2.0.6:
1046 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1047 |
1048 | fastq@1.17.1:
1049 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
1050 |
1051 | file-entry-cache@6.0.1:
1052 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
1053 | engines: {node: ^10.12.0 || >=12.0.0}
1054 |
1055 | fill-range@7.1.1:
1056 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
1057 | engines: {node: '>=8'}
1058 |
1059 | find-up@5.0.0:
1060 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1061 | engines: {node: '>=10'}
1062 |
1063 | flat-cache@3.2.0:
1064 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
1065 | engines: {node: ^10.12.0 || >=12.0.0}
1066 |
1067 | flatted@3.3.1:
1068 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
1069 |
1070 | for-each@0.3.3:
1071 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
1072 |
1073 | foreground-child@3.3.0:
1074 | resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
1075 | engines: {node: '>=14'}
1076 |
1077 | fs.realpath@1.0.0:
1078 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
1079 |
1080 | fsevents@2.3.3:
1081 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1082 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1083 | os: [darwin]
1084 |
1085 | function-bind@1.1.2:
1086 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
1087 |
1088 | function.prototype.name@1.1.6:
1089 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
1090 | engines: {node: '>= 0.4'}
1091 |
1092 | functions-have-names@1.2.3:
1093 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
1094 |
1095 | get-intrinsic@1.2.4:
1096 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
1097 | engines: {node: '>= 0.4'}
1098 |
1099 | get-symbol-description@1.0.2:
1100 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
1101 | engines: {node: '>= 0.4'}
1102 |
1103 | get-tsconfig@4.8.1:
1104 | resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
1105 |
1106 | glob-parent@5.1.2:
1107 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1108 | engines: {node: '>= 6'}
1109 |
1110 | glob-parent@6.0.2:
1111 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1112 | engines: {node: '>=10.13.0'}
1113 |
1114 | glob@10.4.5:
1115 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
1116 | hasBin: true
1117 |
1118 | glob@7.2.3:
1119 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
1120 | deprecated: Glob versions prior to v9 are no longer supported
1121 |
1122 | globals@13.24.0:
1123 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
1124 | engines: {node: '>=8'}
1125 |
1126 | globalthis@1.0.4:
1127 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
1128 | engines: {node: '>= 0.4'}
1129 |
1130 | gopd@1.0.1:
1131 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
1132 |
1133 | graceful-fs@4.2.11:
1134 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
1135 |
1136 | graphemer@1.4.0:
1137 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
1138 |
1139 | has-bigints@1.0.2:
1140 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
1141 |
1142 | has-flag@4.0.0:
1143 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1144 | engines: {node: '>=8'}
1145 |
1146 | has-property-descriptors@1.0.2:
1147 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
1148 |
1149 | has-proto@1.0.3:
1150 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
1151 | engines: {node: '>= 0.4'}
1152 |
1153 | has-symbols@1.0.3:
1154 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
1155 | engines: {node: '>= 0.4'}
1156 |
1157 | has-tostringtag@1.0.2:
1158 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
1159 | engines: {node: '>= 0.4'}
1160 |
1161 | hasown@2.0.2:
1162 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
1163 | engines: {node: '>= 0.4'}
1164 |
1165 | ignore@5.3.2:
1166 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
1167 | engines: {node: '>= 4'}
1168 |
1169 | import-fresh@3.3.0:
1170 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
1171 | engines: {node: '>=6'}
1172 |
1173 | imurmurhash@0.1.4:
1174 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1175 | engines: {node: '>=0.8.19'}
1176 |
1177 | inflight@1.0.6:
1178 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
1179 | 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.
1180 |
1181 | inherits@2.0.4:
1182 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1183 |
1184 | internal-slot@1.0.7:
1185 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
1186 | engines: {node: '>= 0.4'}
1187 |
1188 | is-array-buffer@3.0.4:
1189 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
1190 | engines: {node: '>= 0.4'}
1191 |
1192 | is-arrayish@0.3.2:
1193 | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
1194 |
1195 | is-async-function@2.0.0:
1196 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
1197 | engines: {node: '>= 0.4'}
1198 |
1199 | is-bigint@1.0.4:
1200 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
1201 |
1202 | is-binary-path@2.1.0:
1203 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
1204 | engines: {node: '>=8'}
1205 |
1206 | is-boolean-object@1.1.2:
1207 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
1208 | engines: {node: '>= 0.4'}
1209 |
1210 | is-bun-module@1.2.1:
1211 | resolution: {integrity: sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q==}
1212 |
1213 | is-callable@1.2.7:
1214 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
1215 | engines: {node: '>= 0.4'}
1216 |
1217 | is-core-module@2.15.1:
1218 | resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
1219 | engines: {node: '>= 0.4'}
1220 |
1221 | is-data-view@1.0.1:
1222 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
1223 | engines: {node: '>= 0.4'}
1224 |
1225 | is-date-object@1.0.5:
1226 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
1227 | engines: {node: '>= 0.4'}
1228 |
1229 | is-extglob@2.1.1:
1230 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1231 | engines: {node: '>=0.10.0'}
1232 |
1233 | is-finalizationregistry@1.0.2:
1234 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
1235 |
1236 | is-fullwidth-code-point@3.0.0:
1237 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
1238 | engines: {node: '>=8'}
1239 |
1240 | is-generator-function@1.0.10:
1241 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
1242 | engines: {node: '>= 0.4'}
1243 |
1244 | is-glob@4.0.3:
1245 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1246 | engines: {node: '>=0.10.0'}
1247 |
1248 | is-map@2.0.3:
1249 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
1250 | engines: {node: '>= 0.4'}
1251 |
1252 | is-negative-zero@2.0.3:
1253 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
1254 | engines: {node: '>= 0.4'}
1255 |
1256 | is-number-object@1.0.7:
1257 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
1258 | engines: {node: '>= 0.4'}
1259 |
1260 | is-number@7.0.0:
1261 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1262 | engines: {node: '>=0.12.0'}
1263 |
1264 | is-path-inside@3.0.3:
1265 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
1266 | engines: {node: '>=8'}
1267 |
1268 | is-regex@1.1.4:
1269 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
1270 | engines: {node: '>= 0.4'}
1271 |
1272 | is-set@2.0.3:
1273 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
1274 | engines: {node: '>= 0.4'}
1275 |
1276 | is-shared-array-buffer@1.0.3:
1277 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
1278 | engines: {node: '>= 0.4'}
1279 |
1280 | is-string@1.0.7:
1281 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
1282 | engines: {node: '>= 0.4'}
1283 |
1284 | is-symbol@1.0.4:
1285 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
1286 | engines: {node: '>= 0.4'}
1287 |
1288 | is-typed-array@1.1.13:
1289 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
1290 | engines: {node: '>= 0.4'}
1291 |
1292 | is-weakmap@2.0.2:
1293 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
1294 | engines: {node: '>= 0.4'}
1295 |
1296 | is-weakref@1.0.2:
1297 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
1298 |
1299 | is-weakset@2.0.3:
1300 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
1301 | engines: {node: '>= 0.4'}
1302 |
1303 | isarray@2.0.5:
1304 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
1305 |
1306 | isexe@2.0.0:
1307 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1308 |
1309 | iterator.prototype@1.1.3:
1310 | resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==}
1311 | engines: {node: '>= 0.4'}
1312 |
1313 | jackspeak@3.4.3:
1314 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
1315 |
1316 | jiti@1.21.6:
1317 | resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
1318 | hasBin: true
1319 |
1320 | js-tokens@4.0.0:
1321 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1322 |
1323 | js-yaml@4.1.0:
1324 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1325 | hasBin: true
1326 |
1327 | json-buffer@3.0.1:
1328 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1329 |
1330 | json-schema-traverse@0.4.1:
1331 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1332 |
1333 | json-stable-stringify-without-jsonify@1.0.1:
1334 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1335 |
1336 | json5@1.0.2:
1337 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
1338 | hasBin: true
1339 |
1340 | jsx-ast-utils@3.3.5:
1341 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
1342 | engines: {node: '>=4.0'}
1343 |
1344 | keyv@4.5.4:
1345 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1346 |
1347 | language-subtag-registry@0.3.23:
1348 | resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
1349 |
1350 | language-tags@1.0.9:
1351 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
1352 | engines: {node: '>=0.10'}
1353 |
1354 | levn@0.4.1:
1355 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1356 | engines: {node: '>= 0.8.0'}
1357 |
1358 | lilconfig@2.1.0:
1359 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
1360 | engines: {node: '>=10'}
1361 |
1362 | lilconfig@3.1.2:
1363 | resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
1364 | engines: {node: '>=14'}
1365 |
1366 | lines-and-columns@1.2.4:
1367 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1368 |
1369 | locate-path@6.0.0:
1370 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1371 | engines: {node: '>=10'}
1372 |
1373 | lodash.merge@4.6.2:
1374 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1375 |
1376 | loose-envify@1.4.0:
1377 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1378 | hasBin: true
1379 |
1380 | lru-cache@10.4.3:
1381 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
1382 |
1383 | lucide-react@0.456.0:
1384 | resolution: {integrity: sha512-DIIGJqTT5X05sbAsQ+OhA8OtJYyD4NsEMCA/HQW/Y6ToPQ7gwbtujIoeAaup4HpHzV35SQOarKAWH8LYglB6eA==}
1385 | peerDependencies:
1386 | react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc
1387 |
1388 | merge2@1.4.1:
1389 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1390 | engines: {node: '>= 8'}
1391 |
1392 | micromatch@4.0.8:
1393 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
1394 | engines: {node: '>=8.6'}
1395 |
1396 | minimatch@3.1.2:
1397 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1398 |
1399 | minimatch@9.0.5:
1400 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
1401 | engines: {node: '>=16 || 14 >=14.17'}
1402 |
1403 | minimist@1.2.8:
1404 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
1405 |
1406 | minipass@7.1.2:
1407 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
1408 | engines: {node: '>=16 || 14 >=14.17'}
1409 |
1410 | ms@2.1.3:
1411 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1412 |
1413 | mz@2.7.0:
1414 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
1415 |
1416 | nanoid@3.3.7:
1417 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
1418 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1419 | hasBin: true
1420 |
1421 | natural-compare@1.4.0:
1422 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1423 |
1424 | next@15.0.3:
1425 | resolution: {integrity: sha512-ontCbCRKJUIoivAdGB34yCaOcPgYXr9AAkV/IwqFfWWTXEPUgLYkSkqBhIk9KK7gGmgjc64B+RdoeIDM13Irnw==}
1426 | engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
1427 | hasBin: true
1428 | peerDependencies:
1429 | '@opentelemetry/api': ^1.1.0
1430 | '@playwright/test': ^1.41.2
1431 | babel-plugin-react-compiler: '*'
1432 | react: ^18.2.0 || 19.0.0-rc-66855b96-20241106
1433 | react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106
1434 | sass: ^1.3.0
1435 | peerDependenciesMeta:
1436 | '@opentelemetry/api':
1437 | optional: true
1438 | '@playwright/test':
1439 | optional: true
1440 | babel-plugin-react-compiler:
1441 | optional: true
1442 | sass:
1443 | optional: true
1444 |
1445 | normalize-path@3.0.0:
1446 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
1447 | engines: {node: '>=0.10.0'}
1448 |
1449 | object-assign@4.1.1:
1450 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1451 | engines: {node: '>=0.10.0'}
1452 |
1453 | object-hash@3.0.0:
1454 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
1455 | engines: {node: '>= 6'}
1456 |
1457 | object-inspect@1.13.3:
1458 | resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
1459 | engines: {node: '>= 0.4'}
1460 |
1461 | object-keys@1.1.1:
1462 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
1463 | engines: {node: '>= 0.4'}
1464 |
1465 | object.assign@4.1.5:
1466 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
1467 | engines: {node: '>= 0.4'}
1468 |
1469 | object.entries@1.1.8:
1470 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
1471 | engines: {node: '>= 0.4'}
1472 |
1473 | object.fromentries@2.0.8:
1474 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
1475 | engines: {node: '>= 0.4'}
1476 |
1477 | object.groupby@1.0.3:
1478 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
1479 | engines: {node: '>= 0.4'}
1480 |
1481 | object.values@1.2.0:
1482 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
1483 | engines: {node: '>= 0.4'}
1484 |
1485 | once@1.4.0:
1486 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
1487 |
1488 | optionator@0.9.4:
1489 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1490 | engines: {node: '>= 0.8.0'}
1491 |
1492 | p-limit@3.1.0:
1493 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1494 | engines: {node: '>=10'}
1495 |
1496 | p-locate@5.0.0:
1497 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1498 | engines: {node: '>=10'}
1499 |
1500 | package-json-from-dist@1.0.1:
1501 | resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
1502 |
1503 | parent-module@1.0.1:
1504 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1505 | engines: {node: '>=6'}
1506 |
1507 | path-exists@4.0.0:
1508 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1509 | engines: {node: '>=8'}
1510 |
1511 | path-is-absolute@1.0.1:
1512 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
1513 | engines: {node: '>=0.10.0'}
1514 |
1515 | path-key@3.1.1:
1516 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1517 | engines: {node: '>=8'}
1518 |
1519 | path-parse@1.0.7:
1520 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1521 |
1522 | path-scurry@1.11.1:
1523 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
1524 | engines: {node: '>=16 || 14 >=14.18'}
1525 |
1526 | picocolors@1.1.1:
1527 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1528 |
1529 | picomatch@2.3.1:
1530 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1531 | engines: {node: '>=8.6'}
1532 |
1533 | pify@2.3.0:
1534 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
1535 | engines: {node: '>=0.10.0'}
1536 |
1537 | pirates@4.0.6:
1538 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
1539 | engines: {node: '>= 6'}
1540 |
1541 | possible-typed-array-names@1.0.0:
1542 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
1543 | engines: {node: '>= 0.4'}
1544 |
1545 | postcss-import@15.1.0:
1546 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
1547 | engines: {node: '>=14.0.0'}
1548 | peerDependencies:
1549 | postcss: ^8.0.0
1550 |
1551 | postcss-js@4.0.1:
1552 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
1553 | engines: {node: ^12 || ^14 || >= 16}
1554 | peerDependencies:
1555 | postcss: ^8.4.21
1556 |
1557 | postcss-load-config@4.0.2:
1558 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
1559 | engines: {node: '>= 14'}
1560 | peerDependencies:
1561 | postcss: '>=8.0.9'
1562 | ts-node: '>=9.0.0'
1563 | peerDependenciesMeta:
1564 | postcss:
1565 | optional: true
1566 | ts-node:
1567 | optional: true
1568 |
1569 | postcss-nested@6.2.0:
1570 | resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
1571 | engines: {node: '>=12.0'}
1572 | peerDependencies:
1573 | postcss: ^8.2.14
1574 |
1575 | postcss-selector-parser@6.1.2:
1576 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
1577 | engines: {node: '>=4'}
1578 |
1579 | postcss-value-parser@4.2.0:
1580 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
1581 |
1582 | postcss@8.4.31:
1583 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
1584 | engines: {node: ^10 || ^12 || >=14}
1585 |
1586 | postcss@8.4.47:
1587 | resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
1588 | engines: {node: ^10 || ^12 || >=14}
1589 |
1590 | prelude-ls@1.2.1:
1591 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1592 | engines: {node: '>= 0.8.0'}
1593 |
1594 | prop-types@15.8.1:
1595 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
1596 |
1597 | punycode@2.3.1:
1598 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1599 | engines: {node: '>=6'}
1600 |
1601 | queue-microtask@1.2.3:
1602 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1603 |
1604 | react-dom@19.0.0-rc-66855b96-20241106:
1605 | resolution: {integrity: sha512-D25vdaytZ1wFIRiwNU98NPQ/upS2P8Co4/oNoa02PzHbh8deWdepjm5qwZM/46OdSiGv4WSWwxP55RO9obqJEQ==}
1606 | peerDependencies:
1607 | react: 19.0.0-rc-66855b96-20241106
1608 |
1609 | react-is@16.13.1:
1610 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
1611 |
1612 | react@19.0.0-rc-66855b96-20241106:
1613 | resolution: {integrity: sha512-klH7xkT71SxRCx4hb1hly5FJB21Hz0ACyxbXYAECEqssUjtJeFUAaI2U1DgJAzkGEnvEm3DkxuBchMC/9K4ipg==}
1614 | engines: {node: '>=0.10.0'}
1615 |
1616 | read-cache@1.0.0:
1617 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
1618 |
1619 | readdirp@3.6.0:
1620 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
1621 | engines: {node: '>=8.10.0'}
1622 |
1623 | reflect.getprototypeof@1.0.6:
1624 | resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
1625 | engines: {node: '>= 0.4'}
1626 |
1627 | regexp.prototype.flags@1.5.3:
1628 | resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
1629 | engines: {node: '>= 0.4'}
1630 |
1631 | resolve-from@4.0.0:
1632 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1633 | engines: {node: '>=4'}
1634 |
1635 | resolve-pkg-maps@1.0.0:
1636 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
1637 |
1638 | resolve@1.22.8:
1639 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
1640 | hasBin: true
1641 |
1642 | resolve@2.0.0-next.5:
1643 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
1644 | hasBin: true
1645 |
1646 | reusify@1.0.4:
1647 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
1648 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1649 |
1650 | rimraf@3.0.2:
1651 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
1652 | deprecated: Rimraf versions prior to v4 are no longer supported
1653 | hasBin: true
1654 |
1655 | run-parallel@1.2.0:
1656 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1657 |
1658 | safe-array-concat@1.1.2:
1659 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
1660 | engines: {node: '>=0.4'}
1661 |
1662 | safe-regex-test@1.0.3:
1663 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
1664 | engines: {node: '>= 0.4'}
1665 |
1666 | scheduler@0.25.0-rc-66855b96-20241106:
1667 | resolution: {integrity: sha512-HQXp/Mnp/MMRSXMQF7urNFla+gmtXW/Gr1KliuR0iboTit4KvZRY8KYaq5ccCTAOJiUqQh2rE2F3wgUekmgdlA==}
1668 |
1669 | semver@6.3.1:
1670 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
1671 | hasBin: true
1672 |
1673 | semver@7.6.3:
1674 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
1675 | engines: {node: '>=10'}
1676 | hasBin: true
1677 |
1678 | set-function-length@1.2.2:
1679 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
1680 | engines: {node: '>= 0.4'}
1681 |
1682 | set-function-name@2.0.2:
1683 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
1684 | engines: {node: '>= 0.4'}
1685 |
1686 | sharp@0.33.5:
1687 | resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
1688 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
1689 |
1690 | shebang-command@2.0.0:
1691 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1692 | engines: {node: '>=8'}
1693 |
1694 | shebang-regex@3.0.0:
1695 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1696 | engines: {node: '>=8'}
1697 |
1698 | side-channel@1.0.6:
1699 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
1700 | engines: {node: '>= 0.4'}
1701 |
1702 | signal-exit@4.1.0:
1703 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
1704 | engines: {node: '>=14'}
1705 |
1706 | simple-swizzle@0.2.2:
1707 | resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
1708 |
1709 | source-map-js@1.2.1:
1710 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
1711 | engines: {node: '>=0.10.0'}
1712 |
1713 | streamsearch@1.1.0:
1714 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
1715 | engines: {node: '>=10.0.0'}
1716 |
1717 | string-width@4.2.3:
1718 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
1719 | engines: {node: '>=8'}
1720 |
1721 | string-width@5.1.2:
1722 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
1723 | engines: {node: '>=12'}
1724 |
1725 | string.prototype.includes@2.0.1:
1726 | resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
1727 | engines: {node: '>= 0.4'}
1728 |
1729 | string.prototype.matchall@4.0.11:
1730 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
1731 | engines: {node: '>= 0.4'}
1732 |
1733 | string.prototype.repeat@1.0.0:
1734 | resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
1735 |
1736 | string.prototype.trim@1.2.9:
1737 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
1738 | engines: {node: '>= 0.4'}
1739 |
1740 | string.prototype.trimend@1.0.8:
1741 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
1742 |
1743 | string.prototype.trimstart@1.0.8:
1744 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
1745 | engines: {node: '>= 0.4'}
1746 |
1747 | strip-ansi@6.0.1:
1748 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
1749 | engines: {node: '>=8'}
1750 |
1751 | strip-ansi@7.1.0:
1752 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
1753 | engines: {node: '>=12'}
1754 |
1755 | strip-bom@3.0.0:
1756 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
1757 | engines: {node: '>=4'}
1758 |
1759 | strip-json-comments@3.1.1:
1760 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1761 | engines: {node: '>=8'}
1762 |
1763 | styled-jsx@5.1.6:
1764 | resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
1765 | engines: {node: '>= 12.0.0'}
1766 | peerDependencies:
1767 | '@babel/core': '*'
1768 | babel-plugin-macros: '*'
1769 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
1770 | peerDependenciesMeta:
1771 | '@babel/core':
1772 | optional: true
1773 | babel-plugin-macros:
1774 | optional: true
1775 |
1776 | sucrase@3.35.0:
1777 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
1778 | engines: {node: '>=16 || 14 >=14.17'}
1779 | hasBin: true
1780 |
1781 | supports-color@7.2.0:
1782 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1783 | engines: {node: '>=8'}
1784 |
1785 | supports-preserve-symlinks-flag@1.0.0:
1786 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
1787 | engines: {node: '>= 0.4'}
1788 |
1789 | tailwind-merge@2.5.4:
1790 | resolution: {integrity: sha512-0q8cfZHMu9nuYP/b5Shb7Y7Sh1B7Nnl5GqNr1U+n2p6+mybvRtayrQ+0042Z5byvTA8ihjlP8Odo8/VnHbZu4Q==}
1791 |
1792 | tailwindcss-animate@1.0.7:
1793 | resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
1794 | peerDependencies:
1795 | tailwindcss: '>=3.0.0 || insiders'
1796 |
1797 | tailwindcss-radix-colors@1.4.1:
1798 | resolution: {integrity: sha512-jlSYXsjq8uavjQPXbMJJwDhojG0wlTasJTnM9hmXXPaDOvNUTeeU0YEILWakUpuxWJ8xyzyInz9JVZGHs3/dCw==}
1799 | peerDependencies:
1800 | tailwindcss: '>=3.0.0'
1801 |
1802 | tailwindcss@3.4.14:
1803 | resolution: {integrity: sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==}
1804 | engines: {node: '>=14.0.0'}
1805 | hasBin: true
1806 |
1807 | tapable@2.2.1:
1808 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
1809 | engines: {node: '>=6'}
1810 |
1811 | text-table@0.2.0:
1812 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
1813 |
1814 | thenify-all@1.6.0:
1815 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
1816 | engines: {node: '>=0.8'}
1817 |
1818 | thenify@3.3.1:
1819 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
1820 |
1821 | to-regex-range@5.0.1:
1822 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1823 | engines: {node: '>=8.0'}
1824 |
1825 | ts-api-utils@1.4.0:
1826 | resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==}
1827 | engines: {node: '>=16'}
1828 | peerDependencies:
1829 | typescript: '>=4.2.0'
1830 |
1831 | ts-interface-checker@0.1.13:
1832 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
1833 |
1834 | tsconfig-paths@3.15.0:
1835 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
1836 |
1837 | tslib@2.8.1:
1838 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
1839 |
1840 | type-check@0.4.0:
1841 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1842 | engines: {node: '>= 0.8.0'}
1843 |
1844 | type-fest@0.20.2:
1845 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
1846 | engines: {node: '>=10'}
1847 |
1848 | typed-array-buffer@1.0.2:
1849 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
1850 | engines: {node: '>= 0.4'}
1851 |
1852 | typed-array-byte-length@1.0.1:
1853 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
1854 | engines: {node: '>= 0.4'}
1855 |
1856 | typed-array-byte-offset@1.0.2:
1857 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
1858 | engines: {node: '>= 0.4'}
1859 |
1860 | typed-array-length@1.0.6:
1861 | resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
1862 | engines: {node: '>= 0.4'}
1863 |
1864 | typescript@5.6.3:
1865 | resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
1866 | engines: {node: '>=14.17'}
1867 | hasBin: true
1868 |
1869 | unbox-primitive@1.0.2:
1870 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
1871 |
1872 | undici-types@6.19.8:
1873 | resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
1874 |
1875 | uri-js@4.4.1:
1876 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1877 |
1878 | util-deprecate@1.0.2:
1879 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
1880 |
1881 | which-boxed-primitive@1.0.2:
1882 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
1883 |
1884 | which-builtin-type@1.1.4:
1885 | resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
1886 | engines: {node: '>= 0.4'}
1887 |
1888 | which-collection@1.0.2:
1889 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
1890 | engines: {node: '>= 0.4'}
1891 |
1892 | which-typed-array@1.1.15:
1893 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
1894 | engines: {node: '>= 0.4'}
1895 |
1896 | which@2.0.2:
1897 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1898 | engines: {node: '>= 8'}
1899 | hasBin: true
1900 |
1901 | word-wrap@1.2.5:
1902 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1903 | engines: {node: '>=0.10.0'}
1904 |
1905 | wrap-ansi@7.0.0:
1906 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
1907 | engines: {node: '>=10'}
1908 |
1909 | wrap-ansi@8.1.0:
1910 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
1911 | engines: {node: '>=12'}
1912 |
1913 | wrappy@1.0.2:
1914 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
1915 |
1916 | yaml@2.6.0:
1917 | resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==}
1918 | engines: {node: '>= 14'}
1919 | hasBin: true
1920 |
1921 | yocto-queue@0.1.0:
1922 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1923 | engines: {node: '>=10'}
1924 |
1925 | snapshots:
1926 |
1927 | '@alloc/quick-lru@5.2.0': {}
1928 |
1929 | '@emnapi/runtime@1.3.1':
1930 | dependencies:
1931 | tslib: 2.8.1
1932 | optional: true
1933 |
1934 | '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
1935 | dependencies:
1936 | eslint: 8.57.1
1937 | eslint-visitor-keys: 3.4.3
1938 |
1939 | '@eslint-community/regexpp@4.12.1': {}
1940 |
1941 | '@eslint/eslintrc@2.1.4':
1942 | dependencies:
1943 | ajv: 6.12.6
1944 | debug: 4.3.7
1945 | espree: 9.6.1
1946 | globals: 13.24.0
1947 | ignore: 5.3.2
1948 | import-fresh: 3.3.0
1949 | js-yaml: 4.1.0
1950 | minimatch: 3.1.2
1951 | strip-json-comments: 3.1.1
1952 | transitivePeerDependencies:
1953 | - supports-color
1954 |
1955 | '@eslint/js@8.57.1': {}
1956 |
1957 | '@floating-ui/core@1.6.8':
1958 | dependencies:
1959 | '@floating-ui/utils': 0.2.8
1960 |
1961 | '@floating-ui/dom@1.6.12':
1962 | dependencies:
1963 | '@floating-ui/core': 1.6.8
1964 | '@floating-ui/utils': 0.2.8
1965 |
1966 | '@floating-ui/react-dom@2.1.2(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
1967 | dependencies:
1968 | '@floating-ui/dom': 1.6.12
1969 | react: 19.0.0-rc-66855b96-20241106
1970 | react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
1971 |
1972 | '@floating-ui/utils@0.2.8': {}
1973 |
1974 | '@humanwhocodes/config-array@0.13.0':
1975 | dependencies:
1976 | '@humanwhocodes/object-schema': 2.0.3
1977 | debug: 4.3.7
1978 | minimatch: 3.1.2
1979 | transitivePeerDependencies:
1980 | - supports-color
1981 |
1982 | '@humanwhocodes/module-importer@1.0.1': {}
1983 |
1984 | '@humanwhocodes/object-schema@2.0.3': {}
1985 |
1986 | '@img/sharp-darwin-arm64@0.33.5':
1987 | optionalDependencies:
1988 | '@img/sharp-libvips-darwin-arm64': 1.0.4
1989 | optional: true
1990 |
1991 | '@img/sharp-darwin-x64@0.33.5':
1992 | optionalDependencies:
1993 | '@img/sharp-libvips-darwin-x64': 1.0.4
1994 | optional: true
1995 |
1996 | '@img/sharp-libvips-darwin-arm64@1.0.4':
1997 | optional: true
1998 |
1999 | '@img/sharp-libvips-darwin-x64@1.0.4':
2000 | optional: true
2001 |
2002 | '@img/sharp-libvips-linux-arm64@1.0.4':
2003 | optional: true
2004 |
2005 | '@img/sharp-libvips-linux-arm@1.0.5':
2006 | optional: true
2007 |
2008 | '@img/sharp-libvips-linux-s390x@1.0.4':
2009 | optional: true
2010 |
2011 | '@img/sharp-libvips-linux-x64@1.0.4':
2012 | optional: true
2013 |
2014 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
2015 | optional: true
2016 |
2017 | '@img/sharp-libvips-linuxmusl-x64@1.0.4':
2018 | optional: true
2019 |
2020 | '@img/sharp-linux-arm64@0.33.5':
2021 | optionalDependencies:
2022 | '@img/sharp-libvips-linux-arm64': 1.0.4
2023 | optional: true
2024 |
2025 | '@img/sharp-linux-arm@0.33.5':
2026 | optionalDependencies:
2027 | '@img/sharp-libvips-linux-arm': 1.0.5
2028 | optional: true
2029 |
2030 | '@img/sharp-linux-s390x@0.33.5':
2031 | optionalDependencies:
2032 | '@img/sharp-libvips-linux-s390x': 1.0.4
2033 | optional: true
2034 |
2035 | '@img/sharp-linux-x64@0.33.5':
2036 | optionalDependencies:
2037 | '@img/sharp-libvips-linux-x64': 1.0.4
2038 | optional: true
2039 |
2040 | '@img/sharp-linuxmusl-arm64@0.33.5':
2041 | optionalDependencies:
2042 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
2043 | optional: true
2044 |
2045 | '@img/sharp-linuxmusl-x64@0.33.5':
2046 | optionalDependencies:
2047 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4
2048 | optional: true
2049 |
2050 | '@img/sharp-wasm32@0.33.5':
2051 | dependencies:
2052 | '@emnapi/runtime': 1.3.1
2053 | optional: true
2054 |
2055 | '@img/sharp-win32-ia32@0.33.5':
2056 | optional: true
2057 |
2058 | '@img/sharp-win32-x64@0.33.5':
2059 | optional: true
2060 |
2061 | '@isaacs/cliui@8.0.2':
2062 | dependencies:
2063 | string-width: 5.1.2
2064 | string-width-cjs: string-width@4.2.3
2065 | strip-ansi: 7.1.0
2066 | strip-ansi-cjs: strip-ansi@6.0.1
2067 | wrap-ansi: 8.1.0
2068 | wrap-ansi-cjs: wrap-ansi@7.0.0
2069 |
2070 | '@jridgewell/gen-mapping@0.3.5':
2071 | dependencies:
2072 | '@jridgewell/set-array': 1.2.1
2073 | '@jridgewell/sourcemap-codec': 1.5.0
2074 | '@jridgewell/trace-mapping': 0.3.25
2075 |
2076 | '@jridgewell/resolve-uri@3.1.2': {}
2077 |
2078 | '@jridgewell/set-array@1.2.1': {}
2079 |
2080 | '@jridgewell/sourcemap-codec@1.5.0': {}
2081 |
2082 | '@jridgewell/trace-mapping@0.3.25':
2083 | dependencies:
2084 | '@jridgewell/resolve-uri': 3.1.2
2085 | '@jridgewell/sourcemap-codec': 1.5.0
2086 |
2087 | '@next/env@15.0.3': {}
2088 |
2089 | '@next/eslint-plugin-next@15.0.3':
2090 | dependencies:
2091 | fast-glob: 3.3.1
2092 |
2093 | '@next/swc-darwin-arm64@15.0.3':
2094 | optional: true
2095 |
2096 | '@next/swc-darwin-x64@15.0.3':
2097 | optional: true
2098 |
2099 | '@next/swc-linux-arm64-gnu@15.0.3':
2100 | optional: true
2101 |
2102 | '@next/swc-linux-arm64-musl@15.0.3':
2103 | optional: true
2104 |
2105 | '@next/swc-linux-x64-gnu@15.0.3':
2106 | optional: true
2107 |
2108 | '@next/swc-linux-x64-musl@15.0.3':
2109 | optional: true
2110 |
2111 | '@next/swc-win32-arm64-msvc@15.0.3':
2112 | optional: true
2113 |
2114 | '@next/swc-win32-x64-msvc@15.0.3':
2115 | optional: true
2116 |
2117 | '@nodelib/fs.scandir@2.1.5':
2118 | dependencies:
2119 | '@nodelib/fs.stat': 2.0.5
2120 | run-parallel: 1.2.0
2121 |
2122 | '@nodelib/fs.stat@2.0.5': {}
2123 |
2124 | '@nodelib/fs.walk@1.2.8':
2125 | dependencies:
2126 | '@nodelib/fs.scandir': 2.1.5
2127 | fastq: 1.17.1
2128 |
2129 | '@nolyfill/is-core-module@1.0.39': {}
2130 |
2131 | '@pkgjs/parseargs@0.11.0':
2132 | optional: true
2133 |
2134 | '@radix-ui/colors@3.0.0': {}
2135 |
2136 | '@radix-ui/primitive@1.1.0': {}
2137 |
2138 | '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
2139 | dependencies:
2140 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2141 | react: 19.0.0-rc-66855b96-20241106
2142 | react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
2143 | optionalDependencies:
2144 | '@types/react': 18.3.12
2145 | '@types/react-dom': 18.3.1
2146 |
2147 | '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)':
2148 | dependencies:
2149 | react: 19.0.0-rc-66855b96-20241106
2150 | optionalDependencies:
2151 | '@types/react': 18.3.12
2152 |
2153 | '@radix-ui/react-context@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)':
2154 | dependencies:
2155 | react: 19.0.0-rc-66855b96-20241106
2156 | optionalDependencies:
2157 | '@types/react': 18.3.12
2158 |
2159 | '@radix-ui/react-context@1.1.1(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)':
2160 | dependencies:
2161 | react: 19.0.0-rc-66855b96-20241106
2162 | optionalDependencies:
2163 | '@types/react': 18.3.12
2164 |
2165 | '@radix-ui/react-dismissable-layer@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
2166 | dependencies:
2167 | '@radix-ui/primitive': 1.1.0
2168 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2169 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2170 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2171 | '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2172 | react: 19.0.0-rc-66855b96-20241106
2173 | react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
2174 | optionalDependencies:
2175 | '@types/react': 18.3.12
2176 | '@types/react-dom': 18.3.1
2177 |
2178 | '@radix-ui/react-icons@1.3.1(react@19.0.0-rc-66855b96-20241106)':
2179 | dependencies:
2180 | react: 19.0.0-rc-66855b96-20241106
2181 |
2182 | '@radix-ui/react-id@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)':
2183 | dependencies:
2184 | '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2185 | react: 19.0.0-rc-66855b96-20241106
2186 | optionalDependencies:
2187 | '@types/react': 18.3.12
2188 |
2189 | '@radix-ui/react-popper@1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
2190 | dependencies:
2191 | '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2192 | '@radix-ui/react-arrow': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2193 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2194 | '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2195 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2196 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2197 | '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2198 | '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2199 | '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2200 | '@radix-ui/rect': 1.1.0
2201 | react: 19.0.0-rc-66855b96-20241106
2202 | react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
2203 | optionalDependencies:
2204 | '@types/react': 18.3.12
2205 | '@types/react-dom': 18.3.1
2206 |
2207 | '@radix-ui/react-portal@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
2208 | dependencies:
2209 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2210 | '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2211 | react: 19.0.0-rc-66855b96-20241106
2212 | react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
2213 | optionalDependencies:
2214 | '@types/react': 18.3.12
2215 | '@types/react-dom': 18.3.1
2216 |
2217 | '@radix-ui/react-presence@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
2218 | dependencies:
2219 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2220 | '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2221 | react: 19.0.0-rc-66855b96-20241106
2222 | react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
2223 | optionalDependencies:
2224 | '@types/react': 18.3.12
2225 | '@types/react-dom': 18.3.1
2226 |
2227 | '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
2228 | dependencies:
2229 | '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2230 | react: 19.0.0-rc-66855b96-20241106
2231 | react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
2232 | optionalDependencies:
2233 | '@types/react': 18.3.12
2234 | '@types/react-dom': 18.3.1
2235 |
2236 | '@radix-ui/react-slot@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)':
2237 | dependencies:
2238 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2239 | react: 19.0.0-rc-66855b96-20241106
2240 | optionalDependencies:
2241 | '@types/react': 18.3.12
2242 |
2243 | '@radix-ui/react-tooltip@1.1.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
2244 | dependencies:
2245 | '@radix-ui/primitive': 1.1.0
2246 | '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2247 | '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2248 | '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2249 | '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2250 | '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2251 | '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2252 | '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2253 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2254 | '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2255 | '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2256 | '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2257 | react: 19.0.0-rc-66855b96-20241106
2258 | react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
2259 | optionalDependencies:
2260 | '@types/react': 18.3.12
2261 | '@types/react-dom': 18.3.1
2262 |
2263 | '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)':
2264 | dependencies:
2265 | react: 19.0.0-rc-66855b96-20241106
2266 | optionalDependencies:
2267 | '@types/react': 18.3.12
2268 |
2269 | '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)':
2270 | dependencies:
2271 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2272 | react: 19.0.0-rc-66855b96-20241106
2273 | optionalDependencies:
2274 | '@types/react': 18.3.12
2275 |
2276 | '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)':
2277 | dependencies:
2278 | '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2279 | react: 19.0.0-rc-66855b96-20241106
2280 | optionalDependencies:
2281 | '@types/react': 18.3.12
2282 |
2283 | '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)':
2284 | dependencies:
2285 | react: 19.0.0-rc-66855b96-20241106
2286 | optionalDependencies:
2287 | '@types/react': 18.3.12
2288 |
2289 | '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)':
2290 | dependencies:
2291 | '@radix-ui/rect': 1.1.0
2292 | react: 19.0.0-rc-66855b96-20241106
2293 | optionalDependencies:
2294 | '@types/react': 18.3.12
2295 |
2296 | '@radix-ui/react-use-size@1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)':
2297 | dependencies:
2298 | '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
2299 | react: 19.0.0-rc-66855b96-20241106
2300 | optionalDependencies:
2301 | '@types/react': 18.3.12
2302 |
2303 | '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
2304 | dependencies:
2305 | '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
2306 | react: 19.0.0-rc-66855b96-20241106
2307 | react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
2308 | optionalDependencies:
2309 | '@types/react': 18.3.12
2310 | '@types/react-dom': 18.3.1
2311 |
2312 | '@radix-ui/rect@1.1.0': {}
2313 |
2314 | '@rtsao/scc@1.1.0': {}
2315 |
2316 | '@rushstack/eslint-patch@1.10.4': {}
2317 |
2318 | '@swc/counter@0.1.3': {}
2319 |
2320 | '@swc/helpers@0.5.13':
2321 | dependencies:
2322 | tslib: 2.8.1
2323 |
2324 | '@types/json5@0.0.29': {}
2325 |
2326 | '@types/node@20.17.6':
2327 | dependencies:
2328 | undici-types: 6.19.8
2329 |
2330 | '@types/prop-types@15.7.13': {}
2331 |
2332 | '@types/react-dom@18.3.1':
2333 | dependencies:
2334 | '@types/react': 18.3.12
2335 |
2336 | '@types/react@18.3.12':
2337 | dependencies:
2338 | '@types/prop-types': 15.7.13
2339 | csstype: 3.1.3
2340 |
2341 | '@typescript-eslint/eslint-plugin@8.13.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)':
2342 | dependencies:
2343 | '@eslint-community/regexpp': 4.12.1
2344 | '@typescript-eslint/parser': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
2345 | '@typescript-eslint/scope-manager': 8.13.0
2346 | '@typescript-eslint/type-utils': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
2347 | '@typescript-eslint/utils': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
2348 | '@typescript-eslint/visitor-keys': 8.13.0
2349 | eslint: 8.57.1
2350 | graphemer: 1.4.0
2351 | ignore: 5.3.2
2352 | natural-compare: 1.4.0
2353 | ts-api-utils: 1.4.0(typescript@5.6.3)
2354 | optionalDependencies:
2355 | typescript: 5.6.3
2356 | transitivePeerDependencies:
2357 | - supports-color
2358 |
2359 | '@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3)':
2360 | dependencies:
2361 | '@typescript-eslint/scope-manager': 8.13.0
2362 | '@typescript-eslint/types': 8.13.0
2363 | '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
2364 | '@typescript-eslint/visitor-keys': 8.13.0
2365 | debug: 4.3.7
2366 | eslint: 8.57.1
2367 | optionalDependencies:
2368 | typescript: 5.6.3
2369 | transitivePeerDependencies:
2370 | - supports-color
2371 |
2372 | '@typescript-eslint/scope-manager@8.13.0':
2373 | dependencies:
2374 | '@typescript-eslint/types': 8.13.0
2375 | '@typescript-eslint/visitor-keys': 8.13.0
2376 |
2377 | '@typescript-eslint/type-utils@8.13.0(eslint@8.57.1)(typescript@5.6.3)':
2378 | dependencies:
2379 | '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
2380 | '@typescript-eslint/utils': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
2381 | debug: 4.3.7
2382 | ts-api-utils: 1.4.0(typescript@5.6.3)
2383 | optionalDependencies:
2384 | typescript: 5.6.3
2385 | transitivePeerDependencies:
2386 | - eslint
2387 | - supports-color
2388 |
2389 | '@typescript-eslint/types@8.13.0': {}
2390 |
2391 | '@typescript-eslint/typescript-estree@8.13.0(typescript@5.6.3)':
2392 | dependencies:
2393 | '@typescript-eslint/types': 8.13.0
2394 | '@typescript-eslint/visitor-keys': 8.13.0
2395 | debug: 4.3.7
2396 | fast-glob: 3.3.2
2397 | is-glob: 4.0.3
2398 | minimatch: 9.0.5
2399 | semver: 7.6.3
2400 | ts-api-utils: 1.4.0(typescript@5.6.3)
2401 | optionalDependencies:
2402 | typescript: 5.6.3
2403 | transitivePeerDependencies:
2404 | - supports-color
2405 |
2406 | '@typescript-eslint/utils@8.13.0(eslint@8.57.1)(typescript@5.6.3)':
2407 | dependencies:
2408 | '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
2409 | '@typescript-eslint/scope-manager': 8.13.0
2410 | '@typescript-eslint/types': 8.13.0
2411 | '@typescript-eslint/typescript-estree': 8.13.0(typescript@5.6.3)
2412 | eslint: 8.57.1
2413 | transitivePeerDependencies:
2414 | - supports-color
2415 | - typescript
2416 |
2417 | '@typescript-eslint/visitor-keys@8.13.0':
2418 | dependencies:
2419 | '@typescript-eslint/types': 8.13.0
2420 | eslint-visitor-keys: 3.4.3
2421 |
2422 | '@ungap/structured-clone@1.2.0': {}
2423 |
2424 | acorn-jsx@5.3.2(acorn@8.14.0):
2425 | dependencies:
2426 | acorn: 8.14.0
2427 |
2428 | acorn@8.14.0: {}
2429 |
2430 | ajv@6.12.6:
2431 | dependencies:
2432 | fast-deep-equal: 3.1.3
2433 | fast-json-stable-stringify: 2.1.0
2434 | json-schema-traverse: 0.4.1
2435 | uri-js: 4.4.1
2436 |
2437 | ansi-regex@5.0.1: {}
2438 |
2439 | ansi-regex@6.1.0: {}
2440 |
2441 | ansi-styles@4.3.0:
2442 | dependencies:
2443 | color-convert: 2.0.1
2444 |
2445 | ansi-styles@6.2.1: {}
2446 |
2447 | any-promise@1.3.0: {}
2448 |
2449 | anymatch@3.1.3:
2450 | dependencies:
2451 | normalize-path: 3.0.0
2452 | picomatch: 2.3.1
2453 |
2454 | arg@5.0.2: {}
2455 |
2456 | argparse@2.0.1: {}
2457 |
2458 | aria-query@5.3.2: {}
2459 |
2460 | array-buffer-byte-length@1.0.1:
2461 | dependencies:
2462 | call-bind: 1.0.7
2463 | is-array-buffer: 3.0.4
2464 |
2465 | array-includes@3.1.8:
2466 | dependencies:
2467 | call-bind: 1.0.7
2468 | define-properties: 1.2.1
2469 | es-abstract: 1.23.3
2470 | es-object-atoms: 1.0.0
2471 | get-intrinsic: 1.2.4
2472 | is-string: 1.0.7
2473 |
2474 | array.prototype.findlast@1.2.5:
2475 | dependencies:
2476 | call-bind: 1.0.7
2477 | define-properties: 1.2.1
2478 | es-abstract: 1.23.3
2479 | es-errors: 1.3.0
2480 | es-object-atoms: 1.0.0
2481 | es-shim-unscopables: 1.0.2
2482 |
2483 | array.prototype.findlastindex@1.2.5:
2484 | dependencies:
2485 | call-bind: 1.0.7
2486 | define-properties: 1.2.1
2487 | es-abstract: 1.23.3
2488 | es-errors: 1.3.0
2489 | es-object-atoms: 1.0.0
2490 | es-shim-unscopables: 1.0.2
2491 |
2492 | array.prototype.flat@1.3.2:
2493 | dependencies:
2494 | call-bind: 1.0.7
2495 | define-properties: 1.2.1
2496 | es-abstract: 1.23.3
2497 | es-shim-unscopables: 1.0.2
2498 |
2499 | array.prototype.flatmap@1.3.2:
2500 | dependencies:
2501 | call-bind: 1.0.7
2502 | define-properties: 1.2.1
2503 | es-abstract: 1.23.3
2504 | es-shim-unscopables: 1.0.2
2505 |
2506 | array.prototype.tosorted@1.1.4:
2507 | dependencies:
2508 | call-bind: 1.0.7
2509 | define-properties: 1.2.1
2510 | es-abstract: 1.23.3
2511 | es-errors: 1.3.0
2512 | es-shim-unscopables: 1.0.2
2513 |
2514 | arraybuffer.prototype.slice@1.0.3:
2515 | dependencies:
2516 | array-buffer-byte-length: 1.0.1
2517 | call-bind: 1.0.7
2518 | define-properties: 1.2.1
2519 | es-abstract: 1.23.3
2520 | es-errors: 1.3.0
2521 | get-intrinsic: 1.2.4
2522 | is-array-buffer: 3.0.4
2523 | is-shared-array-buffer: 1.0.3
2524 |
2525 | ast-types-flow@0.0.8: {}
2526 |
2527 | available-typed-arrays@1.0.7:
2528 | dependencies:
2529 | possible-typed-array-names: 1.0.0
2530 |
2531 | axe-core@4.10.2: {}
2532 |
2533 | axobject-query@4.1.0: {}
2534 |
2535 | balanced-match@1.0.2: {}
2536 |
2537 | binary-extensions@2.3.0: {}
2538 |
2539 | brace-expansion@1.1.11:
2540 | dependencies:
2541 | balanced-match: 1.0.2
2542 | concat-map: 0.0.1
2543 |
2544 | brace-expansion@2.0.1:
2545 | dependencies:
2546 | balanced-match: 1.0.2
2547 |
2548 | braces@3.0.3:
2549 | dependencies:
2550 | fill-range: 7.1.1
2551 |
2552 | busboy@1.6.0:
2553 | dependencies:
2554 | streamsearch: 1.1.0
2555 |
2556 | call-bind@1.0.7:
2557 | dependencies:
2558 | es-define-property: 1.0.0
2559 | es-errors: 1.3.0
2560 | function-bind: 1.1.2
2561 | get-intrinsic: 1.2.4
2562 | set-function-length: 1.2.2
2563 |
2564 | callsites@3.1.0: {}
2565 |
2566 | camelcase-css@2.0.1: {}
2567 |
2568 | caniuse-lite@1.0.30001679: {}
2569 |
2570 | chalk@4.1.2:
2571 | dependencies:
2572 | ansi-styles: 4.3.0
2573 | supports-color: 7.2.0
2574 |
2575 | chokidar@3.6.0:
2576 | dependencies:
2577 | anymatch: 3.1.3
2578 | braces: 3.0.3
2579 | glob-parent: 5.1.2
2580 | is-binary-path: 2.1.0
2581 | is-glob: 4.0.3
2582 | normalize-path: 3.0.0
2583 | readdirp: 3.6.0
2584 | optionalDependencies:
2585 | fsevents: 2.3.3
2586 |
2587 | class-variance-authority@0.7.0:
2588 | dependencies:
2589 | clsx: 2.0.0
2590 |
2591 | client-only@0.0.1: {}
2592 |
2593 | clsx@2.0.0: {}
2594 |
2595 | clsx@2.1.1: {}
2596 |
2597 | color-convert@2.0.1:
2598 | dependencies:
2599 | color-name: 1.1.4
2600 |
2601 | color-name@1.1.4: {}
2602 |
2603 | color-string@1.9.1:
2604 | dependencies:
2605 | color-name: 1.1.4
2606 | simple-swizzle: 0.2.2
2607 | optional: true
2608 |
2609 | color@4.2.3:
2610 | dependencies:
2611 | color-convert: 2.0.1
2612 | color-string: 1.9.1
2613 | optional: true
2614 |
2615 | commander@4.1.1: {}
2616 |
2617 | concat-map@0.0.1: {}
2618 |
2619 | cross-spawn@7.0.5:
2620 | dependencies:
2621 | path-key: 3.1.1
2622 | shebang-command: 2.0.0
2623 | which: 2.0.2
2624 |
2625 | cssesc@3.0.0: {}
2626 |
2627 | csstype@3.1.3: {}
2628 |
2629 | damerau-levenshtein@1.0.8: {}
2630 |
2631 | data-view-buffer@1.0.1:
2632 | dependencies:
2633 | call-bind: 1.0.7
2634 | es-errors: 1.3.0
2635 | is-data-view: 1.0.1
2636 |
2637 | data-view-byte-length@1.0.1:
2638 | dependencies:
2639 | call-bind: 1.0.7
2640 | es-errors: 1.3.0
2641 | is-data-view: 1.0.1
2642 |
2643 | data-view-byte-offset@1.0.0:
2644 | dependencies:
2645 | call-bind: 1.0.7
2646 | es-errors: 1.3.0
2647 | is-data-view: 1.0.1
2648 |
2649 | debug@3.2.7:
2650 | dependencies:
2651 | ms: 2.1.3
2652 |
2653 | debug@4.3.7:
2654 | dependencies:
2655 | ms: 2.1.3
2656 |
2657 | deep-is@0.1.4: {}
2658 |
2659 | define-data-property@1.1.4:
2660 | dependencies:
2661 | es-define-property: 1.0.0
2662 | es-errors: 1.3.0
2663 | gopd: 1.0.1
2664 |
2665 | define-properties@1.2.1:
2666 | dependencies:
2667 | define-data-property: 1.1.4
2668 | has-property-descriptors: 1.0.2
2669 | object-keys: 1.1.1
2670 |
2671 | detect-libc@2.0.3:
2672 | optional: true
2673 |
2674 | didyoumean@1.2.2: {}
2675 |
2676 | dlv@1.1.3: {}
2677 |
2678 | doctrine@2.1.0:
2679 | dependencies:
2680 | esutils: 2.0.3
2681 |
2682 | doctrine@3.0.0:
2683 | dependencies:
2684 | esutils: 2.0.3
2685 |
2686 | eastasianwidth@0.2.0: {}
2687 |
2688 | emoji-regex@8.0.0: {}
2689 |
2690 | emoji-regex@9.2.2: {}
2691 |
2692 | enhanced-resolve@5.17.1:
2693 | dependencies:
2694 | graceful-fs: 4.2.11
2695 | tapable: 2.2.1
2696 |
2697 | es-abstract@1.23.3:
2698 | dependencies:
2699 | array-buffer-byte-length: 1.0.1
2700 | arraybuffer.prototype.slice: 1.0.3
2701 | available-typed-arrays: 1.0.7
2702 | call-bind: 1.0.7
2703 | data-view-buffer: 1.0.1
2704 | data-view-byte-length: 1.0.1
2705 | data-view-byte-offset: 1.0.0
2706 | es-define-property: 1.0.0
2707 | es-errors: 1.3.0
2708 | es-object-atoms: 1.0.0
2709 | es-set-tostringtag: 2.0.3
2710 | es-to-primitive: 1.2.1
2711 | function.prototype.name: 1.1.6
2712 | get-intrinsic: 1.2.4
2713 | get-symbol-description: 1.0.2
2714 | globalthis: 1.0.4
2715 | gopd: 1.0.1
2716 | has-property-descriptors: 1.0.2
2717 | has-proto: 1.0.3
2718 | has-symbols: 1.0.3
2719 | hasown: 2.0.2
2720 | internal-slot: 1.0.7
2721 | is-array-buffer: 3.0.4
2722 | is-callable: 1.2.7
2723 | is-data-view: 1.0.1
2724 | is-negative-zero: 2.0.3
2725 | is-regex: 1.1.4
2726 | is-shared-array-buffer: 1.0.3
2727 | is-string: 1.0.7
2728 | is-typed-array: 1.1.13
2729 | is-weakref: 1.0.2
2730 | object-inspect: 1.13.3
2731 | object-keys: 1.1.1
2732 | object.assign: 4.1.5
2733 | regexp.prototype.flags: 1.5.3
2734 | safe-array-concat: 1.1.2
2735 | safe-regex-test: 1.0.3
2736 | string.prototype.trim: 1.2.9
2737 | string.prototype.trimend: 1.0.8
2738 | string.prototype.trimstart: 1.0.8
2739 | typed-array-buffer: 1.0.2
2740 | typed-array-byte-length: 1.0.1
2741 | typed-array-byte-offset: 1.0.2
2742 | typed-array-length: 1.0.6
2743 | unbox-primitive: 1.0.2
2744 | which-typed-array: 1.1.15
2745 |
2746 | es-define-property@1.0.0:
2747 | dependencies:
2748 | get-intrinsic: 1.2.4
2749 |
2750 | es-errors@1.3.0: {}
2751 |
2752 | es-iterator-helpers@1.2.0:
2753 | dependencies:
2754 | call-bind: 1.0.7
2755 | define-properties: 1.2.1
2756 | es-abstract: 1.23.3
2757 | es-errors: 1.3.0
2758 | es-set-tostringtag: 2.0.3
2759 | function-bind: 1.1.2
2760 | get-intrinsic: 1.2.4
2761 | globalthis: 1.0.4
2762 | gopd: 1.0.1
2763 | has-property-descriptors: 1.0.2
2764 | has-proto: 1.0.3
2765 | has-symbols: 1.0.3
2766 | internal-slot: 1.0.7
2767 | iterator.prototype: 1.1.3
2768 | safe-array-concat: 1.1.2
2769 |
2770 | es-object-atoms@1.0.0:
2771 | dependencies:
2772 | es-errors: 1.3.0
2773 |
2774 | es-set-tostringtag@2.0.3:
2775 | dependencies:
2776 | get-intrinsic: 1.2.4
2777 | has-tostringtag: 1.0.2
2778 | hasown: 2.0.2
2779 |
2780 | es-shim-unscopables@1.0.2:
2781 | dependencies:
2782 | hasown: 2.0.2
2783 |
2784 | es-to-primitive@1.2.1:
2785 | dependencies:
2786 | is-callable: 1.2.7
2787 | is-date-object: 1.0.5
2788 | is-symbol: 1.0.4
2789 |
2790 | escape-string-regexp@4.0.0: {}
2791 |
2792 | eslint-config-next@15.0.3(eslint@8.57.1)(typescript@5.6.3):
2793 | dependencies:
2794 | '@next/eslint-plugin-next': 15.0.3
2795 | '@rushstack/eslint-patch': 1.10.4
2796 | '@typescript-eslint/eslint-plugin': 8.13.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
2797 | '@typescript-eslint/parser': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
2798 | eslint: 8.57.1
2799 | eslint-import-resolver-node: 0.3.9
2800 | eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
2801 | eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
2802 | eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
2803 | eslint-plugin-react: 7.37.2(eslint@8.57.1)
2804 | eslint-plugin-react-hooks: 5.0.0(eslint@8.57.1)
2805 | optionalDependencies:
2806 | typescript: 5.6.3
2807 | transitivePeerDependencies:
2808 | - eslint-import-resolver-webpack
2809 | - eslint-plugin-import-x
2810 | - supports-color
2811 |
2812 | eslint-import-resolver-node@0.3.9:
2813 | dependencies:
2814 | debug: 3.2.7
2815 | is-core-module: 2.15.1
2816 | resolve: 1.22.8
2817 | transitivePeerDependencies:
2818 | - supports-color
2819 |
2820 | eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1):
2821 | dependencies:
2822 | '@nolyfill/is-core-module': 1.0.39
2823 | debug: 4.3.7
2824 | enhanced-resolve: 5.17.1
2825 | eslint: 8.57.1
2826 | eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1)
2827 | fast-glob: 3.3.2
2828 | get-tsconfig: 4.8.1
2829 | is-bun-module: 1.2.1
2830 | is-glob: 4.0.3
2831 | optionalDependencies:
2832 | eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
2833 | transitivePeerDependencies:
2834 | - '@typescript-eslint/parser'
2835 | - eslint-import-resolver-node
2836 | - eslint-import-resolver-webpack
2837 | - supports-color
2838 |
2839 | eslint-module-utils@2.12.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1):
2840 | dependencies:
2841 | debug: 3.2.7
2842 | optionalDependencies:
2843 | '@typescript-eslint/parser': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
2844 | eslint: 8.57.1
2845 | eslint-import-resolver-node: 0.3.9
2846 | eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
2847 | transitivePeerDependencies:
2848 | - supports-color
2849 |
2850 | eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
2851 | dependencies:
2852 | '@rtsao/scc': 1.1.0
2853 | array-includes: 3.1.8
2854 | array.prototype.findlastindex: 1.2.5
2855 | array.prototype.flat: 1.3.2
2856 | array.prototype.flatmap: 1.3.2
2857 | debug: 3.2.7
2858 | doctrine: 2.1.0
2859 | eslint: 8.57.1
2860 | eslint-import-resolver-node: 0.3.9
2861 | eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1)
2862 | hasown: 2.0.2
2863 | is-core-module: 2.15.1
2864 | is-glob: 4.0.3
2865 | minimatch: 3.1.2
2866 | object.fromentries: 2.0.8
2867 | object.groupby: 1.0.3
2868 | object.values: 1.2.0
2869 | semver: 6.3.1
2870 | string.prototype.trimend: 1.0.8
2871 | tsconfig-paths: 3.15.0
2872 | optionalDependencies:
2873 | '@typescript-eslint/parser': 8.13.0(eslint@8.57.1)(typescript@5.6.3)
2874 | transitivePeerDependencies:
2875 | - eslint-import-resolver-typescript
2876 | - eslint-import-resolver-webpack
2877 | - supports-color
2878 |
2879 | eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.1):
2880 | dependencies:
2881 | aria-query: 5.3.2
2882 | array-includes: 3.1.8
2883 | array.prototype.flatmap: 1.3.2
2884 | ast-types-flow: 0.0.8
2885 | axe-core: 4.10.2
2886 | axobject-query: 4.1.0
2887 | damerau-levenshtein: 1.0.8
2888 | emoji-regex: 9.2.2
2889 | eslint: 8.57.1
2890 | hasown: 2.0.2
2891 | jsx-ast-utils: 3.3.5
2892 | language-tags: 1.0.9
2893 | minimatch: 3.1.2
2894 | object.fromentries: 2.0.8
2895 | safe-regex-test: 1.0.3
2896 | string.prototype.includes: 2.0.1
2897 |
2898 | eslint-plugin-react-hooks@5.0.0(eslint@8.57.1):
2899 | dependencies:
2900 | eslint: 8.57.1
2901 |
2902 | eslint-plugin-react@7.37.2(eslint@8.57.1):
2903 | dependencies:
2904 | array-includes: 3.1.8
2905 | array.prototype.findlast: 1.2.5
2906 | array.prototype.flatmap: 1.3.2
2907 | array.prototype.tosorted: 1.1.4
2908 | doctrine: 2.1.0
2909 | es-iterator-helpers: 1.2.0
2910 | eslint: 8.57.1
2911 | estraverse: 5.3.0
2912 | hasown: 2.0.2
2913 | jsx-ast-utils: 3.3.5
2914 | minimatch: 3.1.2
2915 | object.entries: 1.1.8
2916 | object.fromentries: 2.0.8
2917 | object.values: 1.2.0
2918 | prop-types: 15.8.1
2919 | resolve: 2.0.0-next.5
2920 | semver: 6.3.1
2921 | string.prototype.matchall: 4.0.11
2922 | string.prototype.repeat: 1.0.0
2923 |
2924 | eslint-scope@7.2.2:
2925 | dependencies:
2926 | esrecurse: 4.3.0
2927 | estraverse: 5.3.0
2928 |
2929 | eslint-visitor-keys@3.4.3: {}
2930 |
2931 | eslint@8.57.1:
2932 | dependencies:
2933 | '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
2934 | '@eslint-community/regexpp': 4.12.1
2935 | '@eslint/eslintrc': 2.1.4
2936 | '@eslint/js': 8.57.1
2937 | '@humanwhocodes/config-array': 0.13.0
2938 | '@humanwhocodes/module-importer': 1.0.1
2939 | '@nodelib/fs.walk': 1.2.8
2940 | '@ungap/structured-clone': 1.2.0
2941 | ajv: 6.12.6
2942 | chalk: 4.1.2
2943 | cross-spawn: 7.0.5
2944 | debug: 4.3.7
2945 | doctrine: 3.0.0
2946 | escape-string-regexp: 4.0.0
2947 | eslint-scope: 7.2.2
2948 | eslint-visitor-keys: 3.4.3
2949 | espree: 9.6.1
2950 | esquery: 1.6.0
2951 | esutils: 2.0.3
2952 | fast-deep-equal: 3.1.3
2953 | file-entry-cache: 6.0.1
2954 | find-up: 5.0.0
2955 | glob-parent: 6.0.2
2956 | globals: 13.24.0
2957 | graphemer: 1.4.0
2958 | ignore: 5.3.2
2959 | imurmurhash: 0.1.4
2960 | is-glob: 4.0.3
2961 | is-path-inside: 3.0.3
2962 | js-yaml: 4.1.0
2963 | json-stable-stringify-without-jsonify: 1.0.1
2964 | levn: 0.4.1
2965 | lodash.merge: 4.6.2
2966 | minimatch: 3.1.2
2967 | natural-compare: 1.4.0
2968 | optionator: 0.9.4
2969 | strip-ansi: 6.0.1
2970 | text-table: 0.2.0
2971 | transitivePeerDependencies:
2972 | - supports-color
2973 |
2974 | espree@9.6.1:
2975 | dependencies:
2976 | acorn: 8.14.0
2977 | acorn-jsx: 5.3.2(acorn@8.14.0)
2978 | eslint-visitor-keys: 3.4.3
2979 |
2980 | esquery@1.6.0:
2981 | dependencies:
2982 | estraverse: 5.3.0
2983 |
2984 | esrecurse@4.3.0:
2985 | dependencies:
2986 | estraverse: 5.3.0
2987 |
2988 | estraverse@5.3.0: {}
2989 |
2990 | esutils@2.0.3: {}
2991 |
2992 | fast-deep-equal@3.1.3: {}
2993 |
2994 | fast-glob@3.3.1:
2995 | dependencies:
2996 | '@nodelib/fs.stat': 2.0.5
2997 | '@nodelib/fs.walk': 1.2.8
2998 | glob-parent: 5.1.2
2999 | merge2: 1.4.1
3000 | micromatch: 4.0.8
3001 |
3002 | fast-glob@3.3.2:
3003 | dependencies:
3004 | '@nodelib/fs.stat': 2.0.5
3005 | '@nodelib/fs.walk': 1.2.8
3006 | glob-parent: 5.1.2
3007 | merge2: 1.4.1
3008 | micromatch: 4.0.8
3009 |
3010 | fast-json-stable-stringify@2.1.0: {}
3011 |
3012 | fast-levenshtein@2.0.6: {}
3013 |
3014 | fastq@1.17.1:
3015 | dependencies:
3016 | reusify: 1.0.4
3017 |
3018 | file-entry-cache@6.0.1:
3019 | dependencies:
3020 | flat-cache: 3.2.0
3021 |
3022 | fill-range@7.1.1:
3023 | dependencies:
3024 | to-regex-range: 5.0.1
3025 |
3026 | find-up@5.0.0:
3027 | dependencies:
3028 | locate-path: 6.0.0
3029 | path-exists: 4.0.0
3030 |
3031 | flat-cache@3.2.0:
3032 | dependencies:
3033 | flatted: 3.3.1
3034 | keyv: 4.5.4
3035 | rimraf: 3.0.2
3036 |
3037 | flatted@3.3.1: {}
3038 |
3039 | for-each@0.3.3:
3040 | dependencies:
3041 | is-callable: 1.2.7
3042 |
3043 | foreground-child@3.3.0:
3044 | dependencies:
3045 | cross-spawn: 7.0.5
3046 | signal-exit: 4.1.0
3047 |
3048 | fs.realpath@1.0.0: {}
3049 |
3050 | fsevents@2.3.3:
3051 | optional: true
3052 |
3053 | function-bind@1.1.2: {}
3054 |
3055 | function.prototype.name@1.1.6:
3056 | dependencies:
3057 | call-bind: 1.0.7
3058 | define-properties: 1.2.1
3059 | es-abstract: 1.23.3
3060 | functions-have-names: 1.2.3
3061 |
3062 | functions-have-names@1.2.3: {}
3063 |
3064 | get-intrinsic@1.2.4:
3065 | dependencies:
3066 | es-errors: 1.3.0
3067 | function-bind: 1.1.2
3068 | has-proto: 1.0.3
3069 | has-symbols: 1.0.3
3070 | hasown: 2.0.2
3071 |
3072 | get-symbol-description@1.0.2:
3073 | dependencies:
3074 | call-bind: 1.0.7
3075 | es-errors: 1.3.0
3076 | get-intrinsic: 1.2.4
3077 |
3078 | get-tsconfig@4.8.1:
3079 | dependencies:
3080 | resolve-pkg-maps: 1.0.0
3081 |
3082 | glob-parent@5.1.2:
3083 | dependencies:
3084 | is-glob: 4.0.3
3085 |
3086 | glob-parent@6.0.2:
3087 | dependencies:
3088 | is-glob: 4.0.3
3089 |
3090 | glob@10.4.5:
3091 | dependencies:
3092 | foreground-child: 3.3.0
3093 | jackspeak: 3.4.3
3094 | minimatch: 9.0.5
3095 | minipass: 7.1.2
3096 | package-json-from-dist: 1.0.1
3097 | path-scurry: 1.11.1
3098 |
3099 | glob@7.2.3:
3100 | dependencies:
3101 | fs.realpath: 1.0.0
3102 | inflight: 1.0.6
3103 | inherits: 2.0.4
3104 | minimatch: 3.1.2
3105 | once: 1.4.0
3106 | path-is-absolute: 1.0.1
3107 |
3108 | globals@13.24.0:
3109 | dependencies:
3110 | type-fest: 0.20.2
3111 |
3112 | globalthis@1.0.4:
3113 | dependencies:
3114 | define-properties: 1.2.1
3115 | gopd: 1.0.1
3116 |
3117 | gopd@1.0.1:
3118 | dependencies:
3119 | get-intrinsic: 1.2.4
3120 |
3121 | graceful-fs@4.2.11: {}
3122 |
3123 | graphemer@1.4.0: {}
3124 |
3125 | has-bigints@1.0.2: {}
3126 |
3127 | has-flag@4.0.0: {}
3128 |
3129 | has-property-descriptors@1.0.2:
3130 | dependencies:
3131 | es-define-property: 1.0.0
3132 |
3133 | has-proto@1.0.3: {}
3134 |
3135 | has-symbols@1.0.3: {}
3136 |
3137 | has-tostringtag@1.0.2:
3138 | dependencies:
3139 | has-symbols: 1.0.3
3140 |
3141 | hasown@2.0.2:
3142 | dependencies:
3143 | function-bind: 1.1.2
3144 |
3145 | ignore@5.3.2: {}
3146 |
3147 | import-fresh@3.3.0:
3148 | dependencies:
3149 | parent-module: 1.0.1
3150 | resolve-from: 4.0.0
3151 |
3152 | imurmurhash@0.1.4: {}
3153 |
3154 | inflight@1.0.6:
3155 | dependencies:
3156 | once: 1.4.0
3157 | wrappy: 1.0.2
3158 |
3159 | inherits@2.0.4: {}
3160 |
3161 | internal-slot@1.0.7:
3162 | dependencies:
3163 | es-errors: 1.3.0
3164 | hasown: 2.0.2
3165 | side-channel: 1.0.6
3166 |
3167 | is-array-buffer@3.0.4:
3168 | dependencies:
3169 | call-bind: 1.0.7
3170 | get-intrinsic: 1.2.4
3171 |
3172 | is-arrayish@0.3.2:
3173 | optional: true
3174 |
3175 | is-async-function@2.0.0:
3176 | dependencies:
3177 | has-tostringtag: 1.0.2
3178 |
3179 | is-bigint@1.0.4:
3180 | dependencies:
3181 | has-bigints: 1.0.2
3182 |
3183 | is-binary-path@2.1.0:
3184 | dependencies:
3185 | binary-extensions: 2.3.0
3186 |
3187 | is-boolean-object@1.1.2:
3188 | dependencies:
3189 | call-bind: 1.0.7
3190 | has-tostringtag: 1.0.2
3191 |
3192 | is-bun-module@1.2.1:
3193 | dependencies:
3194 | semver: 7.6.3
3195 |
3196 | is-callable@1.2.7: {}
3197 |
3198 | is-core-module@2.15.1:
3199 | dependencies:
3200 | hasown: 2.0.2
3201 |
3202 | is-data-view@1.0.1:
3203 | dependencies:
3204 | is-typed-array: 1.1.13
3205 |
3206 | is-date-object@1.0.5:
3207 | dependencies:
3208 | has-tostringtag: 1.0.2
3209 |
3210 | is-extglob@2.1.1: {}
3211 |
3212 | is-finalizationregistry@1.0.2:
3213 | dependencies:
3214 | call-bind: 1.0.7
3215 |
3216 | is-fullwidth-code-point@3.0.0: {}
3217 |
3218 | is-generator-function@1.0.10:
3219 | dependencies:
3220 | has-tostringtag: 1.0.2
3221 |
3222 | is-glob@4.0.3:
3223 | dependencies:
3224 | is-extglob: 2.1.1
3225 |
3226 | is-map@2.0.3: {}
3227 |
3228 | is-negative-zero@2.0.3: {}
3229 |
3230 | is-number-object@1.0.7:
3231 | dependencies:
3232 | has-tostringtag: 1.0.2
3233 |
3234 | is-number@7.0.0: {}
3235 |
3236 | is-path-inside@3.0.3: {}
3237 |
3238 | is-regex@1.1.4:
3239 | dependencies:
3240 | call-bind: 1.0.7
3241 | has-tostringtag: 1.0.2
3242 |
3243 | is-set@2.0.3: {}
3244 |
3245 | is-shared-array-buffer@1.0.3:
3246 | dependencies:
3247 | call-bind: 1.0.7
3248 |
3249 | is-string@1.0.7:
3250 | dependencies:
3251 | has-tostringtag: 1.0.2
3252 |
3253 | is-symbol@1.0.4:
3254 | dependencies:
3255 | has-symbols: 1.0.3
3256 |
3257 | is-typed-array@1.1.13:
3258 | dependencies:
3259 | which-typed-array: 1.1.15
3260 |
3261 | is-weakmap@2.0.2: {}
3262 |
3263 | is-weakref@1.0.2:
3264 | dependencies:
3265 | call-bind: 1.0.7
3266 |
3267 | is-weakset@2.0.3:
3268 | dependencies:
3269 | call-bind: 1.0.7
3270 | get-intrinsic: 1.2.4
3271 |
3272 | isarray@2.0.5: {}
3273 |
3274 | isexe@2.0.0: {}
3275 |
3276 | iterator.prototype@1.1.3:
3277 | dependencies:
3278 | define-properties: 1.2.1
3279 | get-intrinsic: 1.2.4
3280 | has-symbols: 1.0.3
3281 | reflect.getprototypeof: 1.0.6
3282 | set-function-name: 2.0.2
3283 |
3284 | jackspeak@3.4.3:
3285 | dependencies:
3286 | '@isaacs/cliui': 8.0.2
3287 | optionalDependencies:
3288 | '@pkgjs/parseargs': 0.11.0
3289 |
3290 | jiti@1.21.6: {}
3291 |
3292 | js-tokens@4.0.0: {}
3293 |
3294 | js-yaml@4.1.0:
3295 | dependencies:
3296 | argparse: 2.0.1
3297 |
3298 | json-buffer@3.0.1: {}
3299 |
3300 | json-schema-traverse@0.4.1: {}
3301 |
3302 | json-stable-stringify-without-jsonify@1.0.1: {}
3303 |
3304 | json5@1.0.2:
3305 | dependencies:
3306 | minimist: 1.2.8
3307 |
3308 | jsx-ast-utils@3.3.5:
3309 | dependencies:
3310 | array-includes: 3.1.8
3311 | array.prototype.flat: 1.3.2
3312 | object.assign: 4.1.5
3313 | object.values: 1.2.0
3314 |
3315 | keyv@4.5.4:
3316 | dependencies:
3317 | json-buffer: 3.0.1
3318 |
3319 | language-subtag-registry@0.3.23: {}
3320 |
3321 | language-tags@1.0.9:
3322 | dependencies:
3323 | language-subtag-registry: 0.3.23
3324 |
3325 | levn@0.4.1:
3326 | dependencies:
3327 | prelude-ls: 1.2.1
3328 | type-check: 0.4.0
3329 |
3330 | lilconfig@2.1.0: {}
3331 |
3332 | lilconfig@3.1.2: {}
3333 |
3334 | lines-and-columns@1.2.4: {}
3335 |
3336 | locate-path@6.0.0:
3337 | dependencies:
3338 | p-locate: 5.0.0
3339 |
3340 | lodash.merge@4.6.2: {}
3341 |
3342 | loose-envify@1.4.0:
3343 | dependencies:
3344 | js-tokens: 4.0.0
3345 |
3346 | lru-cache@10.4.3: {}
3347 |
3348 | lucide-react@0.456.0(react@19.0.0-rc-66855b96-20241106):
3349 | dependencies:
3350 | react: 19.0.0-rc-66855b96-20241106
3351 |
3352 | merge2@1.4.1: {}
3353 |
3354 | micromatch@4.0.8:
3355 | dependencies:
3356 | braces: 3.0.3
3357 | picomatch: 2.3.1
3358 |
3359 | minimatch@3.1.2:
3360 | dependencies:
3361 | brace-expansion: 1.1.11
3362 |
3363 | minimatch@9.0.5:
3364 | dependencies:
3365 | brace-expansion: 2.0.1
3366 |
3367 | minimist@1.2.8: {}
3368 |
3369 | minipass@7.1.2: {}
3370 |
3371 | ms@2.1.3: {}
3372 |
3373 | mz@2.7.0:
3374 | dependencies:
3375 | any-promise: 1.3.0
3376 | object-assign: 4.1.1
3377 | thenify-all: 1.6.0
3378 |
3379 | nanoid@3.3.7: {}
3380 |
3381 | natural-compare@1.4.0: {}
3382 |
3383 | next@15.0.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106):
3384 | dependencies:
3385 | '@next/env': 15.0.3
3386 | '@swc/counter': 0.1.3
3387 | '@swc/helpers': 0.5.13
3388 | busboy: 1.6.0
3389 | caniuse-lite: 1.0.30001679
3390 | postcss: 8.4.31
3391 | react: 19.0.0-rc-66855b96-20241106
3392 | react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
3393 | styled-jsx: 5.1.6(react@19.0.0-rc-66855b96-20241106)
3394 | optionalDependencies:
3395 | '@next/swc-darwin-arm64': 15.0.3
3396 | '@next/swc-darwin-x64': 15.0.3
3397 | '@next/swc-linux-arm64-gnu': 15.0.3
3398 | '@next/swc-linux-arm64-musl': 15.0.3
3399 | '@next/swc-linux-x64-gnu': 15.0.3
3400 | '@next/swc-linux-x64-musl': 15.0.3
3401 | '@next/swc-win32-arm64-msvc': 15.0.3
3402 | '@next/swc-win32-x64-msvc': 15.0.3
3403 | sharp: 0.33.5
3404 | transitivePeerDependencies:
3405 | - '@babel/core'
3406 | - babel-plugin-macros
3407 |
3408 | normalize-path@3.0.0: {}
3409 |
3410 | object-assign@4.1.1: {}
3411 |
3412 | object-hash@3.0.0: {}
3413 |
3414 | object-inspect@1.13.3: {}
3415 |
3416 | object-keys@1.1.1: {}
3417 |
3418 | object.assign@4.1.5:
3419 | dependencies:
3420 | call-bind: 1.0.7
3421 | define-properties: 1.2.1
3422 | has-symbols: 1.0.3
3423 | object-keys: 1.1.1
3424 |
3425 | object.entries@1.1.8:
3426 | dependencies:
3427 | call-bind: 1.0.7
3428 | define-properties: 1.2.1
3429 | es-object-atoms: 1.0.0
3430 |
3431 | object.fromentries@2.0.8:
3432 | dependencies:
3433 | call-bind: 1.0.7
3434 | define-properties: 1.2.1
3435 | es-abstract: 1.23.3
3436 | es-object-atoms: 1.0.0
3437 |
3438 | object.groupby@1.0.3:
3439 | dependencies:
3440 | call-bind: 1.0.7
3441 | define-properties: 1.2.1
3442 | es-abstract: 1.23.3
3443 |
3444 | object.values@1.2.0:
3445 | dependencies:
3446 | call-bind: 1.0.7
3447 | define-properties: 1.2.1
3448 | es-object-atoms: 1.0.0
3449 |
3450 | once@1.4.0:
3451 | dependencies:
3452 | wrappy: 1.0.2
3453 |
3454 | optionator@0.9.4:
3455 | dependencies:
3456 | deep-is: 0.1.4
3457 | fast-levenshtein: 2.0.6
3458 | levn: 0.4.1
3459 | prelude-ls: 1.2.1
3460 | type-check: 0.4.0
3461 | word-wrap: 1.2.5
3462 |
3463 | p-limit@3.1.0:
3464 | dependencies:
3465 | yocto-queue: 0.1.0
3466 |
3467 | p-locate@5.0.0:
3468 | dependencies:
3469 | p-limit: 3.1.0
3470 |
3471 | package-json-from-dist@1.0.1: {}
3472 |
3473 | parent-module@1.0.1:
3474 | dependencies:
3475 | callsites: 3.1.0
3476 |
3477 | path-exists@4.0.0: {}
3478 |
3479 | path-is-absolute@1.0.1: {}
3480 |
3481 | path-key@3.1.1: {}
3482 |
3483 | path-parse@1.0.7: {}
3484 |
3485 | path-scurry@1.11.1:
3486 | dependencies:
3487 | lru-cache: 10.4.3
3488 | minipass: 7.1.2
3489 |
3490 | picocolors@1.1.1: {}
3491 |
3492 | picomatch@2.3.1: {}
3493 |
3494 | pify@2.3.0: {}
3495 |
3496 | pirates@4.0.6: {}
3497 |
3498 | possible-typed-array-names@1.0.0: {}
3499 |
3500 | postcss-import@15.1.0(postcss@8.4.47):
3501 | dependencies:
3502 | postcss: 8.4.47
3503 | postcss-value-parser: 4.2.0
3504 | read-cache: 1.0.0
3505 | resolve: 1.22.8
3506 |
3507 | postcss-js@4.0.1(postcss@8.4.47):
3508 | dependencies:
3509 | camelcase-css: 2.0.1
3510 | postcss: 8.4.47
3511 |
3512 | postcss-load-config@4.0.2(postcss@8.4.47):
3513 | dependencies:
3514 | lilconfig: 3.1.2
3515 | yaml: 2.6.0
3516 | optionalDependencies:
3517 | postcss: 8.4.47
3518 |
3519 | postcss-nested@6.2.0(postcss@8.4.47):
3520 | dependencies:
3521 | postcss: 8.4.47
3522 | postcss-selector-parser: 6.1.2
3523 |
3524 | postcss-selector-parser@6.1.2:
3525 | dependencies:
3526 | cssesc: 3.0.0
3527 | util-deprecate: 1.0.2
3528 |
3529 | postcss-value-parser@4.2.0: {}
3530 |
3531 | postcss@8.4.31:
3532 | dependencies:
3533 | nanoid: 3.3.7
3534 | picocolors: 1.1.1
3535 | source-map-js: 1.2.1
3536 |
3537 | postcss@8.4.47:
3538 | dependencies:
3539 | nanoid: 3.3.7
3540 | picocolors: 1.1.1
3541 | source-map-js: 1.2.1
3542 |
3543 | prelude-ls@1.2.1: {}
3544 |
3545 | prop-types@15.8.1:
3546 | dependencies:
3547 | loose-envify: 1.4.0
3548 | object-assign: 4.1.1
3549 | react-is: 16.13.1
3550 |
3551 | punycode@2.3.1: {}
3552 |
3553 | queue-microtask@1.2.3: {}
3554 |
3555 | react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106):
3556 | dependencies:
3557 | react: 19.0.0-rc-66855b96-20241106
3558 | scheduler: 0.25.0-rc-66855b96-20241106
3559 |
3560 | react-is@16.13.1: {}
3561 |
3562 | react@19.0.0-rc-66855b96-20241106: {}
3563 |
3564 | read-cache@1.0.0:
3565 | dependencies:
3566 | pify: 2.3.0
3567 |
3568 | readdirp@3.6.0:
3569 | dependencies:
3570 | picomatch: 2.3.1
3571 |
3572 | reflect.getprototypeof@1.0.6:
3573 | dependencies:
3574 | call-bind: 1.0.7
3575 | define-properties: 1.2.1
3576 | es-abstract: 1.23.3
3577 | es-errors: 1.3.0
3578 | get-intrinsic: 1.2.4
3579 | globalthis: 1.0.4
3580 | which-builtin-type: 1.1.4
3581 |
3582 | regexp.prototype.flags@1.5.3:
3583 | dependencies:
3584 | call-bind: 1.0.7
3585 | define-properties: 1.2.1
3586 | es-errors: 1.3.0
3587 | set-function-name: 2.0.2
3588 |
3589 | resolve-from@4.0.0: {}
3590 |
3591 | resolve-pkg-maps@1.0.0: {}
3592 |
3593 | resolve@1.22.8:
3594 | dependencies:
3595 | is-core-module: 2.15.1
3596 | path-parse: 1.0.7
3597 | supports-preserve-symlinks-flag: 1.0.0
3598 |
3599 | resolve@2.0.0-next.5:
3600 | dependencies:
3601 | is-core-module: 2.15.1
3602 | path-parse: 1.0.7
3603 | supports-preserve-symlinks-flag: 1.0.0
3604 |
3605 | reusify@1.0.4: {}
3606 |
3607 | rimraf@3.0.2:
3608 | dependencies:
3609 | glob: 7.2.3
3610 |
3611 | run-parallel@1.2.0:
3612 | dependencies:
3613 | queue-microtask: 1.2.3
3614 |
3615 | safe-array-concat@1.1.2:
3616 | dependencies:
3617 | call-bind: 1.0.7
3618 | get-intrinsic: 1.2.4
3619 | has-symbols: 1.0.3
3620 | isarray: 2.0.5
3621 |
3622 | safe-regex-test@1.0.3:
3623 | dependencies:
3624 | call-bind: 1.0.7
3625 | es-errors: 1.3.0
3626 | is-regex: 1.1.4
3627 |
3628 | scheduler@0.25.0-rc-66855b96-20241106: {}
3629 |
3630 | semver@6.3.1: {}
3631 |
3632 | semver@7.6.3: {}
3633 |
3634 | set-function-length@1.2.2:
3635 | dependencies:
3636 | define-data-property: 1.1.4
3637 | es-errors: 1.3.0
3638 | function-bind: 1.1.2
3639 | get-intrinsic: 1.2.4
3640 | gopd: 1.0.1
3641 | has-property-descriptors: 1.0.2
3642 |
3643 | set-function-name@2.0.2:
3644 | dependencies:
3645 | define-data-property: 1.1.4
3646 | es-errors: 1.3.0
3647 | functions-have-names: 1.2.3
3648 | has-property-descriptors: 1.0.2
3649 |
3650 | sharp@0.33.5:
3651 | dependencies:
3652 | color: 4.2.3
3653 | detect-libc: 2.0.3
3654 | semver: 7.6.3
3655 | optionalDependencies:
3656 | '@img/sharp-darwin-arm64': 0.33.5
3657 | '@img/sharp-darwin-x64': 0.33.5
3658 | '@img/sharp-libvips-darwin-arm64': 1.0.4
3659 | '@img/sharp-libvips-darwin-x64': 1.0.4
3660 | '@img/sharp-libvips-linux-arm': 1.0.5
3661 | '@img/sharp-libvips-linux-arm64': 1.0.4
3662 | '@img/sharp-libvips-linux-s390x': 1.0.4
3663 | '@img/sharp-libvips-linux-x64': 1.0.4
3664 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
3665 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4
3666 | '@img/sharp-linux-arm': 0.33.5
3667 | '@img/sharp-linux-arm64': 0.33.5
3668 | '@img/sharp-linux-s390x': 0.33.5
3669 | '@img/sharp-linux-x64': 0.33.5
3670 | '@img/sharp-linuxmusl-arm64': 0.33.5
3671 | '@img/sharp-linuxmusl-x64': 0.33.5
3672 | '@img/sharp-wasm32': 0.33.5
3673 | '@img/sharp-win32-ia32': 0.33.5
3674 | '@img/sharp-win32-x64': 0.33.5
3675 | optional: true
3676 |
3677 | shebang-command@2.0.0:
3678 | dependencies:
3679 | shebang-regex: 3.0.0
3680 |
3681 | shebang-regex@3.0.0: {}
3682 |
3683 | side-channel@1.0.6:
3684 | dependencies:
3685 | call-bind: 1.0.7
3686 | es-errors: 1.3.0
3687 | get-intrinsic: 1.2.4
3688 | object-inspect: 1.13.3
3689 |
3690 | signal-exit@4.1.0: {}
3691 |
3692 | simple-swizzle@0.2.2:
3693 | dependencies:
3694 | is-arrayish: 0.3.2
3695 | optional: true
3696 |
3697 | source-map-js@1.2.1: {}
3698 |
3699 | streamsearch@1.1.0: {}
3700 |
3701 | string-width@4.2.3:
3702 | dependencies:
3703 | emoji-regex: 8.0.0
3704 | is-fullwidth-code-point: 3.0.0
3705 | strip-ansi: 6.0.1
3706 |
3707 | string-width@5.1.2:
3708 | dependencies:
3709 | eastasianwidth: 0.2.0
3710 | emoji-regex: 9.2.2
3711 | strip-ansi: 7.1.0
3712 |
3713 | string.prototype.includes@2.0.1:
3714 | dependencies:
3715 | call-bind: 1.0.7
3716 | define-properties: 1.2.1
3717 | es-abstract: 1.23.3
3718 |
3719 | string.prototype.matchall@4.0.11:
3720 | dependencies:
3721 | call-bind: 1.0.7
3722 | define-properties: 1.2.1
3723 | es-abstract: 1.23.3
3724 | es-errors: 1.3.0
3725 | es-object-atoms: 1.0.0
3726 | get-intrinsic: 1.2.4
3727 | gopd: 1.0.1
3728 | has-symbols: 1.0.3
3729 | internal-slot: 1.0.7
3730 | regexp.prototype.flags: 1.5.3
3731 | set-function-name: 2.0.2
3732 | side-channel: 1.0.6
3733 |
3734 | string.prototype.repeat@1.0.0:
3735 | dependencies:
3736 | define-properties: 1.2.1
3737 | es-abstract: 1.23.3
3738 |
3739 | string.prototype.trim@1.2.9:
3740 | dependencies:
3741 | call-bind: 1.0.7
3742 | define-properties: 1.2.1
3743 | es-abstract: 1.23.3
3744 | es-object-atoms: 1.0.0
3745 |
3746 | string.prototype.trimend@1.0.8:
3747 | dependencies:
3748 | call-bind: 1.0.7
3749 | define-properties: 1.2.1
3750 | es-object-atoms: 1.0.0
3751 |
3752 | string.prototype.trimstart@1.0.8:
3753 | dependencies:
3754 | call-bind: 1.0.7
3755 | define-properties: 1.2.1
3756 | es-object-atoms: 1.0.0
3757 |
3758 | strip-ansi@6.0.1:
3759 | dependencies:
3760 | ansi-regex: 5.0.1
3761 |
3762 | strip-ansi@7.1.0:
3763 | dependencies:
3764 | ansi-regex: 6.1.0
3765 |
3766 | strip-bom@3.0.0: {}
3767 |
3768 | strip-json-comments@3.1.1: {}
3769 |
3770 | styled-jsx@5.1.6(react@19.0.0-rc-66855b96-20241106):
3771 | dependencies:
3772 | client-only: 0.0.1
3773 | react: 19.0.0-rc-66855b96-20241106
3774 |
3775 | sucrase@3.35.0:
3776 | dependencies:
3777 | '@jridgewell/gen-mapping': 0.3.5
3778 | commander: 4.1.1
3779 | glob: 10.4.5
3780 | lines-and-columns: 1.2.4
3781 | mz: 2.7.0
3782 | pirates: 4.0.6
3783 | ts-interface-checker: 0.1.13
3784 |
3785 | supports-color@7.2.0:
3786 | dependencies:
3787 | has-flag: 4.0.0
3788 |
3789 | supports-preserve-symlinks-flag@1.0.0: {}
3790 |
3791 | tailwind-merge@2.5.4: {}
3792 |
3793 | tailwindcss-animate@1.0.7(tailwindcss@3.4.14):
3794 | dependencies:
3795 | tailwindcss: 3.4.14
3796 |
3797 | tailwindcss-radix-colors@1.4.1(tailwindcss@3.4.14):
3798 | dependencies:
3799 | '@radix-ui/colors': 3.0.0
3800 | tailwindcss: 3.4.14
3801 |
3802 | tailwindcss@3.4.14:
3803 | dependencies:
3804 | '@alloc/quick-lru': 5.2.0
3805 | arg: 5.0.2
3806 | chokidar: 3.6.0
3807 | didyoumean: 1.2.2
3808 | dlv: 1.1.3
3809 | fast-glob: 3.3.2
3810 | glob-parent: 6.0.2
3811 | is-glob: 4.0.3
3812 | jiti: 1.21.6
3813 | lilconfig: 2.1.0
3814 | micromatch: 4.0.8
3815 | normalize-path: 3.0.0
3816 | object-hash: 3.0.0
3817 | picocolors: 1.1.1
3818 | postcss: 8.4.47
3819 | postcss-import: 15.1.0(postcss@8.4.47)
3820 | postcss-js: 4.0.1(postcss@8.4.47)
3821 | postcss-load-config: 4.0.2(postcss@8.4.47)
3822 | postcss-nested: 6.2.0(postcss@8.4.47)
3823 | postcss-selector-parser: 6.1.2
3824 | resolve: 1.22.8
3825 | sucrase: 3.35.0
3826 | transitivePeerDependencies:
3827 | - ts-node
3828 |
3829 | tapable@2.2.1: {}
3830 |
3831 | text-table@0.2.0: {}
3832 |
3833 | thenify-all@1.6.0:
3834 | dependencies:
3835 | thenify: 3.3.1
3836 |
3837 | thenify@3.3.1:
3838 | dependencies:
3839 | any-promise: 1.3.0
3840 |
3841 | to-regex-range@5.0.1:
3842 | dependencies:
3843 | is-number: 7.0.0
3844 |
3845 | ts-api-utils@1.4.0(typescript@5.6.3):
3846 | dependencies:
3847 | typescript: 5.6.3
3848 |
3849 | ts-interface-checker@0.1.13: {}
3850 |
3851 | tsconfig-paths@3.15.0:
3852 | dependencies:
3853 | '@types/json5': 0.0.29
3854 | json5: 1.0.2
3855 | minimist: 1.2.8
3856 | strip-bom: 3.0.0
3857 |
3858 | tslib@2.8.1: {}
3859 |
3860 | type-check@0.4.0:
3861 | dependencies:
3862 | prelude-ls: 1.2.1
3863 |
3864 | type-fest@0.20.2: {}
3865 |
3866 | typed-array-buffer@1.0.2:
3867 | dependencies:
3868 | call-bind: 1.0.7
3869 | es-errors: 1.3.0
3870 | is-typed-array: 1.1.13
3871 |
3872 | typed-array-byte-length@1.0.1:
3873 | dependencies:
3874 | call-bind: 1.0.7
3875 | for-each: 0.3.3
3876 | gopd: 1.0.1
3877 | has-proto: 1.0.3
3878 | is-typed-array: 1.1.13
3879 |
3880 | typed-array-byte-offset@1.0.2:
3881 | dependencies:
3882 | available-typed-arrays: 1.0.7
3883 | call-bind: 1.0.7
3884 | for-each: 0.3.3
3885 | gopd: 1.0.1
3886 | has-proto: 1.0.3
3887 | is-typed-array: 1.1.13
3888 |
3889 | typed-array-length@1.0.6:
3890 | dependencies:
3891 | call-bind: 1.0.7
3892 | for-each: 0.3.3
3893 | gopd: 1.0.1
3894 | has-proto: 1.0.3
3895 | is-typed-array: 1.1.13
3896 | possible-typed-array-names: 1.0.0
3897 |
3898 | typescript@5.6.3: {}
3899 |
3900 | unbox-primitive@1.0.2:
3901 | dependencies:
3902 | call-bind: 1.0.7
3903 | has-bigints: 1.0.2
3904 | has-symbols: 1.0.3
3905 | which-boxed-primitive: 1.0.2
3906 |
3907 | undici-types@6.19.8: {}
3908 |
3909 | uri-js@4.4.1:
3910 | dependencies:
3911 | punycode: 2.3.1
3912 |
3913 | util-deprecate@1.0.2: {}
3914 |
3915 | which-boxed-primitive@1.0.2:
3916 | dependencies:
3917 | is-bigint: 1.0.4
3918 | is-boolean-object: 1.1.2
3919 | is-number-object: 1.0.7
3920 | is-string: 1.0.7
3921 | is-symbol: 1.0.4
3922 |
3923 | which-builtin-type@1.1.4:
3924 | dependencies:
3925 | function.prototype.name: 1.1.6
3926 | has-tostringtag: 1.0.2
3927 | is-async-function: 2.0.0
3928 | is-date-object: 1.0.5
3929 | is-finalizationregistry: 1.0.2
3930 | is-generator-function: 1.0.10
3931 | is-regex: 1.1.4
3932 | is-weakref: 1.0.2
3933 | isarray: 2.0.5
3934 | which-boxed-primitive: 1.0.2
3935 | which-collection: 1.0.2
3936 | which-typed-array: 1.1.15
3937 |
3938 | which-collection@1.0.2:
3939 | dependencies:
3940 | is-map: 2.0.3
3941 | is-set: 2.0.3
3942 | is-weakmap: 2.0.2
3943 | is-weakset: 2.0.3
3944 |
3945 | which-typed-array@1.1.15:
3946 | dependencies:
3947 | available-typed-arrays: 1.0.7
3948 | call-bind: 1.0.7
3949 | for-each: 0.3.3
3950 | gopd: 1.0.1
3951 | has-tostringtag: 1.0.2
3952 |
3953 | which@2.0.2:
3954 | dependencies:
3955 | isexe: 2.0.0
3956 |
3957 | word-wrap@1.2.5: {}
3958 |
3959 | wrap-ansi@7.0.0:
3960 | dependencies:
3961 | ansi-styles: 4.3.0
3962 | string-width: 4.2.3
3963 | strip-ansi: 6.0.1
3964 |
3965 | wrap-ansi@8.1.0:
3966 | dependencies:
3967 | ansi-styles: 6.2.1
3968 | string-width: 5.1.2
3969 | strip-ansi: 7.1.0
3970 |
3971 | wrappy@1.0.2: {}
3972 |
3973 | yaml@2.6.0: {}
3974 |
3975 | yocto-queue@0.1.0: {}
3976 |
--------------------------------------------------------------------------------