+46
AGENTS.md
+46
AGENTS.md
···
1
+
# Repository Guidelines
2
+
3
+
## Project Structure & Module Organization
4
+
5
+
- `app/`: Next.js App Router pages, layouts, and route handlers (API under `app/api/*`).
6
+
- `components/`: Shared React components (design-system primitives in `components/ui/`).
7
+
- `lib/`: Core application logic (DB access, GitHub integrations, services, shared utilities).
8
+
- `hooks/`: Reusable React hooks (naming pattern: `use-*.ts(x)`).
9
+
- `__tests__/`: Jest tests (`__tests__/lib` for unit-ish logic, `__tests__/api` for route-handler coverage).
10
+
- `migrations/`: SQL migration files (ordered `00x_*.sql`).
11
+
- `scripts/`: One-off Node scripts (e.g. `scripts/generate-mock-data.js`).
12
+
- `public/`: Static assets served by Next.js.
13
+
14
+
## Build, Test, and Development Commands
15
+
16
+
- `pnpm install`: Install dependencies (pnpm is the expected package manager).
17
+
- `pnpm dev`: Run local dev server (Next.js with Turbopack).
18
+
- `pnpm build` / `pnpm start`: Production build and local production server.
19
+
- `pnpm lint`: Run ESLint across the repo.
20
+
- `pnpm test`: Run the full Jest suite.
21
+
- `pnpm test:watch`: Watch mode for local iteration.
22
+
- `pnpm test:unit` / `pnpm test:integration`: Narrow runs for `__tests__/lib` and `__tests__/api`.
23
+
- `pnpm test:ci`: CI-style run with coverage enabled.
24
+
25
+
## Coding Style & Naming Conventions
26
+
27
+
- TypeScript is in `strict` mode; prefer explicit types at module boundaries and for public helpers in `lib/`.
28
+
- Use the path alias `@/…` for internal imports (configured in `tsconfig.json`).
29
+
- Keep components in PascalCase and hooks in the `use-*.ts(x)` pattern; colocate component-specific helpers nearby.
30
+
- Treat `pnpm-lock.yaml` as authoritative; update it only via `pnpm`.
31
+
32
+
## Testing Guidelines
33
+
34
+
- Jest + `next/jest` with `jsdom`; tests live under `__tests__/` and use `*.test.ts(x)`.
35
+
- Global coverage thresholds are enforced (see `jest.config.js`); include tests for new logic and bug fixes.
36
+
37
+
## Commit & Pull Request Guidelines
38
+
39
+
- Commit messages in history are short and topic-focused (e.g. “cleanup”, “db optimizations”); prefer an imperative summary and add an optional scope when helpful (`auth: …`, `db: …`).
40
+
- PRs should be small and atomic, include a clear description, and add screenshots for UI changes; run `pnpm lint` and relevant `pnpm test:*` commands before requesting review.
41
+
42
+
## Configuration & Security Tips
43
+
44
+
- Create local config via `cp environment.example .env.local` (see `ENVIRONMENT_SETUP.md` for GitHub/Turso details).
45
+
- For a fresh Turso database in development, initialize schema via `curl -X POST http://localhost:3000/api/migrate`.
46
+
- Never commit secrets or private keys; avoid logging raw tokens, webhook secrets, or JWT material.
+1
-1
app/api/categories/[categoryId]/route.ts
+1
-1
app/api/categories/[categoryId]/route.ts
···
62
62
// Validate request body with zod
63
63
const validationResult = updateCategorySchema.safeParse(body);
64
64
if (!validationResult.success) {
65
-
const errors = validationResult.error.errors.map(err => `${err.path.join('.')}: ${err.message}`);
65
+
const errors = validationResult.error.issues.map(err => `${err.path.join('.')}: ${err.message}`);
66
66
return NextResponse.json({
67
67
error: 'Validation failed',
68
68
details: errors
+1
-1
app/api/organizations/[orgId]/ai-settings/route.ts
+1
-1
app/api/organizations/[orgId]/ai-settings/route.ts
···
51
51
52
52
const body = await request.json();
53
53
const validationResult = updateAiSettingsSchema.safeParse(body);
54
-
if (!validationResult.success) throw badRequest('Validation failed', validationResult.error.flatten());
54
+
if (!validationResult.success) throw badRequest('Validation failed', z.treeifyError(validationResult.error));
55
55
56
56
await AiSettingsService.update(session.user.id, numericOrgId, validationResult.data);
57
57
return NextResponse.json({ message: 'AI settings updated successfully' });
+1
-1
app/api/organizations/[orgId]/categories/route.ts
+1
-1
app/api/organizations/[orgId]/categories/route.ts
···
51
51
52
52
// Validate request body with zod
53
53
const validationResult = createCategorySchema.safeParse(body);
54
-
if (!validationResult.success) throw badRequest('Validation failed', validationResult.error.flatten());
54
+
if (!validationResult.success) throw badRequest('Validation failed', z.treeifyError(validationResult.error));
55
55
56
56
const { name, description, color } = validationResult.data;
57
57
+3
-3
app/api/organizations/[orgId]/teams/[teamId]/members/route.ts
+3
-3
app/api/organizations/[orgId]/teams/[teamId]/members/route.ts
···
40
40
// POST - Add a team member
41
41
const addMemberSchema = z.object({
42
42
user_id: z.string().min(1, "User ID is required"),
43
-
role: z.enum(['member', 'lead', 'admin']).optional().default('member')
43
+
role: z.enum(['member', 'lead', 'admin']).optional().prefault('member')
44
44
});
45
45
46
46
export async function POST(
···
63
63
64
64
// Validate request body with zod
65
65
const validationResult = addMemberSchema.safeParse(body);
66
-
if (!validationResult.success) throw badRequest('Validation failed', validationResult.error.flatten());
66
+
if (!validationResult.success) throw badRequest('Validation failed', z.treeifyError(validationResult.error));
67
67
68
68
const { user_id, role } = validationResult.data;
69
69
···
106
106
// Validate request body with zod
107
107
const validationResult = updateMemberSchema.safeParse(body);
108
108
if (!validationResult.success) {
109
-
const errors = validationResult.error.errors.map(err => `${err.path.join('.')}: ${err.message}`);
109
+
const errors = validationResult.error.issues.map(err => `${err.path.join('.')}: ${err.message}`);
110
110
return NextResponse.json({
111
111
error: 'Validation failed',
112
112
details: errors
+1
-1
app/api/organizations/[orgId]/teams/[teamId]/route.ts
+1
-1
app/api/organizations/[orgId]/teams/[teamId]/route.ts
···
130
130
// Validate request body with zod
131
131
const validationResult = updateTeamSchema.safeParse(body);
132
132
if (!validationResult.success) {
133
-
const errors = validationResult.error.errors.map(err => `${err.path.join('.')}: ${err.message}`);
133
+
const errors = validationResult.error.issues.map(err => `${err.path.join('.')}: ${err.message}`);
134
134
return NextResponse.json({
135
135
error: 'Validation failed',
136
136
details: errors
+1
-1
app/api/organizations/[orgId]/teams/route.ts
+1
-1
app/api/organizations/[orgId]/teams/route.ts
···
98
98
99
99
// Validate request body with zod
100
100
const validationResult = createTeamSchema.safeParse(body);
101
-
if (!validationResult.success) throw badRequest('Validation failed', validationResult.error.flatten());
101
+
if (!validationResult.success) throw badRequest('Validation failed', z.treeifyError(validationResult.error));
102
102
103
103
const { name, description, color } = validationResult.data;
104
104
+7
-2
components/ui/chart.tsx
+7
-2
components/ui/chart.tsx
···
118
118
color,
119
119
nameKey,
120
120
labelKey,
121
-
}: React.ComponentProps<typeof RechartsPrimitive.Tooltip> &
121
+
}: Partial<RechartsPrimitive.TooltipContentProps<any, any>> &
122
122
React.ComponentProps<"div"> & {
123
123
hideLabel?: boolean
124
124
hideIndicator?: boolean
···
257
257
verticalAlign = "bottom",
258
258
nameKey,
259
259
}: React.ComponentProps<"div"> &
260
-
Pick<RechartsPrimitive.LegendProps, "payload" | "verticalAlign"> & {
260
+
Partial<
261
+
Pick<
262
+
RechartsPrimitive.DefaultLegendContentProps,
263
+
"payload" | "verticalAlign"
264
+
>
265
+
> & {
261
266
hideIcon?: boolean
262
267
nameKey?: string
263
268
}) {
+3
-3
components/ui/logo.tsx
+3
-3
components/ui/logo.tsx
···
2
2
3
3
import { cn } from "@/lib/utils";
4
4
import React from "react";
5
-
import { motion } from "framer-motion";
5
+
import { motion, type Variants } from "framer-motion";
6
6
7
7
interface LogoProps {
8
8
className?: string;
···
22
22
opacity: { duration: 0.3 }
23
23
}
24
24
}
25
-
};
25
+
} as const satisfies Variants;
26
26
27
27
return (
28
28
<div className={cn("relative inline-block", className)}>
···
59
59
</svg>
60
60
</div>
61
61
);
62
-
}
62
+
}
+5
-8
eslint.config.mjs
+5
-8
eslint.config.mjs
···
1
+
import nextCoreWebVitals from "eslint-config-next/core-web-vitals";
2
+
import nextTypescript from "eslint-config-next/typescript";
1
3
import { dirname } from "path";
2
4
import { fileURLToPath } from "url";
3
-
import { FlatCompat } from "@eslint/eslintrc";
4
5
5
6
const __filename = fileURLToPath(import.meta.url);
6
7
const __dirname = dirname(__filename);
7
8
8
-
const compat = new FlatCompat({
9
-
baseDirectory: __dirname,
10
-
});
11
-
12
-
const eslintConfig = [
13
-
...compat.extends("next/core-web-vitals", "next/typescript"),
14
-
];
9
+
const eslintConfig = [...nextCoreWebVitals, ...nextTypescript, {
10
+
ignores: ["node_modules/**", ".next/**", "out/**", "build/**", "next-env.d.ts"]
11
+
}];
15
12
16
13
export default eslintConfig;
+8
-8
lib/env-validation.ts
+8
-8
lib/env-validation.ts
···
3
3
// Define the environment schema
4
4
const envSchema = z.object({
5
5
// Database (optional for demo mode)
6
-
TURSO_URL: z.string().url().optional(),
6
+
TURSO_URL: z.url().optional(),
7
7
TURSO_TOKEN: z.string().optional(),
8
8
TURSO_POOL_SIZE: z.string().regex(/^\d+$/).optional(),
9
9
···
19
19
NEXT_PUBLIC_GITHUB_APP_SLUG: z.string().optional(),
20
20
21
21
// NextAuth
22
-
NEXTAUTH_URL: z.string().url().optional(),
22
+
NEXTAUTH_URL: z.url().optional(),
23
23
NEXTAUTH_SECRET: z.string().min(32, "NEXTAUTH_SECRET must be at least 32 characters").optional(),
24
24
25
25
// App Configuration
26
-
APP_URL: z.string().url().optional(),
27
-
NODE_ENV: z.enum(['development', 'test', 'production']).default('development'),
28
-
PORT: z.string().regex(/^\d+$/).transform(Number).default('3000'),
26
+
APP_URL: z.url().optional(),
27
+
NODE_ENV: z.enum(['development', 'test', 'production']).prefault('development'),
28
+
PORT: z.string().regex(/^\d+$/).transform(Number).prefault('3000'),
29
29
30
30
// AI Configuration (optional)
31
31
AI_PROVIDER: z.enum(['openai', 'anthropic', 'google', 'none']).optional(),
···
79
79
return envSchema.parse(processedEnv);
80
80
} catch (error) {
81
81
if (error instanceof z.ZodError) {
82
-
const missingVars = error.errors.map(err => err.path.join('.')).join(', ');
82
+
const missingVars = error.issues.map(err => err.path.join('.')).join(', ');
83
83
console.error('❌ Environment validation failed:');
84
84
console.error(`Missing or invalid variables: ${missingVars}`);
85
-
error.errors.forEach(err => {
85
+
error.issues.forEach(err => {
86
86
console.error(` - ${err.path.join('.')}: ${err.message}`);
87
87
});
88
88
···
101
101
}
102
102
103
103
// Export validated environment variables
104
-
export const env = validateEnv();
104
+
export const env = validateEnv();
+1
-1
middleware.ts
proxy.ts
+1
-1
middleware.ts
proxy.ts
···
5
5
// This is supplementary to Vercel's platform-level rate limiting
6
6
const requestCounts = new Map<string, { count: number; resetTime: number }>();
7
7
8
-
export async function middleware(request: NextRequest) {
8
+
export async function proxy(request: NextRequest) {
9
9
// Only apply to API routes
10
10
if (!request.nextUrl.pathname.startsWith('/api/')) {
11
11
return NextResponse.next();
+54
-56
package.json
+54
-56
package.json
···
6
6
"dev": "next dev --turbopack",
7
7
"build": "NODE_OPTIONS=--no-warnings next build",
8
8
"start": "next start",
9
-
"lint": "next lint",
9
+
"lint": "eslint .",
10
10
"test": "jest",
11
11
"test:watch": "jest --watch",
12
12
"test:coverage": "jest --coverage",
···
16
16
"generate-mock-data": "node scripts/generate-mock-data.js"
17
17
},
18
18
"dependencies": {
19
-
"@ai-sdk/anthropic": "^1.2.11",
20
-
"@ai-sdk/google": "^1.2.17",
21
-
"@ai-sdk/openai": "^1.3.22",
19
+
"@ai-sdk/anthropic": "^2.0.56",
20
+
"@ai-sdk/google": "^2.0.47",
21
+
"@ai-sdk/openai": "^2.0.87",
22
22
"@dnd-kit/core": "^6.3.1",
23
23
"@dnd-kit/modifiers": "^9.0.0",
24
24
"@dnd-kit/sortable": "^10.0.0",
25
25
"@dnd-kit/utilities": "^3.2.2",
26
-
"@libsql/client": "^0.15.5",
27
-
"@octokit/rest": "^21.1.1",
28
-
"@radix-ui/react-accordion": "^1.2.10",
29
-
"@radix-ui/react-alert-dialog": "^1.1.14",
30
-
"@radix-ui/react-avatar": "^1.1.7",
31
-
"@radix-ui/react-checkbox": "^1.2.3",
32
-
"@radix-ui/react-dialog": "^1.1.11",
33
-
"@radix-ui/react-dropdown-menu": "^2.1.12",
34
-
"@radix-ui/react-label": "^2.1.4",
35
-
"@radix-ui/react-popover": "^1.1.11",
36
-
"@radix-ui/react-progress": "^1.1.4",
37
-
"@radix-ui/react-select": "^2.2.2",
38
-
"@radix-ui/react-separator": "^1.1.4",
39
-
"@radix-ui/react-slider": "^1.3.5",
40
-
"@radix-ui/react-slot": "^1.2.0",
41
-
"@radix-ui/react-switch": "^1.2.2",
42
-
"@radix-ui/react-tabs": "^1.1.9",
43
-
"@radix-ui/react-toggle": "^1.1.6",
44
-
"@radix-ui/react-toggle-group": "^1.1.7",
45
-
"@radix-ui/react-tooltip": "^1.2.4",
46
-
"@tabler/icons-react": "^3.31.0",
26
+
"@libsql/client": "^0.15.15",
27
+
"@octokit/rest": "^22.0.1",
28
+
"@radix-ui/react-accordion": "^1.2.12",
29
+
"@radix-ui/react-alert-dialog": "^1.1.15",
30
+
"@radix-ui/react-avatar": "^1.1.11",
31
+
"@radix-ui/react-checkbox": "^1.3.3",
32
+
"@radix-ui/react-dialog": "^1.1.15",
33
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
34
+
"@radix-ui/react-label": "^2.1.8",
35
+
"@radix-ui/react-popover": "^1.1.15",
36
+
"@radix-ui/react-progress": "^1.1.8",
37
+
"@radix-ui/react-select": "^2.2.6",
38
+
"@radix-ui/react-separator": "^1.1.8",
39
+
"@radix-ui/react-slider": "^1.3.6",
40
+
"@radix-ui/react-slot": "^1.2.4",
41
+
"@radix-ui/react-switch": "^1.2.6",
42
+
"@radix-ui/react-tabs": "^1.1.13",
43
+
"@radix-ui/react-toggle": "^1.1.10",
44
+
"@radix-ui/react-toggle-group": "^1.1.11",
45
+
"@radix-ui/react-tooltip": "^1.2.8",
46
+
"@tabler/icons-react": "^3.36.0",
47
47
"@tanstack/react-table": "^8.21.3",
48
-
"@types/jsonwebtoken": "^9.0.9",
49
-
"ai": "^4.3.15",
50
-
48
+
"@types/jsonwebtoken": "^9.0.10",
49
+
"ai": "^5.0.113",
51
50
"class-variance-authority": "^0.7.1",
52
51
"clsx": "^2.1.1",
53
52
"cmdk": "^1.1.1",
54
53
"date-fns": "^4.1.0",
55
-
"framer-motion": "^12.9.7",
56
-
"jsonwebtoken": "^9.0.2",
57
-
"lucide-react": "^0.503.0",
58
-
"motion": "^12.23.12",
59
-
"next": "15.4.6",
54
+
"framer-motion": "^12.23.26",
55
+
"jsonwebtoken": "^9.0.3",
56
+
"lucide-react": "^0.561.0",
57
+
"motion": "^12.23.26",
58
+
"next": "16.0.10",
60
59
"next-auth": "5.0.0-beta.29",
61
60
"next-themes": "^0.4.6",
62
-
"react": "19.1.1",
63
-
"react-day-picker": "9.9.0",
64
-
"react-dom": "19.1.1",
65
-
"recharts": "^2.15.3",
66
-
"sonner": "^2.0.3",
67
-
"swr": "^2.3.3",
68
-
"tailwind-merge": "^3.2.0",
61
+
"react": "19.2.3",
62
+
"react-day-picker": "9.12.0",
63
+
"react-dom": "19.2.3",
64
+
"recharts": "^3.6.0",
65
+
"sonner": "^2.0.7",
66
+
"swr": "^2.3.8",
67
+
"tailwind-merge": "^3.4.0",
69
68
"vaul": "^1.1.2",
70
-
"zod": "^3.24.3"
69
+
"zod": "^4.2.1"
71
70
},
72
71
"devDependencies": {
73
-
"@eslint/eslintrc": "^3",
74
72
"@swc/jest": "^0.2.39",
75
-
"@tailwindcss/postcss": "^4.1.11",
76
-
"@testing-library/jest-dom": "^6.6.4",
77
-
"@testing-library/react": "^16.3.0",
73
+
"@tailwindcss/postcss": "^4.1.18",
74
+
"@testing-library/jest-dom": "^6.9.1",
75
+
"@testing-library/react": "^16.3.1",
78
76
"@testing-library/user-event": "^14.6.1",
79
77
"@types/jest": "^30.0.0",
80
-
"@types/node": "^20",
81
-
"@types/react": "19.1.10",
82
-
"@types/react-dom": "19.1.7",
83
-
"eslint": "^9",
84
-
"eslint-config-next": "15.4.6",
85
-
"jest": "^30.0.5",
86
-
"jest-environment-jsdom": "^30.0.5",
78
+
"@types/node": "^25.0.2",
79
+
"@types/react": "19.2.7",
80
+
"@types/react-dom": "19.2.3",
81
+
"eslint": "^9.39.2",
82
+
"eslint-config-next": "16.0.10",
83
+
"jest": "^30.2.0",
84
+
"jest-environment-jsdom": "^30.2.0",
87
85
"jest-mock-extended": "^4.0.0",
88
-
"tailwindcss": "^4.1.11",
89
-
"ts-jest": "^29.4.1",
90
-
"tw-animate-css": "^1.2.8",
91
-
"typescript": "^5",
86
+
"tailwindcss": "^4.1.18",
87
+
"ts-jest": "^29.4.6",
88
+
"tw-animate-css": "^1.4.0",
89
+
"typescript": "^5.9.3",
92
90
"whatwg-fetch": "^3.6.20"
93
91
},
94
92
"pnpm": {
+2474
-2698
pnpm-lock.yaml
+2474
-2698
pnpm-lock.yaml
···
14
14
.:
15
15
dependencies:
16
16
'@ai-sdk/anthropic':
17
-
specifier: ^1.2.11
18
-
version: 1.2.11(zod@3.24.3)
17
+
specifier: ^2.0.56
18
+
version: 2.0.56(zod@4.2.1)
19
19
'@ai-sdk/google':
20
-
specifier: ^1.2.17
21
-
version: 1.2.17(zod@3.24.3)
20
+
specifier: ^2.0.47
21
+
version: 2.0.47(zod@4.2.1)
22
22
'@ai-sdk/openai':
23
-
specifier: ^1.3.22
24
-
version: 1.3.22(zod@3.24.3)
23
+
specifier: ^2.0.87
24
+
version: 2.0.87(zod@4.2.1)
25
25
'@dnd-kit/core':
26
26
specifier: ^6.3.1
27
-
version: 6.3.1(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
27
+
version: 6.3.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
28
28
'@dnd-kit/modifiers':
29
29
specifier: ^9.0.0
30
-
version: 9.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)
30
+
version: 9.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)
31
31
'@dnd-kit/sortable':
32
32
specifier: ^10.0.0
33
-
version: 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)
33
+
version: 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)
34
34
'@dnd-kit/utilities':
35
35
specifier: ^3.2.2
36
-
version: 3.2.2(react@19.1.1)
36
+
version: 3.2.2(react@19.2.3)
37
37
'@libsql/client':
38
-
specifier: ^0.15.5
39
-
version: 0.15.5
38
+
specifier: ^0.15.15
39
+
version: 0.15.15
40
40
'@octokit/rest':
41
-
specifier: ^21.1.1
42
-
version: 21.1.1
41
+
specifier: ^22.0.1
42
+
version: 22.0.1
43
43
'@radix-ui/react-accordion':
44
-
specifier: ^1.2.10
45
-
version: 1.2.10(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
44
+
specifier: ^1.2.12
45
+
version: 1.2.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
46
46
'@radix-ui/react-alert-dialog':
47
-
specifier: ^1.1.14
48
-
version: 1.1.14(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
47
+
specifier: ^1.1.15
48
+
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
49
49
'@radix-ui/react-avatar':
50
-
specifier: ^1.1.7
51
-
version: 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
50
+
specifier: ^1.1.11
51
+
version: 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
52
52
'@radix-ui/react-checkbox':
53
-
specifier: ^1.2.3
54
-
version: 1.2.3(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
53
+
specifier: ^1.3.3
54
+
version: 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
55
55
'@radix-ui/react-dialog':
56
-
specifier: ^1.1.11
57
-
version: 1.1.11(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
56
+
specifier: ^1.1.15
57
+
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
58
58
'@radix-ui/react-dropdown-menu':
59
-
specifier: ^2.1.12
60
-
version: 2.1.12(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
59
+
specifier: ^2.1.16
60
+
version: 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
61
61
'@radix-ui/react-label':
62
-
specifier: ^2.1.4
63
-
version: 2.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
62
+
specifier: ^2.1.8
63
+
version: 2.1.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
64
64
'@radix-ui/react-popover':
65
-
specifier: ^1.1.11
66
-
version: 1.1.11(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
65
+
specifier: ^1.1.15
66
+
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
67
67
'@radix-ui/react-progress':
68
-
specifier: ^1.1.4
69
-
version: 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
68
+
specifier: ^1.1.8
69
+
version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
70
70
'@radix-ui/react-select':
71
-
specifier: ^2.2.2
72
-
version: 2.2.2(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
71
+
specifier: ^2.2.6
72
+
version: 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
73
73
'@radix-ui/react-separator':
74
-
specifier: ^1.1.4
75
-
version: 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
74
+
specifier: ^1.1.8
75
+
version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
76
76
'@radix-ui/react-slider':
77
-
specifier: ^1.3.5
78
-
version: 1.3.5(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
77
+
specifier: ^1.3.6
78
+
version: 1.3.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
79
79
'@radix-ui/react-slot':
80
-
specifier: ^1.2.0
81
-
version: 1.2.0(@types/react@19.1.10)(react@19.1.1)
80
+
specifier: ^1.2.4
81
+
version: 1.2.4(@types/react@19.2.7)(react@19.2.3)
82
82
'@radix-ui/react-switch':
83
-
specifier: ^1.2.2
84
-
version: 1.2.2(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
83
+
specifier: ^1.2.6
84
+
version: 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
85
85
'@radix-ui/react-tabs':
86
-
specifier: ^1.1.9
87
-
version: 1.1.9(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
86
+
specifier: ^1.1.13
87
+
version: 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
88
88
'@radix-ui/react-toggle':
89
-
specifier: ^1.1.6
90
-
version: 1.1.6(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
89
+
specifier: ^1.1.10
90
+
version: 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
91
91
'@radix-ui/react-toggle-group':
92
-
specifier: ^1.1.7
93
-
version: 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
92
+
specifier: ^1.1.11
93
+
version: 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
94
94
'@radix-ui/react-tooltip':
95
-
specifier: ^1.2.4
96
-
version: 1.2.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
95
+
specifier: ^1.2.8
96
+
version: 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
97
97
'@tabler/icons-react':
98
-
specifier: ^3.31.0
99
-
version: 3.31.0(react@19.1.1)
98
+
specifier: ^3.36.0
99
+
version: 3.36.0(react@19.2.3)
100
100
'@tanstack/react-table':
101
101
specifier: ^8.21.3
102
-
version: 8.21.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
102
+
version: 8.21.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
103
103
'@types/jsonwebtoken':
104
-
specifier: ^9.0.9
105
-
version: 9.0.9
104
+
specifier: ^9.0.10
105
+
version: 9.0.10
106
106
ai:
107
-
specifier: ^4.3.15
108
-
version: 4.3.15(react@19.1.1)(zod@3.24.3)
107
+
specifier: ^5.0.113
108
+
version: 5.0.113(zod@4.2.1)
109
109
class-variance-authority:
110
110
specifier: ^0.7.1
111
111
version: 0.7.1
···
114
114
version: 2.1.1
115
115
cmdk:
116
116
specifier: ^1.1.1
117
-
version: 1.1.1(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
117
+
version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
118
118
date-fns:
119
119
specifier: ^4.1.0
120
120
version: 4.1.0
121
121
framer-motion:
122
-
specifier: ^12.9.7
123
-
version: 12.9.7(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
122
+
specifier: ^12.23.26
123
+
version: 12.23.26(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
124
124
jsonwebtoken:
125
-
specifier: ^9.0.2
126
-
version: 9.0.2
125
+
specifier: ^9.0.3
126
+
version: 9.0.3
127
127
lucide-react:
128
-
specifier: ^0.503.0
129
-
version: 0.503.0(react@19.1.1)
128
+
specifier: ^0.561.0
129
+
version: 0.561.0(react@19.2.3)
130
130
motion:
131
-
specifier: ^12.23.12
132
-
version: 12.23.12(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
131
+
specifier: ^12.23.26
132
+
version: 12.23.26(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
133
133
next:
134
-
specifier: 15.4.6
135
-
version: 15.4.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
134
+
specifier: 16.0.10
135
+
version: 16.0.10(@babel/core@7.28.5)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
136
136
next-auth:
137
137
specifier: 5.0.0-beta.29
138
-
version: 5.0.0-beta.29(next@15.4.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)
138
+
version: 5.0.0-beta.29(next@16.0.10(@babel/core@7.28.5)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)
139
139
next-themes:
140
140
specifier: ^0.4.6
141
-
version: 0.4.6(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
141
+
version: 0.4.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
142
142
react:
143
-
specifier: 19.1.1
144
-
version: 19.1.1
143
+
specifier: 19.2.3
144
+
version: 19.2.3
145
145
react-day-picker:
146
-
specifier: 9.9.0
147
-
version: 9.9.0(react@19.1.1)
146
+
specifier: 9.12.0
147
+
version: 9.12.0(react@19.2.3)
148
148
react-dom:
149
-
specifier: 19.1.1
150
-
version: 19.1.1(react@19.1.1)
149
+
specifier: 19.2.3
150
+
version: 19.2.3(react@19.2.3)
151
151
recharts:
152
-
specifier: ^2.15.3
153
-
version: 2.15.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
152
+
specifier: ^3.6.0
153
+
version: 3.6.0(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react-is@18.3.1)(react@19.2.3)(redux@5.0.1)
154
154
sonner:
155
-
specifier: ^2.0.3
156
-
version: 2.0.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
155
+
specifier: ^2.0.7
156
+
version: 2.0.7(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
157
157
swr:
158
-
specifier: ^2.3.3
159
-
version: 2.3.3(react@19.1.1)
158
+
specifier: ^2.3.8
159
+
version: 2.3.8(react@19.2.3)
160
160
tailwind-merge:
161
-
specifier: ^3.2.0
162
-
version: 3.2.0
161
+
specifier: ^3.4.0
162
+
version: 3.4.0
163
163
vaul:
164
164
specifier: ^1.1.2
165
-
version: 1.1.2(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
165
+
version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
166
166
zod:
167
-
specifier: ^3.24.3
168
-
version: 3.24.3
167
+
specifier: ^4.2.1
168
+
version: 4.2.1
169
169
devDependencies:
170
170
'@eslint/eslintrc':
171
-
specifier: ^3
172
-
version: 3.3.1
171
+
specifier: ^3.3.3
172
+
version: 3.3.3
173
173
'@swc/jest':
174
174
specifier: ^0.2.39
175
175
version: 0.2.39(@swc/core@1.13.3)
176
176
'@tailwindcss/postcss':
177
-
specifier: ^4.1.11
178
-
version: 4.1.11
177
+
specifier: ^4.1.18
178
+
version: 4.1.18
179
179
'@testing-library/jest-dom':
180
-
specifier: ^6.6.4
181
-
version: 6.6.4
180
+
specifier: ^6.9.1
181
+
version: 6.9.1
182
182
'@testing-library/react':
183
-
specifier: ^16.3.0
184
-
version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
183
+
specifier: ^16.3.1
184
+
version: 16.3.1(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
185
185
'@testing-library/user-event':
186
186
specifier: ^14.6.1
187
187
version: 14.6.1(@testing-library/dom@10.4.1)
···
189
189
specifier: ^30.0.0
190
190
version: 30.0.0
191
191
'@types/node':
192
-
specifier: ^20
193
-
version: 20.17.31
192
+
specifier: ^25.0.2
193
+
version: 25.0.2
194
194
'@types/react':
195
-
specifier: 19.1.10
196
-
version: 19.1.10
195
+
specifier: 19.2.7
196
+
version: 19.2.7
197
197
'@types/react-dom':
198
-
specifier: 19.1.7
199
-
version: 19.1.7(@types/react@19.1.10)
198
+
specifier: 19.2.3
199
+
version: 19.2.3(@types/react@19.2.7)
200
200
eslint:
201
-
specifier: ^9
202
-
version: 9.25.1(jiti@2.4.2)
201
+
specifier: ^9.39.2
202
+
version: 9.39.2(jiti@2.6.1)
203
203
eslint-config-next:
204
-
specifier: 15.4.6
205
-
version: 15.4.6(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
204
+
specifier: 16.0.10
205
+
version: 16.0.10(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
206
206
jest:
207
-
specifier: ^30.0.5
208
-
version: 30.0.5(@types/node@20.17.31)
207
+
specifier: ^30.2.0
208
+
version: 30.2.0(@types/node@25.0.2)
209
209
jest-environment-jsdom:
210
-
specifier: ^30.0.5
211
-
version: 30.0.5
210
+
specifier: ^30.2.0
211
+
version: 30.2.0
212
212
jest-mock-extended:
213
213
specifier: ^4.0.0
214
-
version: 4.0.0(@jest/globals@30.0.5)(jest@30.0.5(@types/node@20.17.31))(typescript@5.8.3)
214
+
version: 4.0.0(@jest/globals@30.2.0)(jest@30.2.0(@types/node@25.0.2))(typescript@5.9.3)
215
215
tailwindcss:
216
-
specifier: ^4.1.11
217
-
version: 4.1.11
216
+
specifier: ^4.1.18
217
+
version: 4.1.18
218
218
ts-jest:
219
-
specifier: ^29.4.1
220
-
version: 29.4.1(@babel/core@7.28.0)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.28.0))(jest-util@30.0.5)(jest@30.0.5(@types/node@20.17.31))(typescript@5.8.3)
219
+
specifier: ^29.4.6
220
+
version: 29.4.6(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(jest-util@30.2.0)(jest@30.2.0(@types/node@25.0.2))(typescript@5.9.3)
221
221
tw-animate-css:
222
-
specifier: ^1.2.8
223
-
version: 1.2.8
222
+
specifier: ^1.4.0
223
+
version: 1.4.0
224
224
typescript:
225
-
specifier: ^5
226
-
version: 5.8.3
225
+
specifier: ^5.9.3
226
+
version: 5.9.3
227
227
whatwg-fetch:
228
228
specifier: ^3.6.20
229
229
version: 3.6.20
230
230
231
231
packages:
232
232
233
-
'@adobe/css-tools@4.4.3':
234
-
resolution: {integrity: sha512-VQKMkwriZbaOgVCby1UDY/LDk5fIjhQicCvVPFqfe+69fWaPWydbWJ3wRt59/YzIwda1I81loas3oCoHxnqvdA==}
233
+
'@adobe/css-tools@4.4.4':
234
+
resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==}
235
235
236
-
'@ai-sdk/anthropic@1.2.11':
237
-
resolution: {integrity: sha512-lZLcEMh8MXY4NVSrN/7DyI2rnid8k7cn/30nMmd3bwJrnIsOuIuuFvY8f0nj+pFcTi6AYK7ujLdqW5dQVz1YQw==}
236
+
'@ai-sdk/anthropic@2.0.56':
237
+
resolution: {integrity: sha512-XHJKu0Yvfu9SPzRfsAFESa+9T7f2YJY6TxykKMfRsAwpeWAiX/Gbx5J5uM15AzYC3Rw8tVP3oH+j7jEivENirQ==}
238
238
engines: {node: '>=18'}
239
239
peerDependencies:
240
-
zod: ^3.0.0
240
+
zod: ^3.25.76 || ^4.1.8
241
241
242
-
'@ai-sdk/google@1.2.17':
243
-
resolution: {integrity: sha512-mLFLDMCJaDK+j1nvoqeNszazSZIyeSMPi5X+fs5Wh3xWZljGGE0WmFg32RNkFujRB+UnM63EnhPG70WdqOx/MA==}
242
+
'@ai-sdk/gateway@2.0.21':
243
+
resolution: {integrity: sha512-BwV7DU/lAm3Xn6iyyvZdWgVxgLu3SNXzl5y57gMvkW4nGhAOV5269IrJzQwGt03bb107sa6H6uJwWxc77zXoGA==}
244
244
engines: {node: '>=18'}
245
245
peerDependencies:
246
-
zod: ^3.0.0
246
+
zod: ^3.25.76 || ^4.1.8
247
247
248
-
'@ai-sdk/openai@1.3.22':
249
-
resolution: {integrity: sha512-QwA+2EkG0QyjVR+7h6FE7iOu2ivNqAVMm9UJZkVxxTk5OIq5fFJDTEI/zICEMuHImTTXR2JjsL6EirJ28Jc4cw==}
248
+
'@ai-sdk/google@2.0.47':
249
+
resolution: {integrity: sha512-grIlvzh+jzMoKNOnn5Xe/8fdYiJOs0ThMVetsGzqflvMkUNF3B83t5i0kf4XqiM8MwTJ8gkdOA4VeQOZKR7TkA==}
250
250
engines: {node: '>=18'}
251
251
peerDependencies:
252
-
zod: ^3.0.0
252
+
zod: ^3.25.76 || ^4.1.8
253
253
254
-
'@ai-sdk/provider-utils@2.2.8':
255
-
resolution: {integrity: sha512-fqhG+4sCVv8x7nFzYnFo19ryhAa3w096Kmc3hWxMQfW/TubPOmt3A6tYZhl4mUfQWWQMsuSkLrtjlWuXBVSGQA==}
254
+
'@ai-sdk/openai@2.0.87':
255
+
resolution: {integrity: sha512-qywHMz8Kd+y/cluanX63SqFV/J8gLq596+W8K/MgdNroEnSabRIeikEP1/K0wwuKtSI7/KaLlVUnt1N5E3889Q==}
256
256
engines: {node: '>=18'}
257
257
peerDependencies:
258
-
zod: ^3.23.8
258
+
zod: ^3.25.76 || ^4.1.8
259
259
260
-
'@ai-sdk/provider@1.1.3':
261
-
resolution: {integrity: sha512-qZMxYJ0qqX/RfnuIaab+zp8UAeJn/ygXXAffR5I4N0n1IrvA6qBsjc8hXLmBiMV2zoXlifkacF7sEFnYnjBcqg==}
262
-
engines: {node: '>=18'}
263
-
264
-
'@ai-sdk/react@1.2.12':
265
-
resolution: {integrity: sha512-jK1IZZ22evPZoQW3vlkZ7wvjYGYF+tRBKXtrcolduIkQ/m/sOAVcVeVDUDvh1T91xCnWCdUGCPZg2avZ90mv3g==}
260
+
'@ai-sdk/provider-utils@3.0.19':
261
+
resolution: {integrity: sha512-W41Wc9/jbUVXVwCN/7bWa4IKe8MtxO3EyA0Hfhx6grnmiYlCvpI8neSYWFE0zScXJkgA/YK3BRybzgyiXuu6JA==}
266
262
engines: {node: '>=18'}
267
263
peerDependencies:
268
-
react: ^18 || ^19 || ^19.0.0-rc
269
-
zod: ^3.23.8
270
-
peerDependenciesMeta:
271
-
zod:
272
-
optional: true
264
+
zod: ^3.25.76 || ^4.1.8
273
265
274
-
'@ai-sdk/ui-utils@1.2.11':
275
-
resolution: {integrity: sha512-3zcwCc8ezzFlwp3ZD15wAPjf2Au4s3vAbKsXQVyhxODHcmu0iyPO2Eua6D/vicq/AUm/BAo60r97O6HU+EI0+w==}
266
+
'@ai-sdk/provider@2.0.0':
267
+
resolution: {integrity: sha512-6o7Y2SeO9vFKB8lArHXehNuusnpddKPk7xqL7T2/b+OvXMRIXUO1rR4wcv1hAFUAT9avGZshty3Wlua/XA7TvA==}
276
268
engines: {node: '>=18'}
277
-
peerDependencies:
278
-
zod: ^3.23.8
279
269
280
270
'@alloc/quick-lru@5.2.0':
281
271
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
282
272
engines: {node: '>=10'}
283
273
284
-
'@ampproject/remapping@2.3.0':
285
-
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
286
-
engines: {node: '>=6.0.0'}
287
-
288
274
'@asamuzakjp/css-color@3.2.0':
289
275
resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
290
276
···
306
292
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
307
293
engines: {node: '>=6.9.0'}
308
294
309
-
'@babel/compat-data@7.28.0':
310
-
resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
295
+
'@babel/compat-data@7.28.5':
296
+
resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
311
297
engines: {node: '>=6.9.0'}
312
298
313
-
'@babel/core@7.28.0':
314
-
resolution: {integrity: sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==}
299
+
'@babel/core@7.28.5':
300
+
resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
315
301
engines: {node: '>=6.9.0'}
316
302
317
-
'@babel/generator@7.28.0':
318
-
resolution: {integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==}
303
+
'@babel/generator@7.28.5':
304
+
resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
319
305
engines: {node: '>=6.9.0'}
320
306
321
307
'@babel/helper-compilation-targets@7.27.2':
···
330
316
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
331
317
engines: {node: '>=6.9.0'}
332
318
333
-
'@babel/helper-module-transforms@7.27.3':
334
-
resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==}
319
+
'@babel/helper-module-transforms@7.28.3':
320
+
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
335
321
engines: {node: '>=6.9.0'}
336
322
peerDependencies:
337
323
'@babel/core': ^7.0.0
···
344
330
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
345
331
engines: {node: '>=6.9.0'}
346
332
347
-
'@babel/helper-validator-identifier@7.27.1':
348
-
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
333
+
'@babel/helper-validator-identifier@7.28.5':
334
+
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
349
335
engines: {node: '>=6.9.0'}
350
336
351
337
'@babel/helper-validator-option@7.27.1':
352
338
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
353
339
engines: {node: '>=6.9.0'}
354
340
355
-
'@babel/helpers@7.28.2':
356
-
resolution: {integrity: sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==}
341
+
'@babel/helpers@7.28.4':
342
+
resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
357
343
engines: {node: '>=6.9.0'}
358
344
359
-
'@babel/parser@7.28.0':
360
-
resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==}
345
+
'@babel/parser@7.28.5':
346
+
resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
361
347
engines: {node: '>=6.0.0'}
362
348
hasBin: true
363
349
···
452
438
peerDependencies:
453
439
'@babel/core': ^7.0.0-0
454
440
455
-
'@babel/runtime@7.27.0':
456
-
resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
441
+
'@babel/runtime@7.28.4':
442
+
resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
457
443
engines: {node: '>=6.9.0'}
458
444
459
445
'@babel/template@7.27.2':
460
446
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
461
447
engines: {node: '>=6.9.0'}
462
448
463
-
'@babel/traverse@7.28.0':
464
-
resolution: {integrity: sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==}
449
+
'@babel/traverse@7.28.5':
450
+
resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
465
451
engines: {node: '>=6.9.0'}
466
452
467
-
'@babel/types@7.28.2':
468
-
resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
453
+
'@babel/types@7.28.5':
454
+
resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
469
455
engines: {node: '>=6.9.0'}
470
456
471
457
'@bcoe/v8-coverage@0.2.3':
472
458
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
473
459
474
-
'@csstools/color-helpers@5.0.2':
475
-
resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==}
460
+
'@csstools/color-helpers@5.1.0':
461
+
resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==}
476
462
engines: {node: '>=18'}
477
463
478
464
'@csstools/css-calc@2.1.4':
···
482
468
'@csstools/css-parser-algorithms': ^3.0.5
483
469
'@csstools/css-tokenizer': ^3.0.4
484
470
485
-
'@csstools/css-color-parser@3.0.10':
486
-
resolution: {integrity: sha512-TiJ5Ajr6WRd1r8HSiwJvZBiJOqtH86aHpUjq5aEKWHiII2Qfjqd/HCWKPOW8EP4vcspXbHnXrwIDlu5savQipg==}
471
+
'@csstools/css-color-parser@3.1.0':
472
+
resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==}
487
473
engines: {node: '>=18'}
488
474
peerDependencies:
489
475
'@csstools/css-parser-algorithms': ^3.0.5
···
530
516
peerDependencies:
531
517
react: '>=16.8.0'
532
518
533
-
'@emnapi/core@1.4.3':
534
-
resolution: {integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==}
519
+
'@emnapi/core@1.7.1':
520
+
resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==}
535
521
536
-
'@emnapi/runtime@1.4.3':
537
-
resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==}
522
+
'@emnapi/runtime@1.7.1':
523
+
resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==}
538
524
539
-
'@emnapi/runtime@1.4.5':
540
-
resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==}
525
+
'@emnapi/wasi-threads@1.1.0':
526
+
resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
541
527
542
-
'@emnapi/wasi-threads@1.0.2':
543
-
resolution: {integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==}
544
-
545
-
'@eslint-community/eslint-utils@4.6.1':
546
-
resolution: {integrity: sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==}
528
+
'@eslint-community/eslint-utils@4.9.0':
529
+
resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
547
530
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
548
531
peerDependencies:
549
532
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
550
533
551
-
'@eslint-community/regexpp@4.12.1':
552
-
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
534
+
'@eslint-community/regexpp@4.12.2':
535
+
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
553
536
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
554
537
555
-
'@eslint/config-array@0.20.0':
556
-
resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
538
+
'@eslint/config-array@0.21.1':
539
+
resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
557
540
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
558
541
559
-
'@eslint/config-helpers@0.2.1':
560
-
resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==}
542
+
'@eslint/config-helpers@0.4.2':
543
+
resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
561
544
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
562
545
563
-
'@eslint/core@0.13.0':
564
-
resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==}
546
+
'@eslint/core@0.17.0':
547
+
resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
565
548
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
566
549
567
-
'@eslint/eslintrc@3.3.1':
568
-
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
550
+
'@eslint/eslintrc@3.3.3':
551
+
resolution: {integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==}
569
552
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
570
553
571
-
'@eslint/js@9.25.1':
572
-
resolution: {integrity: sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg==}
554
+
'@eslint/js@9.39.2':
555
+
resolution: {integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==}
573
556
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
574
557
575
-
'@eslint/object-schema@2.1.6':
576
-
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
558
+
'@eslint/object-schema@2.1.7':
559
+
resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
577
560
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
578
561
579
-
'@eslint/plugin-kit@0.2.8':
580
-
resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==}
562
+
'@eslint/plugin-kit@0.4.1':
563
+
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
581
564
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
582
565
583
-
'@floating-ui/core@1.6.9':
584
-
resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
566
+
'@floating-ui/core@1.7.3':
567
+
resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
585
568
586
-
'@floating-ui/dom@1.6.13':
587
-
resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
569
+
'@floating-ui/dom@1.7.4':
570
+
resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
588
571
589
-
'@floating-ui/react-dom@2.1.2':
590
-
resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
572
+
'@floating-ui/react-dom@2.1.6':
573
+
resolution: {integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==}
591
574
peerDependencies:
592
575
react: '>=16.8.0'
593
576
react-dom: '>=16.8.0'
594
577
595
-
'@floating-ui/utils@0.2.9':
596
-
resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
578
+
'@floating-ui/utils@0.2.10':
579
+
resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
597
580
598
581
'@humanfs/core@0.19.1':
599
582
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
600
583
engines: {node: '>=18.18.0'}
601
584
602
-
'@humanfs/node@0.16.6':
603
-
resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
585
+
'@humanfs/node@0.16.7':
586
+
resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
604
587
engines: {node: '>=18.18.0'}
605
588
606
589
'@humanwhocodes/module-importer@1.0.1':
607
590
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
608
591
engines: {node: '>=12.22'}
609
592
610
-
'@humanwhocodes/retry@0.3.1':
611
-
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
593
+
'@humanwhocodes/retry@0.4.3':
594
+
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
612
595
engines: {node: '>=18.18'}
613
596
614
-
'@humanwhocodes/retry@0.4.2':
615
-
resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
616
-
engines: {node: '>=18.18'}
597
+
'@img/colour@1.0.0':
598
+
resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==}
599
+
engines: {node: '>=18'}
617
600
618
-
'@img/sharp-darwin-arm64@0.34.3':
619
-
resolution: {integrity: sha512-ryFMfvxxpQRsgZJqBd4wsttYQbCxsJksrv9Lw/v798JcQ8+w84mBWuXwl+TT0WJ/WrYOLaYpwQXi3sA9nTIaIg==}
601
+
'@img/sharp-darwin-arm64@0.34.5':
602
+
resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==}
620
603
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
621
604
cpu: [arm64]
622
605
os: [darwin]
623
606
624
-
'@img/sharp-darwin-x64@0.34.3':
625
-
resolution: {integrity: sha512-yHpJYynROAj12TA6qil58hmPmAwxKKC7reUqtGLzsOHfP7/rniNGTL8tjWX6L3CTV4+5P4ypcS7Pp+7OB+8ihA==}
607
+
'@img/sharp-darwin-x64@0.34.5':
608
+
resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==}
626
609
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
627
610
cpu: [x64]
628
611
os: [darwin]
629
612
630
-
'@img/sharp-libvips-darwin-arm64@1.2.0':
631
-
resolution: {integrity: sha512-sBZmpwmxqwlqG9ueWFXtockhsxefaV6O84BMOrhtg/YqbTaRdqDE7hxraVE3y6gVM4eExmfzW4a8el9ArLeEiQ==}
613
+
'@img/sharp-libvips-darwin-arm64@1.2.4':
614
+
resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
632
615
cpu: [arm64]
633
616
os: [darwin]
634
617
635
-
'@img/sharp-libvips-darwin-x64@1.2.0':
636
-
resolution: {integrity: sha512-M64XVuL94OgiNHa5/m2YvEQI5q2cl9d/wk0qFTDVXcYzi43lxuiFTftMR1tOnFQovVXNZJ5TURSDK2pNe9Yzqg==}
618
+
'@img/sharp-libvips-darwin-x64@1.2.4':
619
+
resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==}
637
620
cpu: [x64]
638
621
os: [darwin]
639
622
640
-
'@img/sharp-libvips-linux-arm64@1.2.0':
641
-
resolution: {integrity: sha512-RXwd0CgG+uPRX5YYrkzKyalt2OJYRiJQ8ED/fi1tq9WQW2jsQIn0tqrlR5l5dr/rjqq6AHAxURhj2DVjyQWSOA==}
623
+
'@img/sharp-libvips-linux-arm64@1.2.4':
624
+
resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
642
625
cpu: [arm64]
643
626
os: [linux]
644
627
645
-
'@img/sharp-libvips-linux-arm@1.2.0':
646
-
resolution: {integrity: sha512-mWd2uWvDtL/nvIzThLq3fr2nnGfyr/XMXlq8ZJ9WMR6PXijHlC3ksp0IpuhK6bougvQrchUAfzRLnbsen0Cqvw==}
628
+
'@img/sharp-libvips-linux-arm@1.2.4':
629
+
resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
647
630
cpu: [arm]
648
631
os: [linux]
649
632
650
-
'@img/sharp-libvips-linux-ppc64@1.2.0':
651
-
resolution: {integrity: sha512-Xod/7KaDDHkYu2phxxfeEPXfVXFKx70EAFZ0qyUdOjCcxbjqyJOEUpDe6RIyaunGxT34Anf9ue/wuWOqBW2WcQ==}
633
+
'@img/sharp-libvips-linux-ppc64@1.2.4':
634
+
resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
652
635
cpu: [ppc64]
653
636
os: [linux]
654
637
655
-
'@img/sharp-libvips-linux-s390x@1.2.0':
656
-
resolution: {integrity: sha512-eMKfzDxLGT8mnmPJTNMcjfO33fLiTDsrMlUVcp6b96ETbnJmd4uvZxVJSKPQfS+odwfVaGifhsB07J1LynFehw==}
638
+
'@img/sharp-libvips-linux-riscv64@1.2.4':
639
+
resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
640
+
cpu: [riscv64]
641
+
os: [linux]
642
+
643
+
'@img/sharp-libvips-linux-s390x@1.2.4':
644
+
resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
657
645
cpu: [s390x]
658
646
os: [linux]
659
647
660
-
'@img/sharp-libvips-linux-x64@1.2.0':
661
-
resolution: {integrity: sha512-ZW3FPWIc7K1sH9E3nxIGB3y3dZkpJlMnkk7z5tu1nSkBoCgw2nSRTFHI5pB/3CQaJM0pdzMF3paf9ckKMSE9Tg==}
648
+
'@img/sharp-libvips-linux-x64@1.2.4':
649
+
resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
662
650
cpu: [x64]
663
651
os: [linux]
664
652
665
-
'@img/sharp-libvips-linuxmusl-arm64@1.2.0':
666
-
resolution: {integrity: sha512-UG+LqQJbf5VJ8NWJ5Z3tdIe/HXjuIdo4JeVNADXBFuG7z9zjoegpzzGIyV5zQKi4zaJjnAd2+g2nna8TZvuW9Q==}
653
+
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
654
+
resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
667
655
cpu: [arm64]
668
656
os: [linux]
669
657
670
-
'@img/sharp-libvips-linuxmusl-x64@1.2.0':
671
-
resolution: {integrity: sha512-SRYOLR7CXPgNze8akZwjoGBoN1ThNZoqpOgfnOxmWsklTGVfJiGJoC/Lod7aNMGA1jSsKWM1+HRX43OP6p9+6Q==}
658
+
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
659
+
resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
672
660
cpu: [x64]
673
661
os: [linux]
674
662
675
-
'@img/sharp-linux-arm64@0.34.3':
676
-
resolution: {integrity: sha512-QdrKe3EvQrqwkDrtuTIjI0bu6YEJHTgEeqdzI3uWJOH6G1O8Nl1iEeVYRGdj1h5I21CqxSvQp1Yv7xeU3ZewbA==}
663
+
'@img/sharp-linux-arm64@0.34.5':
664
+
resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
677
665
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
678
666
cpu: [arm64]
679
667
os: [linux]
680
668
681
-
'@img/sharp-linux-arm@0.34.3':
682
-
resolution: {integrity: sha512-oBK9l+h6KBN0i3dC8rYntLiVfW8D8wH+NPNT3O/WBHeW0OQWCjfWksLUaPidsrDKpJgXp3G3/hkmhptAW0I3+A==}
669
+
'@img/sharp-linux-arm@0.34.5':
670
+
resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
683
671
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
684
672
cpu: [arm]
685
673
os: [linux]
686
674
687
-
'@img/sharp-linux-ppc64@0.34.3':
688
-
resolution: {integrity: sha512-GLtbLQMCNC5nxuImPR2+RgrviwKwVql28FWZIW1zWruy6zLgA5/x2ZXk3mxj58X/tszVF69KK0Is83V8YgWhLA==}
675
+
'@img/sharp-linux-ppc64@0.34.5':
676
+
resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
689
677
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
690
678
cpu: [ppc64]
691
679
os: [linux]
692
680
693
-
'@img/sharp-linux-s390x@0.34.3':
694
-
resolution: {integrity: sha512-3gahT+A6c4cdc2edhsLHmIOXMb17ltffJlxR0aC2VPZfwKoTGZec6u5GrFgdR7ciJSsHT27BD3TIuGcuRT0KmQ==}
681
+
'@img/sharp-linux-riscv64@0.34.5':
682
+
resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
683
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
684
+
cpu: [riscv64]
685
+
os: [linux]
686
+
687
+
'@img/sharp-linux-s390x@0.34.5':
688
+
resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
695
689
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
696
690
cpu: [s390x]
697
691
os: [linux]
698
692
699
-
'@img/sharp-linux-x64@0.34.3':
700
-
resolution: {integrity: sha512-8kYso8d806ypnSq3/Ly0QEw90V5ZoHh10yH0HnrzOCr6DKAPI6QVHvwleqMkVQ0m+fc7EH8ah0BB0QPuWY6zJQ==}
693
+
'@img/sharp-linux-x64@0.34.5':
694
+
resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
701
695
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
702
696
cpu: [x64]
703
697
os: [linux]
704
698
705
-
'@img/sharp-linuxmusl-arm64@0.34.3':
706
-
resolution: {integrity: sha512-vAjbHDlr4izEiXM1OTggpCcPg9tn4YriK5vAjowJsHwdBIdx0fYRsURkxLG2RLm9gyBq66gwtWI8Gx0/ov+JKQ==}
699
+
'@img/sharp-linuxmusl-arm64@0.34.5':
700
+
resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
707
701
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
708
702
cpu: [arm64]
709
703
os: [linux]
710
704
711
-
'@img/sharp-linuxmusl-x64@0.34.3':
712
-
resolution: {integrity: sha512-gCWUn9547K5bwvOn9l5XGAEjVTTRji4aPTqLzGXHvIr6bIDZKNTA34seMPgM0WmSf+RYBH411VavCejp3PkOeQ==}
705
+
'@img/sharp-linuxmusl-x64@0.34.5':
706
+
resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
713
707
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
714
708
cpu: [x64]
715
709
os: [linux]
716
710
717
-
'@img/sharp-wasm32@0.34.3':
718
-
resolution: {integrity: sha512-+CyRcpagHMGteySaWos8IbnXcHgfDn7pO2fiC2slJxvNq9gDipYBN42/RagzctVRKgxATmfqOSulgZv5e1RdMg==}
711
+
'@img/sharp-wasm32@0.34.5':
712
+
resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
719
713
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
720
714
cpu: [wasm32]
721
715
722
-
'@img/sharp-win32-arm64@0.34.3':
723
-
resolution: {integrity: sha512-MjnHPnbqMXNC2UgeLJtX4XqoVHHlZNd+nPt1kRPmj63wURegwBhZlApELdtxM2OIZDRv/DFtLcNhVbd1z8GYXQ==}
716
+
'@img/sharp-win32-arm64@0.34.5':
717
+
resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==}
724
718
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
725
719
cpu: [arm64]
726
720
os: [win32]
727
721
728
-
'@img/sharp-win32-ia32@0.34.3':
729
-
resolution: {integrity: sha512-xuCdhH44WxuXgOM714hn4amodJMZl3OEvf0GVTm0BEyMeA2to+8HEdRPShH0SLYptJY1uBw+SCFP9WVQi1Q/cw==}
722
+
'@img/sharp-win32-ia32@0.34.5':
723
+
resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==}
730
724
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
731
725
cpu: [ia32]
732
726
os: [win32]
733
727
734
-
'@img/sharp-win32-x64@0.34.3':
735
-
resolution: {integrity: sha512-OWwz05d++TxzLEv4VnsTz5CmZ6mI6S05sfQGEMrNrQcOEERbX46332IvE7pO/EUiw7jUrrS40z/M7kPyjfl04g==}
728
+
'@img/sharp-win32-x64@0.34.5':
729
+
resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==}
736
730
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
737
731
cpu: [x64]
738
732
os: [win32]
···
741
735
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
742
736
engines: {node: '>=12'}
743
737
744
-
'@isaacs/fs-minipass@4.0.1':
745
-
resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
746
-
engines: {node: '>=18.0.0'}
747
-
748
738
'@istanbuljs/load-nyc-config@1.1.0':
749
739
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
750
740
engines: {node: '>=8'}
···
753
743
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
754
744
engines: {node: '>=8'}
755
745
756
-
'@jest/console@30.0.5':
757
-
resolution: {integrity: sha512-xY6b0XiL0Nav3ReresUarwl2oIz1gTnxGbGpho9/rbUWsLH0f1OD/VT84xs8c7VmH7MChnLb0pag6PhZhAdDiA==}
746
+
'@jest/console@30.2.0':
747
+
resolution: {integrity: sha512-+O1ifRjkvYIkBqASKWgLxrpEhQAAE7hY77ALLUufSk5717KfOShg6IbqLmdsLMPdUiFvA2kTs0R7YZy+l0IzZQ==}
758
748
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
759
749
760
-
'@jest/core@30.0.5':
761
-
resolution: {integrity: sha512-fKD0OulvRsXF1hmaFgHhVJzczWzA1RXMMo9LTPuFXo9q/alDbME3JIyWYqovWsUBWSoBcsHaGPSLF9rz4l9Qeg==}
750
+
'@jest/core@30.2.0':
751
+
resolution: {integrity: sha512-03W6IhuhjqTlpzh/ojut/pDB2LPRygyWX8ExpgHtQA8H/3K7+1vKmcINx5UzeOX1se6YEsBsOHQ1CRzf3fOwTQ==}
762
752
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
763
753
peerDependencies:
764
754
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
···
766
756
node-notifier:
767
757
optional: true
768
758
769
-
'@jest/create-cache-key-function@30.0.5':
770
-
resolution: {integrity: sha512-W1kmkwPq/WTMQWgvbzWSCbXSqvjI6rkqBQCxuvYmd+g6o4b5gHP98ikfh/Ei0SKzHvWdI84TOXp0hRcbpr8Q0w==}
759
+
'@jest/create-cache-key-function@30.2.0':
760
+
resolution: {integrity: sha512-44F4l4Enf+MirJN8X/NhdGkl71k5rBYiwdVlo4HxOwbu0sHV8QKrGEedb1VUU4K3W7fBKE0HGfbn7eZm0Ti3zg==}
771
761
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
772
762
773
763
'@jest/diff-sequences@30.0.1':
774
764
resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==}
775
765
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
776
766
777
-
'@jest/environment-jsdom-abstract@30.0.5':
778
-
resolution: {integrity: sha512-gpWwiVxZunkoglP8DCnT3As9x5O8H6gveAOpvaJd2ATAoSh7ZSSCWbr9LQtUMvr8WD3VjG9YnDhsmkCK5WN1rQ==}
767
+
'@jest/environment-jsdom-abstract@30.2.0':
768
+
resolution: {integrity: sha512-kazxw2L9IPuZpQ0mEt9lu9Z98SqR74xcagANmMBU16X0lS23yPc0+S6hGLUz8kVRlomZEs/5S/Zlpqwf5yu6OQ==}
779
769
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
780
770
peerDependencies:
781
771
canvas: ^3.0.0
···
784
774
canvas:
785
775
optional: true
786
776
787
-
'@jest/environment@30.0.5':
788
-
resolution: {integrity: sha512-aRX7WoaWx1oaOkDQvCWImVQ8XNtdv5sEWgk4gxR6NXb7WBUnL5sRak4WRzIQRZ1VTWPvV4VI4mgGjNL9TeKMYA==}
777
+
'@jest/environment@30.2.0':
778
+
resolution: {integrity: sha512-/QPTL7OBJQ5ac09UDRa3EQes4gt1FTEG/8jZ/4v5IVzx+Cv7dLxlVIvfvSVRiiX2drWyXeBjkMSR8hvOWSog5g==}
789
779
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
790
780
791
-
'@jest/expect-utils@30.0.5':
792
-
resolution: {integrity: sha512-F3lmTT7CXWYywoVUGTCmom0vXq3HTTkaZyTAzIy+bXSBizB7o5qzlC9VCtq0arOa8GqmNsbg/cE9C6HLn7Szew==}
781
+
'@jest/expect-utils@30.2.0':
782
+
resolution: {integrity: sha512-1JnRfhqpD8HGpOmQp180Fo9Zt69zNtC+9lR+kT7NVL05tNXIi+QC8Csz7lfidMoVLPD3FnOtcmp0CEFnxExGEA==}
793
783
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
794
784
795
-
'@jest/expect@30.0.5':
796
-
resolution: {integrity: sha512-6udac8KKrtTtC+AXZ2iUN/R7dp7Ydry+Fo6FPFnDG54wjVMnb6vW/XNlf7Xj8UDjAE3aAVAsR4KFyKk3TCXmTA==}
785
+
'@jest/expect@30.2.0':
786
+
resolution: {integrity: sha512-V9yxQK5erfzx99Sf+7LbhBwNWEZ9eZay8qQ9+JSC0TrMR1pMDHLMY+BnVPacWU6Jamrh252/IKo4F1Xn/zfiqA==}
797
787
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
798
788
799
-
'@jest/fake-timers@30.0.5':
800
-
resolution: {integrity: sha512-ZO5DHfNV+kgEAeP3gK3XlpJLL4U3Sz6ebl/n68Uwt64qFFs5bv4bfEEjyRGK5uM0C90ewooNgFuKMdkbEoMEXw==}
789
+
'@jest/fake-timers@30.2.0':
790
+
resolution: {integrity: sha512-HI3tRLjRxAbBy0VO8dqqm7Hb2mIa8d5bg/NJkyQcOk7V118ObQML8RC5luTF/Zsg4474a+gDvhce7eTnP4GhYw==}
801
791
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
802
792
803
-
'@jest/get-type@30.0.1':
804
-
resolution: {integrity: sha512-AyYdemXCptSRFirI5EPazNxyPwAL0jXt3zceFjaj8NFiKP9pOi0bfXonf6qkf82z2t3QWPeLCWWw4stPBzctLw==}
793
+
'@jest/get-type@30.1.0':
794
+
resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==}
805
795
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
806
796
807
-
'@jest/globals@30.0.5':
808
-
resolution: {integrity: sha512-7oEJT19WW4oe6HR7oLRvHxwlJk2gev0U9px3ufs8sX9PoD1Eza68KF0/tlN7X0dq/WVsBScXQGgCldA1V9Y/jA==}
797
+
'@jest/globals@30.2.0':
798
+
resolution: {integrity: sha512-b63wmnKPaK+6ZZfpYhz9K61oybvbI1aMcIs80++JI1O1rR1vaxHUCNqo3ITu6NU0d4V34yZFoHMn/uoKr/Rwfw==}
809
799
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
810
800
811
801
'@jest/pattern@30.0.1':
812
802
resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==}
813
803
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
814
804
815
-
'@jest/reporters@30.0.5':
816
-
resolution: {integrity: sha512-mafft7VBX4jzED1FwGC1o/9QUM2xebzavImZMeqnsklgcyxBto8mV4HzNSzUrryJ+8R9MFOM3HgYuDradWR+4g==}
805
+
'@jest/reporters@30.2.0':
806
+
resolution: {integrity: sha512-DRyW6baWPqKMa9CzeiBjHwjd8XeAyco2Vt8XbcLFjiwCOEKOvy82GJ8QQnJE9ofsxCMPjH4MfH8fCWIHHDKpAQ==}
817
807
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
818
808
peerDependencies:
819
809
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
···
825
815
resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==}
826
816
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
827
817
828
-
'@jest/snapshot-utils@30.0.5':
829
-
resolution: {integrity: sha512-XcCQ5qWHLvi29UUrowgDFvV4t7ETxX91CbDczMnoqXPOIcZOxyNdSjm6kV5XMc8+HkxfRegU/MUmnTbJRzGrUQ==}
818
+
'@jest/snapshot-utils@30.2.0':
819
+
resolution: {integrity: sha512-0aVxM3RH6DaiLcjj/b0KrIBZhSX1373Xci4l3cW5xiUWPctZ59zQ7jj4rqcJQ/Z8JuN/4wX3FpJSa3RssVvCug==}
830
820
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
831
821
832
822
'@jest/source-map@30.0.1':
833
823
resolution: {integrity: sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==}
834
824
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
835
825
836
-
'@jest/test-result@30.0.5':
837
-
resolution: {integrity: sha512-wPyztnK0gbDMQAJZ43tdMro+qblDHH1Ru/ylzUo21TBKqt88ZqnKKK2m30LKmLLoKtR2lxdpCC/P3g1vfKcawQ==}
826
+
'@jest/test-result@30.2.0':
827
+
resolution: {integrity: sha512-RF+Z+0CCHkARz5HT9mcQCBulb1wgCP3FBvl9VFokMX27acKphwyQsNuWH3c+ojd1LeWBLoTYoxF0zm6S/66mjg==}
838
828
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
839
829
840
-
'@jest/test-sequencer@30.0.5':
841
-
resolution: {integrity: sha512-Aea/G1egWoIIozmDD7PBXUOxkekXl7ueGzrsGGi1SbeKgQqCYCIf+wfbflEbf2LiPxL8j2JZGLyrzZagjvW4YQ==}
830
+
'@jest/test-sequencer@30.2.0':
831
+
resolution: {integrity: sha512-wXKgU/lk8fKXMu/l5Hog1R61bL4q5GCdT6OJvdAFz1P+QrpoFuLU68eoKuVc4RbrTtNnTL5FByhWdLgOPSph+Q==}
842
832
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
843
833
844
-
'@jest/transform@30.0.5':
845
-
resolution: {integrity: sha512-Vk8amLQCmuZyy6GbBht1Jfo9RSdBtg7Lks+B0PecnjI8J+PCLQPGh7uI8Q/2wwpW2gLdiAfiHNsmekKlywULqg==}
834
+
'@jest/transform@30.2.0':
835
+
resolution: {integrity: sha512-XsauDV82o5qXbhalKxD7p4TZYYdwcaEXC77PPD2HixEFF+6YGppjrAAQurTl2ECWcEomHBMMNS9AH3kcCFx8jA==}
846
836
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
847
837
848
-
'@jest/types@30.0.5':
849
-
resolution: {integrity: sha512-aREYa3aku9SSnea4aX6bhKn4bgv3AXkgijoQgbYV3yvbiGt6z+MQ85+6mIhx9DsKW2BuB/cLR/A+tcMThx+KLQ==}
838
+
'@jest/types@30.2.0':
839
+
resolution: {integrity: sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==}
850
840
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
851
841
852
-
'@jridgewell/gen-mapping@0.3.12':
853
-
resolution: {integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==}
842
+
'@jridgewell/gen-mapping@0.3.13':
843
+
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
844
+
845
+
'@jridgewell/remapping@2.3.5':
846
+
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
854
847
855
848
'@jridgewell/resolve-uri@3.1.2':
856
849
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
857
850
engines: {node: '>=6.0.0'}
858
851
859
-
'@jridgewell/sourcemap-codec@1.5.4':
860
-
resolution: {integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==}
852
+
'@jridgewell/sourcemap-codec@1.5.5':
853
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
861
854
862
-
'@jridgewell/trace-mapping@0.3.29':
863
-
resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==}
855
+
'@jridgewell/trace-mapping@0.3.31':
856
+
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
864
857
865
-
'@libsql/client@0.15.5':
866
-
resolution: {integrity: sha512-bbTpLdIMH1GcJfvNoh/m0HlHV/RmCz8tt/QCld6pM0C0ttZTsVyZ+PLn42/UxEvyTe2QcNa9w8qHr8NmwKV+1g==}
858
+
'@libsql/client@0.15.15':
859
+
resolution: {integrity: sha512-twC0hQxPNHPKfeOv3sNT6u2pturQjLcI+CnpTM0SjRpocEGgfiZ7DWKXLNnsothjyJmDqEsBQJ5ztq9Wlu470w==}
867
860
868
-
'@libsql/core@0.15.5':
869
-
resolution: {integrity: sha512-18hhESfHuOdBNAXIAqZbXfe1xskpOn+vEuYIbWgtbzq7On8lGBA1FASQ8LpzBsP+Xv8fK2JoiDKIFDTc8jQ3mg==}
861
+
'@libsql/core@0.15.15':
862
+
resolution: {integrity: sha512-C88Z6UKl+OyuKKPwz224riz02ih/zHYI3Ho/LAcVOgjsunIRZoBw7fjRfaH9oPMmSNeQfhGklSG2il1URoOIsA==}
870
863
871
-
'@libsql/darwin-arm64@0.5.9':
872
-
resolution: {integrity: sha512-gxvDYfp54CmsjfJ6o3XFyRS+FEikrDMiPwTD0eKUJHdwfMlO//C/TTr5gcLB7LHAaknaxS8w4XEMrL/MP2UQ7A==}
864
+
'@libsql/darwin-arm64@0.5.22':
865
+
resolution: {integrity: sha512-4B8ZlX3nIDPndfct7GNe0nI3Yw6ibocEicWdC4fvQbSs/jdq/RC2oCsoJxJ4NzXkvktX70C1J4FcmmoBy069UA==}
873
866
cpu: [arm64]
874
867
os: [darwin]
875
868
876
-
'@libsql/darwin-x64@0.5.9':
877
-
resolution: {integrity: sha512-bOy7R9xVlSsvEfNLGXnqu0TcFiO/r9c1+7jw1asZCtstf01H+LDyi4p9MsGIuiwZXwFiO5zd8N4r6QQjZmq+Jg==}
869
+
'@libsql/darwin-x64@0.5.22':
870
+
resolution: {integrity: sha512-ny2HYWt6lFSIdNFzUFIJ04uiW6finXfMNJ7wypkAD8Pqdm6nAByO+Fdqu8t7sD0sqJGeUCiOg480icjyQ2/8VA==}
878
871
cpu: [x64]
879
872
os: [darwin]
880
873
···
888
881
'@libsql/isomorphic-ws@0.1.5':
889
882
resolution: {integrity: sha512-DtLWIH29onUYR00i0GlQ3UdcTRC6EP4u9w/h9LxpUZJWRMARk6dQwZ6Jkd+QdwVpuAOrdxt18v0K2uIYR3fwFg==}
890
883
891
-
'@libsql/linux-arm-gnueabihf@0.5.9':
892
-
resolution: {integrity: sha512-WyE6x1PBZ9puVKstt/JaaF4ofdwwCYkRgNDHDeYwUKFa+tvp02TAYIE4xlV2c47NeT7txOIWPj71VhBWn7nKlQ==}
884
+
'@libsql/linux-arm-gnueabihf@0.5.22':
885
+
resolution: {integrity: sha512-3Uo3SoDPJe/zBnyZKosziRGtszXaEtv57raWrZIahtQDsjxBVjuzYQinCm9LRCJCUT5t2r5Z5nLDPJi2CwZVoA==}
893
886
cpu: [arm]
894
887
os: [linux]
895
888
896
-
'@libsql/linux-arm-musleabihf@0.5.9':
897
-
resolution: {integrity: sha512-Wea6dgnT9THDxoooxExxwE1wlXEZ1sgd9LywE8b8OWuZq8ufnKmqbI67gfvGz2TmSrgxui1g1BX6Bo/Q3Kg5CQ==}
889
+
'@libsql/linux-arm-musleabihf@0.5.22':
890
+
resolution: {integrity: sha512-LCsXh07jvSojTNJptT9CowOzwITznD+YFGGW+1XxUr7fS+7/ydUrpDfsMX7UqTqjm7xG17eq86VkWJgHJfvpNg==}
898
891
cpu: [arm]
899
892
os: [linux]
900
893
901
-
'@libsql/linux-arm64-gnu@0.5.9':
902
-
resolution: {integrity: sha512-l8GhvzCXL23yLa7TfEz9Q5Pvjf/hxVosntEp2kzdhEfZ5ikmCf9C/Qrelv55LHIuFlJqv3cFkJoo5q+0DG1PYg==}
894
+
'@libsql/linux-arm64-gnu@0.5.22':
895
+
resolution: {integrity: sha512-KSdnOMy88c9mpOFKUEzPskSaF3VLflfSUCBwas/pn1/sV3pEhtMF6H8VUCd2rsedwoukeeCSEONqX7LLnQwRMA==}
903
896
cpu: [arm64]
904
897
os: [linux]
905
898
906
-
'@libsql/linux-arm64-musl@0.5.9':
907
-
resolution: {integrity: sha512-DlMU/yuahOc8digrZgsKHqf4DxpCaX8Ri+PO/wC+CVZ6OsXEnvr11oamDokMDTMcajixf79c4b3/P0tK3xaxLw==}
899
+
'@libsql/linux-arm64-musl@0.5.22':
900
+
resolution: {integrity: sha512-mCHSMAsDTLK5YH//lcV3eFEgiR23Ym0U9oEvgZA0667gqRZg/2px+7LshDvErEKv2XZ8ixzw3p1IrBzLQHGSsw==}
908
901
cpu: [arm64]
909
902
os: [linux]
910
903
911
-
'@libsql/linux-x64-gnu@0.5.9':
912
-
resolution: {integrity: sha512-RG7c8qCmTSVjbsiRSfEVVk2vstsw65Q8Sjtsbet5W5ORe2fmCYnrXfaDxEIm824bhTFeQDiTNdBSKTRtjWnAVw==}
904
+
'@libsql/linux-x64-gnu@0.5.22':
905
+
resolution: {integrity: sha512-kNBHaIkSg78Y4BqAdgjcR2mBilZXs4HYkAmi58J+4GRwDQZh5fIUWbnQvB9f95DkWUIGVeenqLRFY2pcTmlsew==}
913
906
cpu: [x64]
914
907
os: [linux]
915
908
916
-
'@libsql/linux-x64-musl@0.5.9':
917
-
resolution: {integrity: sha512-omyqxkFA7m9lhiYkWWiZSpMcR0Fnb5xJH3TsYH7PeFrTzl85DgiGlvUBbpzZw/R6WKE4iCywWlnSr4q0W6NsJg==}
909
+
'@libsql/linux-x64-musl@0.5.22':
910
+
resolution: {integrity: sha512-UZ4Xdxm4pu3pQXjvfJiyCzZop/9j/eA2JjmhMaAhe3EVLH2g11Fy4fwyUp9sT1QJYR1kpc2JLuybPM0kuXv/Tg==}
918
911
cpu: [x64]
919
912
os: [linux]
920
913
921
-
'@libsql/win32-x64-msvc@0.5.9':
922
-
resolution: {integrity: sha512-wQniH0FbqlLAFKlgTG4ThD6v49S08VApLMTZxXr4a1vELgaiVI/nFwPm5LrSHkoMSXU9nxOZZA+momso9pgZtg==}
914
+
'@libsql/win32-x64-msvc@0.5.22':
915
+
resolution: {integrity: sha512-Fj0j8RnBpo43tVZUVoNK6BV/9AtDUM5S7DF3LB4qTYg1LMSZqi3yeCneUTLJD6XomQJlZzbI4mst89yspVSAnA==}
923
916
cpu: [x64]
924
917
os: [win32]
925
918
···
929
922
'@neon-rs/load@0.0.4':
930
923
resolution: {integrity: sha512-kTPhdZyTQxB+2wpiRcFWrDcejc4JI6tkPuS7UZCG4l6Zvc5kU/gGQ/ozvHTh1XR5tS+UlfAfGuPajjzQjCiHCw==}
931
924
932
-
'@next/env@15.4.6':
933
-
resolution: {integrity: sha512-yHDKVTcHrZy/8TWhj0B23ylKv5ypocuCwey9ZqPyv4rPdUdRzpGCkSi03t04KBPyU96kxVtUqx6O3nE1kpxASQ==}
925
+
'@next/env@16.0.10':
926
+
resolution: {integrity: sha512-8tuaQkyDVgeONQ1MeT9Mkk8pQmZapMKFh5B+OrFUlG3rVmYTXcXlBetBgTurKXGaIZvkoqRT9JL5K3phXcgang==}
934
927
935
-
'@next/eslint-plugin-next@15.4.6':
936
-
resolution: {integrity: sha512-2NOu3ln+BTcpnbIDuxx6MNq+pRrCyey4WSXGaJIyt0D2TYicHeO9QrUENNjcf673n3B1s7hsiV5xBYRCK1Q8kA==}
928
+
'@next/eslint-plugin-next@16.0.10':
929
+
resolution: {integrity: sha512-b2NlWN70bbPLmfyoLvvidPKWENBYYIe017ZGUpElvQjDytCWgxPJx7L9juxHt0xHvNVA08ZHJdOyhGzon/KJuw==}
937
930
938
-
'@next/swc-darwin-arm64@15.4.6':
939
-
resolution: {integrity: sha512-667R0RTP4DwxzmrqTs4Lr5dcEda9OxuZsVFsjVtxVMVhzSpo6nLclXejJVfQo2/g7/Z9qF3ETDmN3h65mTjpTQ==}
931
+
'@next/swc-darwin-arm64@16.0.10':
932
+
resolution: {integrity: sha512-4XgdKtdVsaflErz+B5XeG0T5PeXKDdruDf3CRpnhN+8UebNa5N2H58+3GDgpn/9GBurrQ1uWW768FfscwYkJRg==}
940
933
engines: {node: '>= 10'}
941
934
cpu: [arm64]
942
935
os: [darwin]
943
936
944
-
'@next/swc-darwin-x64@15.4.6':
945
-
resolution: {integrity: sha512-KMSFoistFkaiQYVQQnaU9MPWtp/3m0kn2Xed1Ces5ll+ag1+rlac20sxG+MqhH2qYWX1O2GFOATQXEyxKiIscg==}
937
+
'@next/swc-darwin-x64@16.0.10':
938
+
resolution: {integrity: sha512-spbEObMvRKkQ3CkYVOME+ocPDFo5UqHb8EMTS78/0mQ+O1nqE8toHJVioZo4TvebATxgA8XMTHHrScPrn68OGw==}
946
939
engines: {node: '>= 10'}
947
940
cpu: [x64]
948
941
os: [darwin]
949
942
950
-
'@next/swc-linux-arm64-gnu@15.4.6':
951
-
resolution: {integrity: sha512-PnOx1YdO0W7m/HWFeYd2A6JtBO8O8Eb9h6nfJia2Dw1sRHoHpNf6lN1U4GKFRzRDBi9Nq2GrHk9PF3Vmwf7XVw==}
943
+
'@next/swc-linux-arm64-gnu@16.0.10':
944
+
resolution: {integrity: sha512-uQtWE3X0iGB8apTIskOMi2w/MKONrPOUCi5yLO+v3O8Mb5c7K4Q5KD1jvTpTF5gJKa3VH/ijKjKUq9O9UhwOYw==}
952
945
engines: {node: '>= 10'}
953
946
cpu: [arm64]
954
947
os: [linux]
955
948
956
-
'@next/swc-linux-arm64-musl@15.4.6':
957
-
resolution: {integrity: sha512-XBbuQddtY1p5FGPc2naMO0kqs4YYtLYK/8aPausI5lyOjr4J77KTG9mtlU4P3NwkLI1+OjsPzKVvSJdMs3cFaw==}
949
+
'@next/swc-linux-arm64-musl@16.0.10':
950
+
resolution: {integrity: sha512-llA+hiDTrYvyWI21Z0L1GiXwjQaanPVQQwru5peOgtooeJ8qx3tlqRV2P7uH2pKQaUfHxI/WVarvI5oYgGxaTw==}
958
951
engines: {node: '>= 10'}
959
952
cpu: [arm64]
960
953
os: [linux]
961
954
962
-
'@next/swc-linux-x64-gnu@15.4.6':
963
-
resolution: {integrity: sha512-+WTeK7Qdw82ez3U9JgD+igBAP75gqZ1vbK6R8PlEEuY0OIe5FuYXA4aTjL811kWPf7hNeslD4hHK2WoM9W0IgA==}
955
+
'@next/swc-linux-x64-gnu@16.0.10':
956
+
resolution: {integrity: sha512-AK2q5H0+a9nsXbeZ3FZdMtbtu9jxW4R/NgzZ6+lrTm3d6Zb7jYrWcgjcpM1k8uuqlSy4xIyPR2YiuUr+wXsavA==}
964
957
engines: {node: '>= 10'}
965
958
cpu: [x64]
966
959
os: [linux]
967
960
968
-
'@next/swc-linux-x64-musl@15.4.6':
969
-
resolution: {integrity: sha512-XP824mCbgQsK20jlXKrUpZoh/iO3vUWhMpxCz8oYeagoiZ4V0TQiKy0ASji1KK6IAe3DYGfj5RfKP6+L2020OQ==}
961
+
'@next/swc-linux-x64-musl@16.0.10':
962
+
resolution: {integrity: sha512-1TDG9PDKivNw5550S111gsO4RGennLVl9cipPhtkXIFVwo31YZ73nEbLjNC8qG3SgTz/QZyYyaFYMeY4BKZR/g==}
970
963
engines: {node: '>= 10'}
971
964
cpu: [x64]
972
965
os: [linux]
973
966
974
-
'@next/swc-win32-arm64-msvc@15.4.6':
975
-
resolution: {integrity: sha512-FxrsenhUz0LbgRkNWx6FRRJIPe/MI1JRA4W4EPd5leXO00AZ6YU8v5vfx4MDXTvN77lM/EqsE3+6d2CIeF5NYg==}
967
+
'@next/swc-win32-arm64-msvc@16.0.10':
968
+
resolution: {integrity: sha512-aEZIS4Hh32xdJQbHz121pyuVZniSNoqDVx1yIr2hy+ZwJGipeqnMZBJHyMxv2tiuAXGx6/xpTcQJ6btIiBjgmg==}
976
969
engines: {node: '>= 10'}
977
970
cpu: [arm64]
978
971
os: [win32]
979
972
980
-
'@next/swc-win32-x64-msvc@15.4.6':
981
-
resolution: {integrity: sha512-T4ufqnZ4u88ZheczkBTtOF+eKaM14V8kbjud/XrAakoM5DKQWjW09vD6B9fsdsWS2T7D5EY31hRHdta7QKWOng==}
973
+
'@next/swc-win32-x64-msvc@16.0.10':
974
+
resolution: {integrity: sha512-E+njfCoFLb01RAFEnGZn6ERoOqhK1Gl3Lfz1Kjnj0Ulfu7oJbuMyvBKNj/bw8XZnenHDASlygTjZICQW+rYW1Q==}
982
975
engines: {node: '>= 10'}
983
976
cpu: [x64]
984
977
os: [win32]
···
999
992
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
1000
993
engines: {node: '>=12.4.0'}
1001
994
1002
-
'@octokit/auth-token@5.1.2':
1003
-
resolution: {integrity: sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==}
1004
-
engines: {node: '>= 18'}
1005
-
1006
-
'@octokit/core@6.1.5':
1007
-
resolution: {integrity: sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg==}
1008
-
engines: {node: '>= 18'}
995
+
'@octokit/auth-token@6.0.0':
996
+
resolution: {integrity: sha512-P4YJBPdPSpWTQ1NU4XYdvHvXJJDxM6YwpS0FZHRgP7YFkdVxsWcpWGy/NVqlAA7PcPCnMacXlRm1y2PFZRWL/w==}
997
+
engines: {node: '>= 20'}
1009
998
1010
-
'@octokit/endpoint@10.1.4':
1011
-
resolution: {integrity: sha512-OlYOlZIsfEVZm5HCSR8aSg02T2lbUWOsCQoPKfTXJwDzcHQBrVBGdGXb89dv2Kw2ToZaRtudp8O3ZIYoaOjKlA==}
1012
-
engines: {node: '>= 18'}
999
+
'@octokit/core@7.0.6':
1000
+
resolution: {integrity: sha512-DhGl4xMVFGVIyMwswXeyzdL4uXD5OGILGX5N8Y+f6W7LhC1Ze2poSNrkF/fedpVDHEEZ+PHFW0vL14I+mm8K3Q==}
1001
+
engines: {node: '>= 20'}
1013
1002
1014
-
'@octokit/graphql@8.2.2':
1015
-
resolution: {integrity: sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==}
1016
-
engines: {node: '>= 18'}
1003
+
'@octokit/endpoint@11.0.2':
1004
+
resolution: {integrity: sha512-4zCpzP1fWc7QlqunZ5bSEjxc6yLAlRTnDwKtgXfcI/FxxGoqedDG8V2+xJ60bV2kODqcGB+nATdtap/XYq2NZQ==}
1005
+
engines: {node: '>= 20'}
1017
1006
1018
-
'@octokit/openapi-types@24.2.0':
1019
-
resolution: {integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==}
1007
+
'@octokit/graphql@9.0.3':
1008
+
resolution: {integrity: sha512-grAEuupr/C1rALFnXTv6ZQhFuL1D8G5y8CN04RgrO4FIPMrtm+mcZzFG7dcBm+nq+1ppNixu+Jd78aeJOYxlGA==}
1009
+
engines: {node: '>= 20'}
1020
1010
1021
-
'@octokit/openapi-types@25.0.0':
1022
-
resolution: {integrity: sha512-FZvktFu7HfOIJf2BScLKIEYjDsw6RKc7rBJCdvCTfKsVnx2GEB/Nbzjr29DUdb7vQhlzS/j8qDzdditP0OC6aw==}
1011
+
'@octokit/openapi-types@27.0.0':
1012
+
resolution: {integrity: sha512-whrdktVs1h6gtR+09+QsNk2+FO+49j6ga1c55YZudfEG+oKJVvJLQi3zkOm5JjiUXAagWK2tI2kTGKJ2Ys7MGA==}
1023
1013
1024
-
'@octokit/plugin-paginate-rest@11.6.0':
1025
-
resolution: {integrity: sha512-n5KPteiF7pWKgBIBJSk8qzoZWcUkza2O6A0za97pMGVrGfPdltxrfmfF5GucHYvHGZD8BdaZmmHGz5cX/3gdpw==}
1026
-
engines: {node: '>= 18'}
1014
+
'@octokit/plugin-paginate-rest@14.0.0':
1015
+
resolution: {integrity: sha512-fNVRE7ufJiAA3XUrha2omTA39M6IXIc6GIZLvlbsm8QOQCYvpq/LkMNGyFlB1d8hTDzsAXa3OKtybdMAYsV/fw==}
1016
+
engines: {node: '>= 20'}
1027
1017
peerDependencies:
1028
1018
'@octokit/core': '>=6'
1029
1019
1030
-
'@octokit/plugin-request-log@5.3.1':
1031
-
resolution: {integrity: sha512-n/lNeCtq+9ofhC15xzmJCNKP2BWTv8Ih2TTy+jatNCCq/gQP/V7rK3fjIfuz0pDWDALO/o/4QY4hyOF6TQQFUw==}
1032
-
engines: {node: '>= 18'}
1020
+
'@octokit/plugin-request-log@6.0.0':
1021
+
resolution: {integrity: sha512-UkOzeEN3W91/eBq9sPZNQ7sUBvYCqYbrrD8gTbBuGtHEuycE4/awMXcYvx6sVYo7LypPhmQwwpUe4Yyu4QZN5Q==}
1022
+
engines: {node: '>= 20'}
1033
1023
peerDependencies:
1034
1024
'@octokit/core': '>=6'
1035
1025
1036
-
'@octokit/plugin-rest-endpoint-methods@13.5.0':
1037
-
resolution: {integrity: sha512-9Pas60Iv9ejO3WlAX3maE1+38c5nqbJXV5GrncEfkndIpZrJ/WPMRd2xYDcPPEt5yzpxcjw9fWNoPhsSGzqKqw==}
1038
-
engines: {node: '>= 18'}
1026
+
'@octokit/plugin-rest-endpoint-methods@17.0.0':
1027
+
resolution: {integrity: sha512-B5yCyIlOJFPqUUeiD0cnBJwWJO8lkJs5d8+ze9QDP6SvfiXSz1BF+91+0MeI1d2yxgOhU/O+CvtiZ9jSkHhFAw==}
1028
+
engines: {node: '>= 20'}
1039
1029
peerDependencies:
1040
1030
'@octokit/core': '>=6'
1041
1031
1042
-
'@octokit/request-error@6.1.8':
1043
-
resolution: {integrity: sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ==}
1044
-
engines: {node: '>= 18'}
1032
+
'@octokit/request-error@7.1.0':
1033
+
resolution: {integrity: sha512-KMQIfq5sOPpkQYajXHwnhjCC0slzCNScLHs9JafXc4RAJI+9f+jNDlBNaIMTvazOPLgb4BnlhGJOTbnN0wIjPw==}
1034
+
engines: {node: '>= 20'}
1045
1035
1046
-
'@octokit/request@9.2.3':
1047
-
resolution: {integrity: sha512-Ma+pZU8PXLOEYzsWf0cn/gY+ME57Wq8f49WTXA8FMHp2Ps9djKw//xYJ1je8Hm0pR2lU9FUGeJRWOtxq6olt4w==}
1048
-
engines: {node: '>= 18'}
1036
+
'@octokit/request@10.0.7':
1037
+
resolution: {integrity: sha512-v93h0i1yu4idj8qFPZwjehoJx4j3Ntn+JhXsdJrG9pYaX6j/XRz2RmasMUHtNgQD39nrv/VwTWSqK0RNXR8upA==}
1038
+
engines: {node: '>= 20'}
1049
1039
1050
-
'@octokit/rest@21.1.1':
1051
-
resolution: {integrity: sha512-sTQV7va0IUVZcntzy1q3QqPm/r8rWtDCqpRAmb8eXXnKkjoQEtFe3Nt5GTVsHft+R6jJoHeSiVLcgcvhtue/rg==}
1052
-
engines: {node: '>= 18'}
1053
-
1054
-
'@octokit/types@13.10.0':
1055
-
resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==}
1040
+
'@octokit/rest@22.0.1':
1041
+
resolution: {integrity: sha512-Jzbhzl3CEexhnivb1iQ0KJ7s5vvjMWcmRtq5aUsKmKDrRW6z3r84ngmiFKFvpZjpiU/9/S6ITPFRpn5s/3uQJw==}
1042
+
engines: {node: '>= 20'}
1056
1043
1057
-
'@octokit/types@14.0.0':
1058
-
resolution: {integrity: sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==}
1044
+
'@octokit/types@16.0.0':
1045
+
resolution: {integrity: sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg==}
1059
1046
1060
1047
'@opentelemetry/api@1.9.0':
1061
1048
resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
···
1075
1062
'@radix-ui/number@1.1.1':
1076
1063
resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
1077
1064
1078
-
'@radix-ui/primitive@1.1.2':
1079
-
resolution: {integrity: sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA==}
1065
+
'@radix-ui/primitive@1.1.3':
1066
+
resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
1080
1067
1081
-
'@radix-ui/react-accordion@1.2.10':
1082
-
resolution: {integrity: sha512-x+URzV1siKmeXPSUIQ22L81qp2eOhjpy3tgteF+zOr4d1u0qJnFuyBF4MoQRhmKP6ivDxlvDAvqaF77gh7DOIw==}
1068
+
'@radix-ui/react-accordion@1.2.12':
1069
+
resolution: {integrity: sha512-T4nygeh9YE9dLRPhAHSeOZi7HBXo+0kYIPJXayZfvWOWA0+n3dESrZbjfDPUABkUNym6Hd+f2IR113To8D2GPA==}
1083
1070
peerDependencies:
1084
1071
'@types/react': 19.1.10
1085
1072
'@types/react-dom': 19.1.7
···
1091
1078
'@types/react-dom':
1092
1079
optional: true
1093
1080
1094
-
'@radix-ui/react-alert-dialog@1.1.14':
1095
-
resolution: {integrity: sha512-IOZfZ3nPvN6lXpJTBCunFQPRSvK8MDgSc1FB85xnIpUKOw9en0dJj8JmCAxV7BiZdtYlUpmrQjoTFkVYtdoWzQ==}
1081
+
'@radix-ui/react-alert-dialog@1.1.15':
1082
+
resolution: {integrity: sha512-oTVLkEw5GpdRe29BqJ0LSDFWI3qu0vR1M0mUkOQWDIUnY/QIkLpgDMWuKxP94c2NAC2LGcgVhG1ImF3jkZ5wXw==}
1096
1083
peerDependencies:
1097
1084
'@types/react': 19.1.10
1098
1085
'@types/react-dom': 19.1.7
···
1104
1091
'@types/react-dom':
1105
1092
optional: true
1106
1093
1107
-
'@radix-ui/react-arrow@1.1.4':
1108
-
resolution: {integrity: sha512-qz+fxrqgNxG0dYew5l7qR3c7wdgRu1XVUHGnGYX7rg5HM4p9SWaRmJwfgR3J0SgyUKayLmzQIun+N6rWRgiRKw==}
1109
-
peerDependencies:
1110
-
'@types/react': 19.1.10
1111
-
'@types/react-dom': 19.1.7
1112
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1113
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1114
-
peerDependenciesMeta:
1115
-
'@types/react':
1116
-
optional: true
1117
-
'@types/react-dom':
1118
-
optional: true
1119
-
1120
-
'@radix-ui/react-avatar@1.1.7':
1121
-
resolution: {integrity: sha512-V7ODUt4mUoJTe3VUxZw6nfURxaPALVqmDQh501YmaQsk3D8AZQrOPRnfKn4H7JGDLBc0KqLhT94H79nV88ppNg==}
1094
+
'@radix-ui/react-arrow@1.1.7':
1095
+
resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
1122
1096
peerDependencies:
1123
1097
'@types/react': 19.1.10
1124
1098
'@types/react-dom': 19.1.7
···
1130
1104
'@types/react-dom':
1131
1105
optional: true
1132
1106
1133
-
'@radix-ui/react-checkbox@1.2.3':
1134
-
resolution: {integrity: sha512-pHVzDYsnaDmBlAuwim45y3soIN8H4R7KbkSVirGhXO+R/kO2OLCe0eucUEbddaTcdMHHdzcIGHtZSMSQlA+apw==}
1107
+
'@radix-ui/react-avatar@1.1.11':
1108
+
resolution: {integrity: sha512-0Qk603AHGV28BOBO34p7IgD5m+V5Sg/YovfayABkoDDBM5d3NCx0Mp4gGrjzLGes1jV5eNOE1r3itqOR33VC6Q==}
1135
1109
peerDependencies:
1136
1110
'@types/react': 19.1.10
1137
1111
'@types/react-dom': 19.1.7
···
1143
1117
'@types/react-dom':
1144
1118
optional: true
1145
1119
1146
-
'@radix-ui/react-collapsible@1.1.10':
1147
-
resolution: {integrity: sha512-O2mcG3gZNkJ/Ena34HurA3llPOEA/M4dJtIRMa6y/cknRDC8XY5UZBInKTsUwW5cUue9A4k0wi1XU5fKBzKe1w==}
1120
+
'@radix-ui/react-checkbox@1.3.3':
1121
+
resolution: {integrity: sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==}
1148
1122
peerDependencies:
1149
1123
'@types/react': 19.1.10
1150
1124
'@types/react-dom': 19.1.7
···
1156
1130
'@types/react-dom':
1157
1131
optional: true
1158
1132
1159
-
'@radix-ui/react-collection@1.1.4':
1160
-
resolution: {integrity: sha512-cv4vSf7HttqXilDnAnvINd53OTl1/bjUYVZrkFnA7nwmY9Ob2POUy0WY0sfqBAe1s5FyKsyceQlqiEGPYNTadg==}
1161
-
peerDependencies:
1162
-
'@types/react': 19.1.10
1163
-
'@types/react-dom': 19.1.7
1164
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1165
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1166
-
peerDependenciesMeta:
1167
-
'@types/react':
1168
-
optional: true
1169
-
'@types/react-dom':
1170
-
optional: true
1171
-
1172
-
'@radix-ui/react-collection@1.1.6':
1173
-
resolution: {integrity: sha512-PbhRFK4lIEw9ADonj48tiYWzkllz81TM7KVYyyMMw2cwHO7D5h4XKEblL8NlaRisTK3QTe6tBEhDccFUryxHBQ==}
1133
+
'@radix-ui/react-collapsible@1.1.12':
1134
+
resolution: {integrity: sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA==}
1174
1135
peerDependencies:
1175
1136
'@types/react': 19.1.10
1176
1137
'@types/react-dom': 19.1.7
···
1213
1174
'@types/react':
1214
1175
optional: true
1215
1176
1216
-
'@radix-ui/react-dialog@1.1.11':
1217
-
resolution: {integrity: sha512-yI7S1ipkP5/+99qhSI6nthfo/tR6bL6Zgxi/+1UO6qPa6UeM6nlafWcQ65vB4rU2XjgjMfMhI3k9Y5MztA62VQ==}
1177
+
'@radix-ui/react-context@1.1.3':
1178
+
resolution: {integrity: sha512-ieIFACdMpYfMEjF0rEf5KLvfVyIkOz6PDGyNnP+u+4xQ6jny3VCgA4OgXOwNx2aUkxn8zx9fiVcM8CfFYv9Lxw==}
1218
1179
peerDependencies:
1219
1180
'@types/react': 19.1.10
1220
-
'@types/react-dom': 19.1.7
1221
1181
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1222
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1223
1182
peerDependenciesMeta:
1224
1183
'@types/react':
1225
1184
optional: true
1226
-
'@types/react-dom':
1227
-
optional: true
1228
1185
1229
-
'@radix-ui/react-dialog@1.1.14':
1230
-
resolution: {integrity: sha512-+CpweKjqpzTmwRwcYECQcNYbI8V9VSQt0SNFKeEBLgfucbsLssU6Ppq7wUdNXEGb573bMjFhVjKVll8rmV6zMw==}
1186
+
'@radix-ui/react-dialog@1.1.15':
1187
+
resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
1231
1188
peerDependencies:
1232
1189
'@types/react': 19.1.10
1233
1190
'@types/react-dom': 19.1.7
···
1248
1205
'@types/react':
1249
1206
optional: true
1250
1207
1251
-
'@radix-ui/react-dismissable-layer@1.1.10':
1252
-
resolution: {integrity: sha512-IM1zzRV4W3HtVgftdQiiOmA0AdJlCtMLe00FXaHwgt3rAnNsIyDqshvkIW3hj/iu5hu8ERP7KIYki6NkqDxAwQ==}
1208
+
'@radix-ui/react-dismissable-layer@1.1.11':
1209
+
resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
1253
1210
peerDependencies:
1254
1211
'@types/react': 19.1.10
1255
1212
'@types/react-dom': 19.1.7
···
1261
1218
'@types/react-dom':
1262
1219
optional: true
1263
1220
1264
-
'@radix-ui/react-dismissable-layer@1.1.7':
1265
-
resolution: {integrity: sha512-j5+WBUdhccJsmH5/H0K6RncjDtoALSEr6jbkaZu+bjw6hOPOhHycr6vEUujl+HBK8kjUfWcoCJXxP6e4lUlMZw==}
1221
+
'@radix-ui/react-dropdown-menu@2.1.16':
1222
+
resolution: {integrity: sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==}
1266
1223
peerDependencies:
1267
1224
'@types/react': 19.1.10
1268
1225
'@types/react-dom': 19.1.7
···
1274
1231
'@types/react-dom':
1275
1232
optional: true
1276
1233
1277
-
'@radix-ui/react-dropdown-menu@2.1.12':
1278
-
resolution: {integrity: sha512-VJoMs+BWWE7YhzEQyVwvF9n22Eiyr83HotCVrMQzla/OwRovXCgah7AcaEr4hMNj4gJxSdtIbcHGvmJXOoJVHA==}
1279
-
peerDependencies:
1280
-
'@types/react': 19.1.10
1281
-
'@types/react-dom': 19.1.7
1282
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1283
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1284
-
peerDependenciesMeta:
1285
-
'@types/react':
1286
-
optional: true
1287
-
'@types/react-dom':
1288
-
optional: true
1289
-
1290
-
'@radix-ui/react-focus-guards@1.1.2':
1291
-
resolution: {integrity: sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA==}
1234
+
'@radix-ui/react-focus-guards@1.1.3':
1235
+
resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
1292
1236
peerDependencies:
1293
1237
'@types/react': 19.1.10
1294
1238
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
···
1296
1240
'@types/react':
1297
1241
optional: true
1298
1242
1299
-
'@radix-ui/react-focus-scope@1.1.4':
1300
-
resolution: {integrity: sha512-r2annK27lIW5w9Ho5NyQgqs0MmgZSTIKXWpVCJaLC1q2kZrZkcqnmHkCHMEmv8XLvsLlurKMPT+kbKkRkm/xVA==}
1301
-
peerDependencies:
1302
-
'@types/react': 19.1.10
1303
-
'@types/react-dom': 19.1.7
1304
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1305
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1306
-
peerDependenciesMeta:
1307
-
'@types/react':
1308
-
optional: true
1309
-
'@types/react-dom':
1310
-
optional: true
1311
-
1312
1243
'@radix-ui/react-focus-scope@1.1.7':
1313
1244
resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
1314
1245
peerDependencies:
···
1331
1262
'@types/react':
1332
1263
optional: true
1333
1264
1334
-
'@radix-ui/react-label@2.1.4':
1335
-
resolution: {integrity: sha512-wy3dqizZnZVV4ja0FNnUhIWNwWdoldXrneEyUcVtLYDAt8ovGS4ridtMAOGgXBBIfggL4BOveVWsjXDORdGEQg==}
1336
-
peerDependencies:
1337
-
'@types/react': 19.1.10
1338
-
'@types/react-dom': 19.1.7
1339
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1340
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1341
-
peerDependenciesMeta:
1342
-
'@types/react':
1343
-
optional: true
1344
-
'@types/react-dom':
1345
-
optional: true
1346
-
1347
-
'@radix-ui/react-menu@2.1.12':
1348
-
resolution: {integrity: sha512-+qYq6LfbiGo97Zz9fioX83HCiIYYFNs8zAsVCMQrIakoNYylIzWuoD/anAD3UzvvR6cnswmfRFJFq/zYYq/k7Q==}
1265
+
'@radix-ui/react-label@2.1.8':
1266
+
resolution: {integrity: sha512-FmXs37I6hSBVDlO4y764TNz1rLgKwjJMQ0EGte6F3Cb3f4bIuHB/iLa/8I9VKkmOy+gNHq8rql3j686ACVV21A==}
1349
1267
peerDependencies:
1350
1268
'@types/react': 19.1.10
1351
1269
'@types/react-dom': 19.1.7
···
1357
1275
'@types/react-dom':
1358
1276
optional: true
1359
1277
1360
-
'@radix-ui/react-popover@1.1.11':
1361
-
resolution: {integrity: sha512-yFMfZkVA5G3GJnBgb2PxrrcLKm1ZLWXrbYVgdyTl//0TYEIHS9LJbnyz7WWcZ0qCq7hIlJZpRtxeSeIG5T5oJw==}
1278
+
'@radix-ui/react-menu@2.1.16':
1279
+
resolution: {integrity: sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==}
1362
1280
peerDependencies:
1363
1281
'@types/react': 19.1.10
1364
1282
'@types/react-dom': 19.1.7
···
1370
1288
'@types/react-dom':
1371
1289
optional: true
1372
1290
1373
-
'@radix-ui/react-popper@1.2.4':
1374
-
resolution: {integrity: sha512-3p2Rgm/a1cK0r/UVkx5F/K9v/EplfjAeIFCGOPYPO4lZ0jtg4iSQXt/YGTSLWaf4x7NG6Z4+uKFcylcTZjeqDA==}
1291
+
'@radix-ui/react-popover@1.1.15':
1292
+
resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==}
1375
1293
peerDependencies:
1376
1294
'@types/react': 19.1.10
1377
1295
'@types/react-dom': 19.1.7
···
1383
1301
'@types/react-dom':
1384
1302
optional: true
1385
1303
1386
-
'@radix-ui/react-portal@1.1.6':
1387
-
resolution: {integrity: sha512-XmsIl2z1n/TsYFLIdYam2rmFwf9OC/Sh2avkbmVMDuBZIe7hSpM0cYnWPAo7nHOVx8zTuwDZGByfcqLdnzp3Vw==}
1304
+
'@radix-ui/react-popper@1.2.8':
1305
+
resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==}
1388
1306
peerDependencies:
1389
1307
'@types/react': 19.1.10
1390
1308
'@types/react-dom': 19.1.7
···
1409
1327
'@types/react-dom':
1410
1328
optional: true
1411
1329
1412
-
'@radix-ui/react-presence@1.1.4':
1413
-
resolution: {integrity: sha512-ueDqRbdc4/bkaQT3GIpLQssRlFgWaL/U2z/S31qRwwLWoxHLgry3SIfCwhxeQNbirEUXFa+lq3RL3oBYXtcmIA==}
1414
-
peerDependencies:
1415
-
'@types/react': 19.1.10
1416
-
'@types/react-dom': 19.1.7
1417
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1418
-
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1419
-
peerDependenciesMeta:
1420
-
'@types/react':
1421
-
optional: true
1422
-
'@types/react-dom':
1423
-
optional: true
1424
-
1425
-
'@radix-ui/react-primitive@2.1.0':
1426
-
resolution: {integrity: sha512-/J/FhLdK0zVcILOwt5g+dH4KnkonCtkVJsa2G6JmvbbtZfBEI1gMsO3QMjseL4F/SwfAMt1Vc/0XKYKq+xJ1sw==}
1330
+
'@radix-ui/react-presence@1.1.5':
1331
+
resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
1427
1332
peerDependencies:
1428
1333
'@types/react': 19.1.10
1429
1334
'@types/react-dom': 19.1.7
···
1435
1340
'@types/react-dom':
1436
1341
optional: true
1437
1342
1438
-
'@radix-ui/react-primitive@2.1.2':
1439
-
resolution: {integrity: sha512-uHa+l/lKfxuDD2zjN/0peM/RhhSmRjr5YWdk/37EnSv1nJ88uvG85DPexSm8HdFQROd2VdERJ6ynXbkCFi+APw==}
1343
+
'@radix-ui/react-primitive@2.1.3':
1344
+
resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
1440
1345
peerDependencies:
1441
1346
'@types/react': 19.1.10
1442
1347
'@types/react-dom': 19.1.7
···
1448
1353
'@types/react-dom':
1449
1354
optional: true
1450
1355
1451
-
'@radix-ui/react-primitive@2.1.3':
1452
-
resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
1356
+
'@radix-ui/react-primitive@2.1.4':
1357
+
resolution: {integrity: sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg==}
1453
1358
peerDependencies:
1454
1359
'@types/react': 19.1.10
1455
1360
'@types/react-dom': 19.1.7
···
1461
1366
'@types/react-dom':
1462
1367
optional: true
1463
1368
1464
-
'@radix-ui/react-progress@1.1.4':
1465
-
resolution: {integrity: sha512-8rl9w7lJdcVPor47Dhws9mUHRHLE+8JEgyJRdNWCpGPa6HIlr3eh+Yn9gyx1CnCLbw5naHsI2gaO9dBWO50vzw==}
1369
+
'@radix-ui/react-progress@1.1.8':
1370
+
resolution: {integrity: sha512-+gISHcSPUJ7ktBy9RnTqbdKW78bcGke3t6taawyZ71pio1JewwGSJizycs7rLhGTvMJYCQB1DBK4KQsxs7U8dA==}
1466
1371
peerDependencies:
1467
1372
'@types/react': 19.1.10
1468
1373
'@types/react-dom': 19.1.7
···
1474
1379
'@types/react-dom':
1475
1380
optional: true
1476
1381
1477
-
'@radix-ui/react-roving-focus@1.1.7':
1478
-
resolution: {integrity: sha512-C6oAg451/fQT3EGbWHbCQjYTtbyjNO1uzQgMzwyivcHT3GKNEmu1q3UuREhN+HzHAVtv3ivMVK08QlC+PkYw9Q==}
1382
+
'@radix-ui/react-roving-focus@1.1.11':
1383
+
resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
1479
1384
peerDependencies:
1480
1385
'@types/react': 19.1.10
1481
1386
'@types/react-dom': 19.1.7
···
1487
1392
'@types/react-dom':
1488
1393
optional: true
1489
1394
1490
-
'@radix-ui/react-select@2.2.2':
1491
-
resolution: {integrity: sha512-HjkVHtBkuq+r3zUAZ/CvNWUGKPfuicGDbgtZgiQuFmNcV5F+Tgy24ep2nsAW2nFgvhGPJVqeBZa6KyVN0EyrBA==}
1395
+
'@radix-ui/react-select@2.2.6':
1396
+
resolution: {integrity: sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==}
1492
1397
peerDependencies:
1493
1398
'@types/react': 19.1.10
1494
1399
'@types/react-dom': 19.1.7
···
1500
1405
'@types/react-dom':
1501
1406
optional: true
1502
1407
1503
-
'@radix-ui/react-separator@1.1.4':
1504
-
resolution: {integrity: sha512-2fTm6PSiUm8YPq9W0E4reYuv01EE3aFSzt8edBiXqPHshF8N9+Kymt/k0/R+F3dkY5lQyB/zPtrP82phskLi7w==}
1408
+
'@radix-ui/react-separator@1.1.8':
1409
+
resolution: {integrity: sha512-sDvqVY4itsKwwSMEe0jtKgfTh+72Sy3gPmQpjqcQneqQ4PFmr/1I0YA+2/puilhggCe2gJcx5EBAYFkWkdpa5g==}
1505
1410
peerDependencies:
1506
1411
'@types/react': 19.1.10
1507
1412
'@types/react-dom': 19.1.7
···
1513
1418
'@types/react-dom':
1514
1419
optional: true
1515
1420
1516
-
'@radix-ui/react-slider@1.3.5':
1517
-
resolution: {integrity: sha512-rkfe2pU2NBAYfGaxa3Mqosi7VZEWX5CxKaanRv0vZd4Zhl9fvQrg0VM93dv3xGLGfrHuoTRF3JXH8nb9g+B3fw==}
1421
+
'@radix-ui/react-slider@1.3.6':
1422
+
resolution: {integrity: sha512-JPYb1GuM1bxfjMRlNLE+BcmBC8onfCi60Blk7OBqi2MLTFdS+8401U4uFjnwkOr49BLmXxLC6JHkvAsx5OJvHw==}
1518
1423
peerDependencies:
1519
1424
'@types/react': 19.1.10
1520
1425
'@types/react-dom': 19.1.7
···
1526
1431
'@types/react-dom':
1527
1432
optional: true
1528
1433
1529
-
'@radix-ui/react-slot@1.2.0':
1530
-
resolution: {integrity: sha512-ujc+V6r0HNDviYqIK3rW4ffgYiZ8g5DEHrGJVk4x7kTlLXRDILnKX9vAUYeIsLOoDpDJ0ujpqMkjH4w2ofuo6w==}
1531
-
peerDependencies:
1532
-
'@types/react': 19.1.10
1533
-
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1534
-
peerDependenciesMeta:
1535
-
'@types/react':
1536
-
optional: true
1537
-
1538
-
'@radix-ui/react-slot@1.2.2':
1539
-
resolution: {integrity: sha512-y7TBO4xN4Y94FvcWIOIh18fM4R1A8S4q1jhoz4PNzOoHsFcN8pogcFmZrTYAm4F9VRUrWP/Mw7xSKybIeRI+CQ==}
1434
+
'@radix-ui/react-slot@1.2.3':
1435
+
resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
1540
1436
peerDependencies:
1541
1437
'@types/react': 19.1.10
1542
1438
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
···
1544
1440
'@types/react':
1545
1441
optional: true
1546
1442
1547
-
'@radix-ui/react-slot@1.2.3':
1548
-
resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
1443
+
'@radix-ui/react-slot@1.2.4':
1444
+
resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
1549
1445
peerDependencies:
1550
1446
'@types/react': 19.1.10
1551
1447
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
···
1553
1449
'@types/react':
1554
1450
optional: true
1555
1451
1556
-
'@radix-ui/react-switch@1.2.2':
1557
-
resolution: {integrity: sha512-7Z8n6L+ifMIIYZ83f28qWSceUpkXuslI2FJ34+kDMTiyj91ENdpdQ7VCidrzj5JfwfZTeano/BnGBbu/jqa5rQ==}
1452
+
'@radix-ui/react-switch@1.2.6':
1453
+
resolution: {integrity: sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==}
1558
1454
peerDependencies:
1559
1455
'@types/react': 19.1.10
1560
1456
'@types/react-dom': 19.1.7
···
1566
1462
'@types/react-dom':
1567
1463
optional: true
1568
1464
1569
-
'@radix-ui/react-tabs@1.1.9':
1570
-
resolution: {integrity: sha512-KIjtwciYvquiW/wAFkELZCVnaNLBsYNhTNcvl+zfMAbMhRkcvNuCLXDDd22L0j7tagpzVh/QwbFpwAATg7ILPw==}
1465
+
'@radix-ui/react-tabs@1.1.13':
1466
+
resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==}
1571
1467
peerDependencies:
1572
1468
'@types/react': 19.1.10
1573
1469
'@types/react-dom': 19.1.7
···
1579
1475
'@types/react-dom':
1580
1476
optional: true
1581
1477
1582
-
'@radix-ui/react-toggle-group@1.1.7':
1583
-
resolution: {integrity: sha512-GRaPJhxrRSOqAcmcX3MwRL/SZACkoYdmoY9/sg7Bd5DhBYsB2t4co0NxTvVW8H7jUmieQDQwRtUlZ5Ta8UbgJA==}
1478
+
'@radix-ui/react-toggle-group@1.1.11':
1479
+
resolution: {integrity: sha512-5umnS0T8JQzQT6HbPyO7Hh9dgd82NmS36DQr+X/YJ9ctFNCiiQd6IJAYYZ33LUwm8M+taCz5t2ui29fHZc4Y6Q==}
1584
1480
peerDependencies:
1585
1481
'@types/react': 19.1.10
1586
1482
'@types/react-dom': 19.1.7
···
1592
1488
'@types/react-dom':
1593
1489
optional: true
1594
1490
1595
-
'@radix-ui/react-toggle@1.1.6':
1596
-
resolution: {integrity: sha512-3SeJxKeO3TO1zVw1Nl++Cp0krYk6zHDHMCUXXVkosIzl6Nxcvb07EerQpyD2wXQSJ5RZajrYAmPaydU8Hk1IyQ==}
1491
+
'@radix-ui/react-toggle@1.1.10':
1492
+
resolution: {integrity: sha512-lS1odchhFTeZv3xwHH31YPObmJn8gOg7Lq12inrr0+BH/l3Tsq32VfjqH1oh80ARM3mlkfMic15n0kg4sD1poQ==}
1597
1493
peerDependencies:
1598
1494
'@types/react': 19.1.10
1599
1495
'@types/react-dom': 19.1.7
···
1605
1501
'@types/react-dom':
1606
1502
optional: true
1607
1503
1608
-
'@radix-ui/react-tooltip@1.2.4':
1609
-
resolution: {integrity: sha512-DyW8VVeeMSSLFvAmnVnCwvI3H+1tpJFHT50r+tdOoMse9XqYDBCcyux8u3G2y+LOpt7fPQ6KKH0mhs+ce1+Z5w==}
1504
+
'@radix-ui/react-tooltip@1.2.8':
1505
+
resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==}
1610
1506
peerDependencies:
1611
1507
'@types/react': 19.1.10
1612
1508
'@types/react-dom': 19.1.7
···
1699
1595
'@types/react':
1700
1596
optional: true
1701
1597
1702
-
'@radix-ui/react-visually-hidden@1.2.0':
1703
-
resolution: {integrity: sha512-rQj0aAWOpCdCMRbI6pLQm8r7S2BM3YhTa0SzOYD55k+hJA8oo9J+H+9wLM9oMlZWOX/wJWPTzfDfmZkf7LvCfg==}
1598
+
'@radix-ui/react-visually-hidden@1.2.3':
1599
+
resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
1704
1600
peerDependencies:
1705
1601
'@types/react': 19.1.10
1706
1602
'@types/react-dom': 19.1.7
···
1715
1611
'@radix-ui/rect@1.1.1':
1716
1612
resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
1717
1613
1614
+
'@reduxjs/toolkit@2.11.2':
1615
+
resolution: {integrity: sha512-Kd6kAHTA6/nUpp8mySPqj3en3dm0tdMIgbttnQ1xFMVpufoj+ADi8pXLBsd4xzTRHQa7t/Jv8W5UnCuW4kuWMQ==}
1616
+
peerDependencies:
1617
+
react: ^16.9.0 || ^17.0.0 || ^18 || ^19
1618
+
react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0
1619
+
peerDependenciesMeta:
1620
+
react:
1621
+
optional: true
1622
+
react-redux:
1623
+
optional: true
1624
+
1718
1625
'@rtsao/scc@1.1.0':
1719
1626
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
1720
1627
1721
-
'@rushstack/eslint-patch@1.11.0':
1722
-
resolution: {integrity: sha512-zxnHvoMQVqewTJr/W4pKjF0bMGiKJv1WX7bSrkl46Hg0QjESbzBROWK0Wg4RphzSOS5Jiy7eFimmM3UgMrMZbQ==}
1723
-
1724
-
'@sinclair/typebox@0.34.38':
1725
-
resolution: {integrity: sha512-HpkxMmc2XmZKhvaKIZZThlHmx1L0I/V1hWK1NubtlFnr6ZqdiOpV72TKudZUNQjZNsyDBay72qFEhEvb+bcwcA==}
1628
+
'@sinclair/typebox@0.34.41':
1629
+
resolution: {integrity: sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==}
1726
1630
1727
1631
'@sinonjs/commons@3.0.1':
1728
1632
resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
1729
1633
1730
1634
'@sinonjs/fake-timers@13.0.5':
1731
1635
resolution: {integrity: sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==}
1636
+
1637
+
'@standard-schema/spec@1.1.0':
1638
+
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
1639
+
1640
+
'@standard-schema/utils@0.3.0':
1641
+
resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
1732
1642
1733
1643
'@swc/core-darwin-arm64@1.13.3':
1734
1644
resolution: {integrity: sha512-ux0Ws4pSpBTqbDS9GlVP354MekB1DwYlbxXU3VhnDr4GBcCOimpocx62x7cFJkSpEBF8bmX8+/TTCGKh4PbyXw==}
···
1811
1721
peerDependencies:
1812
1722
'@swc/core': '*'
1813
1723
1814
-
'@swc/types@0.1.24':
1815
-
resolution: {integrity: sha512-tjTMh3V4vAORHtdTprLlfoMptu1WfTZG9Rsca6yOKyNYsRr+MUXutKmliB17orgSZk5DpnDxs8GUdd/qwYxOng==}
1724
+
'@swc/types@0.1.25':
1725
+
resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==}
1816
1726
1817
-
'@tabler/icons-react@3.31.0':
1818
-
resolution: {integrity: sha512-2rrCM5y/VnaVKnORpDdAua9SEGuJKVqPtWxeQ/vUVsgaUx30LDgBZph7/lterXxDY1IKR6NO//HDhWiifXTi3w==}
1727
+
'@tabler/icons-react@3.36.0':
1728
+
resolution: {integrity: sha512-sSZ00bEjTdTTskVFykq294RJq+9cFatwy4uYa78HcYBCXU1kSD1DIp5yoFsQXmybkIOKCjp18OnhAYk553UIfQ==}
1819
1729
peerDependencies:
1820
1730
react: '>= 16'
1821
1731
1822
-
'@tabler/icons@3.31.0':
1823
-
resolution: {integrity: sha512-dblAdeKY3+GA1U+Q9eziZ0ooVlZMHsE8dqP0RkwvRtEsAULoKOYaCUOcJ4oW1DjWegdxk++UAt2SlQVnmeHv+g==}
1732
+
'@tabler/icons@3.36.0':
1733
+
resolution: {integrity: sha512-z9OfTEG6QbaQWM9KBOxxUdpgvMUn0atageXyiaSc2gmYm51ORO8Ua7eUcjlks+Dc0YMK4rrodAFdK9SfjJ4ZcA==}
1824
1734
1825
-
'@tailwindcss/node@4.1.11':
1826
-
resolution: {integrity: sha512-yzhzuGRmv5QyU9qLNg4GTlYI6STedBWRE7NjxP45CsFYYq9taI0zJXZBMqIC/c8fViNLhmrbpSFS57EoxUmD6Q==}
1735
+
'@tailwindcss/node@4.1.18':
1736
+
resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
1827
1737
1828
-
'@tailwindcss/oxide-android-arm64@4.1.11':
1829
-
resolution: {integrity: sha512-3IfFuATVRUMZZprEIx9OGDjG3Ou3jG4xQzNTvjDoKmU9JdmoCohQJ83MYd0GPnQIu89YoJqvMM0G3uqLRFtetg==}
1738
+
'@tailwindcss/oxide-android-arm64@4.1.18':
1739
+
resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==}
1830
1740
engines: {node: '>= 10'}
1831
1741
cpu: [arm64]
1832
1742
os: [android]
1833
1743
1834
-
'@tailwindcss/oxide-darwin-arm64@4.1.11':
1835
-
resolution: {integrity: sha512-ESgStEOEsyg8J5YcMb1xl8WFOXfeBmrhAwGsFxxB2CxY9evy63+AtpbDLAyRkJnxLy2WsD1qF13E97uQyP1lfQ==}
1744
+
'@tailwindcss/oxide-darwin-arm64@4.1.18':
1745
+
resolution: {integrity: sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==}
1836
1746
engines: {node: '>= 10'}
1837
1747
cpu: [arm64]
1838
1748
os: [darwin]
1839
1749
1840
-
'@tailwindcss/oxide-darwin-x64@4.1.11':
1841
-
resolution: {integrity: sha512-EgnK8kRchgmgzG6jE10UQNaH9Mwi2n+yw1jWmof9Vyg2lpKNX2ioe7CJdf9M5f8V9uaQxInenZkOxnTVL3fhAw==}
1750
+
'@tailwindcss/oxide-darwin-x64@4.1.18':
1751
+
resolution: {integrity: sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==}
1842
1752
engines: {node: '>= 10'}
1843
1753
cpu: [x64]
1844
1754
os: [darwin]
1845
1755
1846
-
'@tailwindcss/oxide-freebsd-x64@4.1.11':
1847
-
resolution: {integrity: sha512-xdqKtbpHs7pQhIKmqVpxStnY1skuNh4CtbcyOHeX1YBE0hArj2romsFGb6yUmzkq/6M24nkxDqU8GYrKrz+UcA==}
1756
+
'@tailwindcss/oxide-freebsd-x64@4.1.18':
1757
+
resolution: {integrity: sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==}
1848
1758
engines: {node: '>= 10'}
1849
1759
cpu: [x64]
1850
1760
os: [freebsd]
1851
1761
1852
-
'@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11':
1853
-
resolution: {integrity: sha512-ryHQK2eyDYYMwB5wZL46uoxz2zzDZsFBwfjssgB7pzytAeCCa6glsiJGjhTEddq/4OsIjsLNMAiMlHNYnkEEeg==}
1762
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18':
1763
+
resolution: {integrity: sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==}
1854
1764
engines: {node: '>= 10'}
1855
1765
cpu: [arm]
1856
1766
os: [linux]
1857
1767
1858
-
'@tailwindcss/oxide-linux-arm64-gnu@4.1.11':
1859
-
resolution: {integrity: sha512-mYwqheq4BXF83j/w75ewkPJmPZIqqP1nhoghS9D57CLjsh3Nfq0m4ftTotRYtGnZd3eCztgbSPJ9QhfC91gDZQ==}
1768
+
'@tailwindcss/oxide-linux-arm64-gnu@4.1.18':
1769
+
resolution: {integrity: sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==}
1860
1770
engines: {node: '>= 10'}
1861
1771
cpu: [arm64]
1862
1772
os: [linux]
1863
1773
1864
-
'@tailwindcss/oxide-linux-arm64-musl@4.1.11':
1865
-
resolution: {integrity: sha512-m/NVRFNGlEHJrNVk3O6I9ggVuNjXHIPoD6bqay/pubtYC9QIdAMpS+cswZQPBLvVvEF6GtSNONbDkZrjWZXYNQ==}
1774
+
'@tailwindcss/oxide-linux-arm64-musl@4.1.18':
1775
+
resolution: {integrity: sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==}
1866
1776
engines: {node: '>= 10'}
1867
1777
cpu: [arm64]
1868
1778
os: [linux]
1869
1779
1870
-
'@tailwindcss/oxide-linux-x64-gnu@4.1.11':
1871
-
resolution: {integrity: sha512-YW6sblI7xukSD2TdbbaeQVDysIm/UPJtObHJHKxDEcW2exAtY47j52f8jZXkqE1krdnkhCMGqP3dbniu1Te2Fg==}
1780
+
'@tailwindcss/oxide-linux-x64-gnu@4.1.18':
1781
+
resolution: {integrity: sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==}
1872
1782
engines: {node: '>= 10'}
1873
1783
cpu: [x64]
1874
1784
os: [linux]
1875
1785
1876
-
'@tailwindcss/oxide-linux-x64-musl@4.1.11':
1877
-
resolution: {integrity: sha512-e3C/RRhGunWYNC3aSF7exsQkdXzQ/M+aYuZHKnw4U7KQwTJotnWsGOIVih0s2qQzmEzOFIJ3+xt7iq67K/p56Q==}
1786
+
'@tailwindcss/oxide-linux-x64-musl@4.1.18':
1787
+
resolution: {integrity: sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==}
1878
1788
engines: {node: '>= 10'}
1879
1789
cpu: [x64]
1880
1790
os: [linux]
1881
1791
1882
-
'@tailwindcss/oxide-wasm32-wasi@4.1.11':
1883
-
resolution: {integrity: sha512-Xo1+/GU0JEN/C/dvcammKHzeM6NqKovG+6921MR6oadee5XPBaKOumrJCXvopJ/Qb5TH7LX/UAywbqrP4lax0g==}
1792
+
'@tailwindcss/oxide-wasm32-wasi@4.1.18':
1793
+
resolution: {integrity: sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==}
1884
1794
engines: {node: '>=14.0.0'}
1885
1795
cpu: [wasm32]
1886
1796
bundledDependencies:
···
1891
1801
- '@emnapi/wasi-threads'
1892
1802
- tslib
1893
1803
1894
-
'@tailwindcss/oxide-win32-arm64-msvc@4.1.11':
1895
-
resolution: {integrity: sha512-UgKYx5PwEKrac3GPNPf6HVMNhUIGuUh4wlDFR2jYYdkX6pL/rn73zTq/4pzUm8fOjAn5L8zDeHp9iXmUGOXZ+w==}
1804
+
'@tailwindcss/oxide-win32-arm64-msvc@4.1.18':
1805
+
resolution: {integrity: sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==}
1896
1806
engines: {node: '>= 10'}
1897
1807
cpu: [arm64]
1898
1808
os: [win32]
1899
1809
1900
-
'@tailwindcss/oxide-win32-x64-msvc@4.1.11':
1901
-
resolution: {integrity: sha512-YfHoggn1j0LK7wR82TOucWc5LDCguHnoS879idHekmmiR7g9HUtMw9MI0NHatS28u/Xlkfi9w5RJWgz2Dl+5Qg==}
1810
+
'@tailwindcss/oxide-win32-x64-msvc@4.1.18':
1811
+
resolution: {integrity: sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==}
1902
1812
engines: {node: '>= 10'}
1903
1813
cpu: [x64]
1904
1814
os: [win32]
1905
1815
1906
-
'@tailwindcss/oxide@4.1.11':
1907
-
resolution: {integrity: sha512-Q69XzrtAhuyfHo+5/HMgr1lAiPP/G40OMFAnws7xcFEYqcypZmdW8eGXaOUIeOl1dzPJBPENXgbjsOyhg2nkrg==}
1816
+
'@tailwindcss/oxide@4.1.18':
1817
+
resolution: {integrity: sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==}
1908
1818
engines: {node: '>= 10'}
1909
1819
1910
-
'@tailwindcss/postcss@4.1.11':
1911
-
resolution: {integrity: sha512-q/EAIIpF6WpLhKEuQSEVMZNMIY8KhWoAemZ9eylNAih9jxMGAYPPWBn3I9QL/2jZ+e7OEz/tZkX5HwbBR4HohA==}
1820
+
'@tailwindcss/postcss@4.1.18':
1821
+
resolution: {integrity: sha512-Ce0GFnzAOuPyfV5SxjXGn0CubwGcuDB0zcdaPuCSzAa/2vII24JTkH+I6jcbXLb1ctjZMZZI6OjDaLPJQL1S0g==}
1912
1822
1913
1823
'@tanstack/react-table@8.21.3':
1914
1824
resolution: {integrity: sha512-5nNMTSETP4ykGegmVkhjcS8tTLW6Vl4axfEGQN3v0zdHYbK4UfoqfPChclTrJ4EoK9QynqAu9oUf8VEmrpZ5Ww==}
···
1925
1835
resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==}
1926
1836
engines: {node: '>=18'}
1927
1837
1928
-
'@testing-library/jest-dom@6.6.4':
1929
-
resolution: {integrity: sha512-xDXgLjVunjHqczScfkCJ9iyjdNOVHvvCdqHSSxwM9L0l/wHkTRum67SDc020uAlCoqktJplgO2AAQeLP1wgqDQ==}
1838
+
'@testing-library/jest-dom@6.9.1':
1839
+
resolution: {integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==}
1930
1840
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
1931
1841
1932
-
'@testing-library/react@16.3.0':
1933
-
resolution: {integrity: sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==}
1842
+
'@testing-library/react@16.3.1':
1843
+
resolution: {integrity: sha512-gr4KtAWqIOQoucWYD/f6ki+j5chXfcPc74Col/6poTyqTmn7zRmodWahWRCp8tYd+GMqBonw6hstNzqjbs6gjw==}
1934
1844
engines: {node: '>=18'}
1935
1845
peerDependencies:
1936
1846
'@testing-library/dom': ^10.0.0
···
1950
1860
peerDependencies:
1951
1861
'@testing-library/dom': '>=7.21.4'
1952
1862
1953
-
'@tybys/wasm-util@0.10.0':
1954
-
resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==}
1863
+
'@tybys/wasm-util@0.10.1':
1864
+
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
1955
1865
1956
1866
'@types/aria-query@5.0.4':
1957
1867
resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
···
1968
1878
'@types/babel__traverse@7.28.0':
1969
1879
resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
1970
1880
1971
-
'@types/d3-array@3.2.1':
1972
-
resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
1881
+
'@types/d3-array@3.2.2':
1882
+
resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
1973
1883
1974
1884
'@types/d3-color@3.1.3':
1975
1885
resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
···
1995
1905
'@types/d3-timer@3.0.2':
1996
1906
resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
1997
1907
1998
-
'@types/diff-match-patch@1.0.36':
1999
-
resolution: {integrity: sha512-xFdR6tkm0MWvBfO8xXCSsinYxHcqkQUlcHeSpMC2ukzOb6lwQAfDmW+Qt0AvlGd8HpsS28qKsB+oPeJn9I39jg==}
2000
-
2001
-
'@types/estree@1.0.7':
2002
-
resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
1908
+
'@types/estree@1.0.8':
1909
+
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
2003
1910
2004
1911
'@types/istanbul-lib-coverage@2.0.6':
2005
1912
resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
···
2022
1929
'@types/json5@0.0.29':
2023
1930
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
2024
1931
2025
-
'@types/jsonwebtoken@9.0.9':
2026
-
resolution: {integrity: sha512-uoe+GxEuHbvy12OUQct2X9JenKM3qAscquYymuQN4fMWG9DBQtykrQEFcAbVACF7qaLw9BePSodUL0kquqBJpQ==}
1932
+
'@types/jsonwebtoken@9.0.10':
1933
+
resolution: {integrity: sha512-asx5hIG9Qmf/1oStypjanR7iKTv0gXQ1Ov/jfrX6kS/EO0OFni8orbmGCn0672NHR3kXHwpAwR+B368ZGN/2rA==}
2027
1934
2028
1935
'@types/ms@2.1.0':
2029
1936
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
2030
1937
2031
-
'@types/node@20.17.31':
2032
-
resolution: {integrity: sha512-quODOCNXQAbNf1Q7V+fI8WyErOCh0D5Yd31vHnKu4GkSztGQ7rlltAaqXhHhLl33tlVyUXs2386MkANSwgDn6A==}
1938
+
'@types/node@25.0.2':
1939
+
resolution: {integrity: sha512-gWEkeiyYE4vqjON/+Obqcoeffmk0NF15WSBwSs7zwVA2bAbTaE0SJ7P0WNGoJn8uE7fiaV5a7dKYIJriEqOrmA==}
2033
1940
2034
-
'@types/react-dom@19.1.7':
2035
-
resolution: {integrity: sha512-i5ZzwYpqjmrKenzkoLM2Ibzt6mAsM7pxB6BCIouEVVmgiqaMj1TjaK7hnA36hbW5aZv20kx7Lw6hWzPWg0Rurw==}
1941
+
'@types/react-dom@19.2.3':
1942
+
resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
2036
1943
peerDependencies:
2037
1944
'@types/react': 19.1.10
2038
1945
2039
-
'@types/react@19.1.10':
2040
-
resolution: {integrity: sha512-EhBeSYX0Y6ye8pNebpKrwFJq7BoQ8J5SO6NlvNwwHjSj6adXJViPQrKlsyPw7hLBLvckEMO1yxeGdR82YBBlDg==}
1946
+
'@types/react@19.2.7':
1947
+
resolution: {integrity: sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==}
2041
1948
2042
1949
'@types/stack-utils@2.0.3':
2043
1950
resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
···
2045
1952
'@types/tough-cookie@4.0.5':
2046
1953
resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
2047
1954
1955
+
'@types/use-sync-external-store@0.0.6':
1956
+
resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==}
1957
+
2048
1958
'@types/ws@8.18.1':
2049
1959
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
2050
1960
2051
1961
'@types/yargs-parser@21.0.3':
2052
1962
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
2053
1963
2054
-
'@types/yargs@17.0.33':
2055
-
resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
1964
+
'@types/yargs@17.0.35':
1965
+
resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
2056
1966
2057
-
'@typescript-eslint/eslint-plugin@8.31.0':
2058
-
resolution: {integrity: sha512-evaQJZ/J/S4wisevDvC1KFZkPzRetH8kYZbkgcTRyql3mcKsf+ZFDV1BVWUGTCAW5pQHoqn5gK5b8kn7ou9aFQ==}
1967
+
'@typescript-eslint/eslint-plugin@8.50.0':
1968
+
resolution: {integrity: sha512-O7QnmOXYKVtPrfYzMolrCTfkezCJS9+ljLdKW/+DCvRsc3UAz+sbH6Xcsv7p30+0OwUbeWfUDAQE0vpabZ3QLg==}
2059
1969
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2060
1970
peerDependencies:
2061
-
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
1971
+
'@typescript-eslint/parser': ^8.50.0
2062
1972
eslint: ^8.57.0 || ^9.0.0
2063
-
typescript: '>=4.8.4 <5.9.0'
1973
+
typescript: '>=4.8.4 <6.0.0'
2064
1974
2065
-
'@typescript-eslint/parser@8.31.0':
2066
-
resolution: {integrity: sha512-67kYYShjBR0jNI5vsf/c3WG4u+zDnCTHTPqVMQguffaWWFs7artgwKmfwdifl+r6XyM5LYLas/dInj2T0SgJyw==}
1975
+
'@typescript-eslint/parser@8.50.0':
1976
+
resolution: {integrity: sha512-6/cmF2piao+f6wSxUsJLZjck7OQsYyRtcOZS02k7XINSNlz93v6emM8WutDQSXnroG2xwYlEVHJI+cPA7CPM3Q==}
2067
1977
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2068
1978
peerDependencies:
2069
1979
eslint: ^8.57.0 || ^9.0.0
2070
-
typescript: '>=4.8.4 <5.9.0'
1980
+
typescript: '>=4.8.4 <6.0.0'
1981
+
1982
+
'@typescript-eslint/project-service@8.50.0':
1983
+
resolution: {integrity: sha512-Cg/nQcL1BcoTijEWyx4mkVC56r8dj44bFDvBdygifuS20f3OZCHmFbjF34DPSi07kwlFvqfv/xOLnJ5DquxSGQ==}
1984
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1985
+
peerDependencies:
1986
+
typescript: '>=4.8.4 <6.0.0'
1987
+
1988
+
'@typescript-eslint/scope-manager@8.50.0':
1989
+
resolution: {integrity: sha512-xCwfuCZjhIqy7+HKxBLrDVT5q/iq7XBVBXLn57RTIIpelLtEIZHXAF/Upa3+gaCpeV1NNS5Z9A+ID6jn50VD4A==}
1990
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2071
1991
2072
-
'@typescript-eslint/scope-manager@8.31.0':
2073
-
resolution: {integrity: sha512-knO8UyF78Nt8O/B64i7TlGXod69ko7z6vJD9uhSlm0qkAbGeRUSudcm0+K/4CrRjrpiHfBCjMWlc08Vav1xwcw==}
1992
+
'@typescript-eslint/tsconfig-utils@8.50.0':
1993
+
resolution: {integrity: sha512-vxd3G/ybKTSlm31MOA96gqvrRGv9RJ7LGtZCn2Vrc5htA0zCDvcMqUkifcjrWNNKXHUU3WCkYOzzVSFBd0wa2w==}
2074
1994
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1995
+
peerDependencies:
1996
+
typescript: '>=4.8.4 <6.0.0'
2075
1997
2076
-
'@typescript-eslint/type-utils@8.31.0':
2077
-
resolution: {integrity: sha512-DJ1N1GdjI7IS7uRlzJuEDCgDQix3ZVYVtgeWEyhyn4iaoitpMBX6Ndd488mXSx0xah/cONAkEaYyylDyAeHMHg==}
1998
+
'@typescript-eslint/type-utils@8.50.0':
1999
+
resolution: {integrity: sha512-7OciHT2lKCewR0mFoBrvZJ4AXTMe/sYOe87289WAViOocEmDjjv8MvIOT2XESuKj9jp8u3SZYUSh89QA4S1kQw==}
2078
2000
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2079
2001
peerDependencies:
2080
2002
eslint: ^8.57.0 || ^9.0.0
2081
-
typescript: '>=4.8.4 <5.9.0'
2003
+
typescript: '>=4.8.4 <6.0.0'
2082
2004
2083
-
'@typescript-eslint/types@8.31.0':
2084
-
resolution: {integrity: sha512-Ch8oSjVyYyJxPQk8pMiP2FFGYatqXQfQIaMp+TpuuLlDachRWpUAeEu1u9B/v/8LToehUIWyiKcA/w5hUFRKuQ==}
2005
+
'@typescript-eslint/types@8.50.0':
2006
+
resolution: {integrity: sha512-iX1mgmGrXdANhhITbpp2QQM2fGehBse9LbTf0sidWK6yg/NE+uhV5dfU1g6EYPlcReYmkE9QLPq/2irKAmtS9w==}
2085
2007
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2086
2008
2087
-
'@typescript-eslint/typescript-estree@8.31.0':
2088
-
resolution: {integrity: sha512-xLmgn4Yl46xi6aDSZ9KkyfhhtnYI15/CvHbpOy/eR5NWhK/BK8wc709KKwhAR0m4ZKRP7h07bm4BWUYOCuRpQQ==}
2009
+
'@typescript-eslint/typescript-estree@8.50.0':
2010
+
resolution: {integrity: sha512-W7SVAGBR/IX7zm1t70Yujpbk+zdPq/u4soeFSknWFdXIFuWsBGBOUu/Tn/I6KHSKvSh91OiMuaSnYp3mtPt5IQ==}
2089
2011
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2090
2012
peerDependencies:
2091
-
typescript: '>=4.8.4 <5.9.0'
2013
+
typescript: '>=4.8.4 <6.0.0'
2092
2014
2093
-
'@typescript-eslint/utils@8.31.0':
2094
-
resolution: {integrity: sha512-qi6uPLt9cjTFxAb1zGNgTob4x9ur7xC6mHQJ8GwEzGMGE9tYniublmJaowOJ9V2jUzxrltTPfdG2nKlWsq0+Ww==}
2015
+
'@typescript-eslint/utils@8.50.0':
2016
+
resolution: {integrity: sha512-87KgUXET09CRjGCi2Ejxy3PULXna63/bMYv72tCAlDJC3Yqwln0HiFJ3VJMst2+mEtNtZu5oFvX4qJGjKsnAgg==}
2095
2017
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2096
2018
peerDependencies:
2097
2019
eslint: ^8.57.0 || ^9.0.0
2098
-
typescript: '>=4.8.4 <5.9.0'
2020
+
typescript: '>=4.8.4 <6.0.0'
2099
2021
2100
-
'@typescript-eslint/visitor-keys@8.31.0':
2101
-
resolution: {integrity: sha512-QcGHmlRHWOl93o64ZUMNewCdwKGU6WItOU52H0djgNmn1EOrhVudrDzXz4OycCRSCPwFCDrE2iIt5vmuUdHxuQ==}
2022
+
'@typescript-eslint/visitor-keys@8.50.0':
2023
+
resolution: {integrity: sha512-Xzmnb58+Db78gT/CCj/PVCvK+zxbnsw6F+O1oheYszJbBSdEjVhQi3C/Xttzxgi/GLmpvOggRs1RFpiJ8+c34Q==}
2102
2024
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2103
2025
2104
2026
'@ungap/structured-clone@1.3.0':
···
2199
2121
cpu: [x64]
2200
2122
os: [win32]
2201
2123
2124
+
'@vercel/oidc@3.0.5':
2125
+
resolution: {integrity: sha512-fnYhv671l+eTTp48gB4zEsTW/YtRgRPnkI2nT7x6qw5rkI1Lq2hTmQIpHPgyThI0znLK+vX2n9XxKdXZ7BUbbw==}
2126
+
engines: {node: '>= 20'}
2127
+
2202
2128
acorn-jsx@5.3.2:
2203
2129
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
2204
2130
peerDependencies:
2205
2131
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
2206
2132
2207
-
acorn@8.14.1:
2208
-
resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
2133
+
acorn@8.15.0:
2134
+
resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
2209
2135
engines: {node: '>=0.4.0'}
2210
2136
hasBin: true
2211
2137
···
2213
2139
resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
2214
2140
engines: {node: '>= 14'}
2215
2141
2216
-
ai@4.3.15:
2217
-
resolution: {integrity: sha512-TYKRzbWg6mx/pmTadlAEIhuQtzfHUV0BbLY72+zkovXwq/9xhcH24IlQmkyBpElK6/4ArS0dHdOOtR1jOPVwtg==}
2142
+
ai@5.0.113:
2143
+
resolution: {integrity: sha512-26vivpSO/mzZj0k1Si2IpsFspp26ttQICHRySQiMrtWcRd5mnJMX2a8sG28vmZ38C+JUn1cWmfZrsLMxkSMw9g==}
2218
2144
engines: {node: '>=18'}
2219
2145
peerDependencies:
2220
-
react: ^18 || ^19 || ^19.0.0-rc
2221
-
zod: ^3.23.8
2222
-
peerDependenciesMeta:
2223
-
react:
2224
-
optional: true
2146
+
zod: ^3.25.76 || ^4.1.8
2225
2147
2226
2148
ajv@6.12.6:
2227
2149
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
···
2234
2156
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
2235
2157
engines: {node: '>=8'}
2236
2158
2237
-
ansi-regex@6.1.0:
2238
-
resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
2159
+
ansi-regex@6.2.2:
2160
+
resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
2239
2161
engines: {node: '>=12'}
2240
2162
2241
2163
ansi-styles@4.3.0:
···
2246
2168
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
2247
2169
engines: {node: '>=10'}
2248
2170
2249
-
ansi-styles@6.2.1:
2250
-
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
2171
+
ansi-styles@6.2.3:
2172
+
resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
2251
2173
engines: {node: '>=12'}
2252
2174
2253
2175
anymatch@3.1.3:
···
2260
2182
argparse@2.0.1:
2261
2183
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
2262
2184
2263
-
aria-hidden@1.2.4:
2264
-
resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
2185
+
aria-hidden@1.2.6:
2186
+
resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
2265
2187
engines: {node: '>=10'}
2266
2188
2267
2189
aria-query@5.3.0:
···
2275
2197
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
2276
2198
engines: {node: '>= 0.4'}
2277
2199
2278
-
array-includes@3.1.8:
2279
-
resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
2200
+
array-includes@3.1.9:
2201
+
resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==}
2280
2202
engines: {node: '>= 0.4'}
2281
2203
2282
2204
array.prototype.findlast@1.2.5:
···
2314
2236
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
2315
2237
engines: {node: '>= 0.4'}
2316
2238
2317
-
axe-core@4.10.3:
2318
-
resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==}
2239
+
axe-core@4.11.0:
2240
+
resolution: {integrity: sha512-ilYanEU8vxxBexpJd8cWM4ElSQq4QctCLKih0TSfjIfCQTeyH/6zVrmIJfLPrKTKJRbiG+cfnZbQIjAlJmF1jQ==}
2319
2241
engines: {node: '>=4'}
2320
2242
2321
2243
axobject-query@4.1.0:
2322
2244
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
2323
2245
engines: {node: '>= 0.4'}
2324
2246
2325
-
babel-jest@30.0.5:
2326
-
resolution: {integrity: sha512-mRijnKimhGDMsizTvBTWotwNpzrkHr+VvZUQBof2AufXKB8NXrL1W69TG20EvOz7aevx6FTJIaBuBkYxS8zolg==}
2247
+
babel-jest@30.2.0:
2248
+
resolution: {integrity: sha512-0YiBEOxWqKkSQWL9nNGGEgndoeL0ZpWrbLMNL5u/Kaxrli3Eaxlt3ZtIDktEvXt4L/R9r3ODr2zKwGM/2BjxVw==}
2327
2249
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
2328
2250
peerDependencies:
2329
-
'@babel/core': ^7.11.0
2251
+
'@babel/core': ^7.11.0 || ^8.0.0-0
2330
2252
2331
-
babel-plugin-istanbul@7.0.0:
2332
-
resolution: {integrity: sha512-C5OzENSx/A+gt7t4VH1I2XsflxyPUmXRFPKBxt33xncdOmq7oROVM3bZv9Ysjjkv8OJYDMa+tKuKMvqU/H3xdw==}
2253
+
babel-plugin-istanbul@7.0.1:
2254
+
resolution: {integrity: sha512-D8Z6Qm8jCvVXtIRkBnqNHX0zJ37rQcFJ9u8WOS6tkYOsRdHBzypCstaxWiu5ZIlqQtviRYbgnRLSoCEvjqcqbA==}
2333
2255
engines: {node: '>=12'}
2334
2256
2335
-
babel-plugin-jest-hoist@30.0.1:
2336
-
resolution: {integrity: sha512-zTPME3pI50NsFW8ZBaVIOeAxzEY7XHlmWeXXu9srI+9kNfzCUTy8MFan46xOGZY8NZThMqq+e3qZUKsvXbasnQ==}
2257
+
babel-plugin-jest-hoist@30.2.0:
2258
+
resolution: {integrity: sha512-ftzhzSGMUnOzcCXd6WHdBGMyuwy15Wnn0iyyWGKgBDLxf9/s5ABuraCSpBX2uG0jUg4rqJnxsLc5+oYBqoxVaA==}
2337
2259
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
2338
2260
2339
2261
babel-preset-current-node-syntax@1.2.0:
···
2341
2263
peerDependencies:
2342
2264
'@babel/core': ^7.0.0 || ^8.0.0-0
2343
2265
2344
-
babel-preset-jest@30.0.1:
2345
-
resolution: {integrity: sha512-+YHejD5iTWI46cZmcc/YtX4gaKBtdqCHCVfuVinizVpbmyjO3zYmeuyFdfA8duRqQZfgCAMlsfmkVbJ+e2MAJw==}
2266
+
babel-preset-jest@30.2.0:
2267
+
resolution: {integrity: sha512-US4Z3NOieAQumwFnYdUWKvUKh8+YSnS/gB3t6YBiz0bskpu7Pine8pPCheNxlPEW4wnUkma2a94YuW2q3guvCQ==}
2346
2268
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
2347
2269
peerDependencies:
2348
-
'@babel/core': ^7.11.0
2270
+
'@babel/core': ^7.11.0 || ^8.0.0-beta.1
2349
2271
2350
2272
balanced-match@1.0.2:
2351
2273
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
2352
2274
2353
-
before-after-hook@3.0.2:
2354
-
resolution: {integrity: sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==}
2275
+
baseline-browser-mapping@2.9.7:
2276
+
resolution: {integrity: sha512-k9xFKplee6KIio3IDbwj+uaCLpqzOwakOgmqzPezM0sFJlFKcg30vk2wOiAJtkTSfx0SSQDSe8q+mWA/fSH5Zg==}
2277
+
hasBin: true
2355
2278
2356
-
brace-expansion@1.1.11:
2357
-
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
2279
+
before-after-hook@4.0.0:
2280
+
resolution: {integrity: sha512-q6tR3RPqIB1pMiTRMFcZwuG5T8vwp+vUvEG0vuI6B+Rikh5BfPp2fQ82c925FOs+b0lcFQ8CFrL+KbilfZFhOQ==}
2281
+
2282
+
brace-expansion@1.1.12:
2283
+
resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
2358
2284
2359
-
brace-expansion@2.0.1:
2360
-
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
2285
+
brace-expansion@2.0.2:
2286
+
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
2361
2287
2362
2288
braces@3.0.3:
2363
2289
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
2364
2290
engines: {node: '>=8'}
2365
2291
2366
-
browserslist@4.25.1:
2367
-
resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==}
2292
+
browserslist@4.28.1:
2293
+
resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
2368
2294
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
2369
2295
hasBin: true
2370
2296
···
2405
2331
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
2406
2332
engines: {node: '>=10'}
2407
2333
2408
-
caniuse-lite@1.0.30001731:
2409
-
resolution: {integrity: sha512-lDdp2/wrOmTRWuoB5DpfNkC0rJDU8DqRa6nYL6HK6sytw70QMopt/NIc/9SM7ylItlBWfACXk0tEn37UWM/+mg==}
2334
+
caniuse-lite@1.0.30001760:
2335
+
resolution: {integrity: sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw==}
2410
2336
2411
2337
chalk@4.1.2:
2412
2338
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
2413
2339
engines: {node: '>=10'}
2414
2340
2415
-
chalk@5.4.1:
2416
-
resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
2417
-
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
2418
-
2419
2341
char-regex@1.0.2:
2420
2342
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
2421
2343
engines: {node: '>=10'}
2422
2344
2423
-
chownr@3.0.0:
2424
-
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
2425
-
engines: {node: '>=18'}
2426
-
2427
-
ci-info@4.3.0:
2428
-
resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==}
2345
+
ci-info@4.3.1:
2346
+
resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==}
2429
2347
engines: {node: '>=8'}
2430
2348
2431
-
cjs-module-lexer@2.1.0:
2432
-
resolution: {integrity: sha512-UX0OwmYRYQQetfrLEZeewIFFI+wSTofC+pMBLNuH3RUuu/xzG1oz84UCEDOSoQlN3fZ4+AzmV50ZYvGqkMh9yA==}
2349
+
cjs-module-lexer@2.1.1:
2350
+
resolution: {integrity: sha512-+CmxIZ/L2vNcEfvNtLdU0ZQ6mbq3FZnwAP2PPTiKP+1QOoKwlKlPgb8UKV0Dds7QVaMnHm+FwSft2VB0s/SLjQ==}
2433
2351
2434
2352
class-variance-authority@0.7.1:
2435
2353
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
···
2455
2373
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
2456
2374
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
2457
2375
2458
-
collect-v8-coverage@1.0.2:
2459
-
resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
2376
+
collect-v8-coverage@1.0.3:
2377
+
resolution: {integrity: sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==}
2460
2378
2461
2379
color-convert@2.0.1:
2462
2380
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
···
2464
2382
2465
2383
color-name@1.1.4:
2466
2384
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
2467
-
2468
-
color-string@1.9.1:
2469
-
resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
2470
-
2471
-
color@4.2.3:
2472
-
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
2473
-
engines: {node: '>=12.5.0'}
2474
2385
2475
2386
concat-map@0.0.1:
2476
2387
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
···
2489
2400
resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==}
2490
2401
engines: {node: '>=18'}
2491
2402
2492
-
csstype@3.1.3:
2493
-
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
2403
+
csstype@3.2.3:
2404
+
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
2494
2405
2495
2406
d3-array@3.2.4:
2496
2407
resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
···
2573
2484
supports-color:
2574
2485
optional: true
2575
2486
2576
-
debug@4.4.0:
2577
-
resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
2487
+
debug@4.4.3:
2488
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
2578
2489
engines: {node: '>=6.0'}
2579
2490
peerDependencies:
2580
2491
supports-color: '*'
···
2588
2499
decimal.js@10.6.0:
2589
2500
resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
2590
2501
2591
-
dedent@1.6.0:
2592
-
resolution: {integrity: sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA==}
2502
+
dedent@1.7.0:
2503
+
resolution: {integrity: sha512-HGFtf8yhuhGhqO07SV79tRp+br4MnbdjeVxotpn1QBl30pcLLCQjX5b2295ll0fv8RKDKsmWYrl05usHM9CewQ==}
2593
2504
peerDependencies:
2594
2505
babel-plugin-macros: ^3.1.0
2595
2506
peerDependenciesMeta:
···
2619
2530
resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
2620
2531
engines: {node: '>=8'}
2621
2532
2622
-
detect-libc@2.0.4:
2623
-
resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
2533
+
detect-libc@2.1.2:
2534
+
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
2624
2535
engines: {node: '>=8'}
2625
2536
2626
2537
detect-newline@3.1.0:
···
2630
2541
detect-node-es@1.1.0:
2631
2542
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
2632
2543
2633
-
diff-match-patch@1.0.5:
2634
-
resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==}
2635
-
2636
2544
doctrine@2.1.0:
2637
2545
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
2638
2546
engines: {node: '>=0.10.0'}
···
2643
2551
dom-accessibility-api@0.6.3:
2644
2552
resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==}
2645
2553
2646
-
dom-helpers@5.2.1:
2647
-
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
2648
-
2649
2554
dunder-proto@1.0.1:
2650
2555
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
2651
2556
engines: {node: '>= 0.4'}
···
2656
2561
ecdsa-sig-formatter@1.0.11:
2657
2562
resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==}
2658
2563
2659
-
electron-to-chromium@1.5.197:
2660
-
resolution: {integrity: sha512-m1xWB3g7vJ6asIFz+2pBUbq3uGmfmln1M9SSvBe4QIFWYrRHylP73zL/3nMjDmwz8V+1xAXQDfBd6+HPW0WvDQ==}
2564
+
electron-to-chromium@1.5.267:
2565
+
resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
2661
2566
2662
2567
emittery@0.13.1:
2663
2568
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
···
2669
2574
emoji-regex@9.2.2:
2670
2575
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
2671
2576
2672
-
enhanced-resolve@5.18.1:
2673
-
resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
2577
+
enhanced-resolve@5.18.4:
2578
+
resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==}
2674
2579
engines: {node: '>=10.13.0'}
2675
2580
2676
2581
entities@6.0.1:
2677
2582
resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
2678
2583
engines: {node: '>=0.12'}
2679
2584
2680
-
error-ex@1.3.2:
2681
-
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
2585
+
error-ex@1.3.4:
2586
+
resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
2682
2587
2683
-
es-abstract@1.23.9:
2684
-
resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==}
2588
+
es-abstract@1.24.1:
2589
+
resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==}
2685
2590
engines: {node: '>= 0.4'}
2686
2591
2687
2592
es-define-property@1.0.1:
···
2692
2597
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
2693
2598
engines: {node: '>= 0.4'}
2694
2599
2695
-
es-iterator-helpers@1.2.1:
2696
-
resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==}
2600
+
es-iterator-helpers@1.2.2:
2601
+
resolution: {integrity: sha512-BrUQ0cPTB/IwXj23HtwHjS9n7O4h9FX94b4xc5zlTHxeLgTAdzYUDyy6KdExAl9lbN5rtfe44xpjpmj9grxs5w==}
2697
2602
engines: {node: '>= 0.4'}
2698
2603
2699
2604
es-object-atoms@1.1.1:
···
2712
2617
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
2713
2618
engines: {node: '>= 0.4'}
2714
2619
2620
+
es-toolkit@1.43.0:
2621
+
resolution: {integrity: sha512-SKCT8AsWvYzBBuUqMk4NPwFlSdqLpJwmy6AP322ERn8W2YLIB6JBXnwMI2Qsh2gfphT3q7EKAxKb23cvFHFwKA==}
2622
+
2715
2623
escalade@3.2.0:
2716
2624
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
2717
2625
engines: {node: '>=6'}
···
2724
2632
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
2725
2633
engines: {node: '>=10'}
2726
2634
2727
-
eslint-config-next@15.4.6:
2728
-
resolution: {integrity: sha512-4uznvw5DlTTjrZgYZjMciSdDDMO2SWIuQgUNaFyC2O3Zw3Z91XeIejeVa439yRq2CnJb/KEvE4U2AeN/66FpUA==}
2635
+
eslint-config-next@16.0.10:
2636
+
resolution: {integrity: sha512-BxouZUm0I45K4yjOOIzj24nTi0H2cGo0y7xUmk+Po/PYtJXFBYVDS1BguE7t28efXjKdcN0tmiLivxQy//SsZg==}
2729
2637
peerDependencies:
2730
-
eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
2638
+
eslint: '>=9.0.0'
2731
2639
typescript: '>=3.3.1'
2732
2640
peerDependenciesMeta:
2733
2641
typescript:
···
2749
2657
eslint-plugin-import-x:
2750
2658
optional: true
2751
2659
2752
-
eslint-module-utils@2.12.0:
2753
-
resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
2660
+
eslint-module-utils@2.12.1:
2661
+
resolution: {integrity: sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==}
2754
2662
engines: {node: '>=4'}
2755
2663
peerDependencies:
2756
2664
'@typescript-eslint/parser': '*'
···
2770
2678
eslint-import-resolver-webpack:
2771
2679
optional: true
2772
2680
2773
-
eslint-plugin-import@2.31.0:
2774
-
resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
2681
+
eslint-plugin-import@2.32.0:
2682
+
resolution: {integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==}
2775
2683
engines: {node: '>=4'}
2776
2684
peerDependencies:
2777
2685
'@typescript-eslint/parser': '*'
···
2786
2694
peerDependencies:
2787
2695
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
2788
2696
2789
-
eslint-plugin-react-hooks@5.2.0:
2790
-
resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
2791
-
engines: {node: '>=10'}
2697
+
eslint-plugin-react-hooks@7.0.1:
2698
+
resolution: {integrity: sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==}
2699
+
engines: {node: '>=18'}
2792
2700
peerDependencies:
2793
2701
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
2794
2702
···
2798
2706
peerDependencies:
2799
2707
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
2800
2708
2801
-
eslint-scope@8.3.0:
2802
-
resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
2709
+
eslint-scope@8.4.0:
2710
+
resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
2803
2711
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2804
2712
2805
2713
eslint-visitor-keys@3.4.3:
2806
2714
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
2807
2715
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
2808
2716
2809
-
eslint-visitor-keys@4.2.0:
2810
-
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
2717
+
eslint-visitor-keys@4.2.1:
2718
+
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
2811
2719
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2812
2720
2813
-
eslint@9.25.1:
2814
-
resolution: {integrity: sha512-E6Mtz9oGQWDCpV12319d59n4tx9zOTXSTmc8BLVxBx+G/0RdM5MvEEJLU9c0+aleoePYYgVTOsRblx433qmhWQ==}
2721
+
eslint@9.39.2:
2722
+
resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==}
2815
2723
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2816
2724
hasBin: true
2817
2725
peerDependencies:
···
2820
2728
jiti:
2821
2729
optional: true
2822
2730
2823
-
espree@10.3.0:
2824
-
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
2731
+
espree@10.4.0:
2732
+
resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
2825
2733
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2826
2734
2827
2735
esprima@4.0.1:
···
2845
2753
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
2846
2754
engines: {node: '>=0.10.0'}
2847
2755
2848
-
eventemitter3@4.0.7:
2849
-
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
2756
+
eventemitter3@5.0.1:
2757
+
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
2758
+
2759
+
eventsource-parser@3.0.6:
2760
+
resolution: {integrity: sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==}
2761
+
engines: {node: '>=18.0.0'}
2850
2762
2851
2763
execa@5.1.1:
2852
2764
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
···
2856
2768
resolution: {integrity: sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==}
2857
2769
engines: {node: '>= 0.8.0'}
2858
2770
2859
-
expect@30.0.5:
2860
-
resolution: {integrity: sha512-P0te2pt+hHI5qLJkIR+iMvS+lYUZml8rKKsohVHAGY+uClp9XVbdyYNJOIjSRpHVp8s8YqxJCiHUkSYZGr8rtQ==}
2771
+
expect@30.2.0:
2772
+
resolution: {integrity: sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==}
2861
2773
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
2862
2774
2863
-
fast-content-type-parse@2.0.1:
2864
-
resolution: {integrity: sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==}
2775
+
fast-content-type-parse@3.0.0:
2776
+
resolution: {integrity: sha512-ZvLdcY8P+N8mGQJahJV5G4U88CSvT1rP8ApL6uETe88MBXrBHAkZlSEySdUlyztF7ccb+Znos3TFqaepHxdhBg==}
2865
2777
2866
2778
fast-deep-equal@3.1.3:
2867
2779
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
2868
-
2869
-
fast-equals@5.2.2:
2870
-
resolution: {integrity: sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw==}
2871
-
engines: {node: '>=6.0.0'}
2872
2780
2873
2781
fast-glob@3.3.1:
2874
2782
resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
2875
2783
engines: {node: '>=8.6.0'}
2876
2784
2877
-
fast-glob@3.3.3:
2878
-
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
2879
-
engines: {node: '>=8.6.0'}
2880
-
2881
2785
fast-json-stable-stringify@2.1.0:
2882
2786
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
2883
2787
···
2890
2794
fb-watchman@2.0.2:
2891
2795
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
2892
2796
2893
-
fdir@6.4.4:
2894
-
resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==}
2797
+
fdir@6.5.0:
2798
+
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
2799
+
engines: {node: '>=12.0.0'}
2895
2800
peerDependencies:
2896
2801
picomatch: ^3 || ^4
2897
2802
peerDependenciesMeta:
···
2937
2842
resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
2938
2843
engines: {node: '>=12.20.0'}
2939
2844
2940
-
framer-motion@12.23.12:
2941
-
resolution: {integrity: sha512-6e78rdVtnBvlEVgu6eFEAgG9v3wLnYEboM8I5O5EXvfKC8gxGQB8wXJdhkMy10iVcn05jl6CNw7/HTsTCfwcWg==}
2942
-
peerDependencies:
2943
-
'@emotion/is-prop-valid': '*'
2944
-
react: ^18.0.0 || ^19.0.0
2945
-
react-dom: ^18.0.0 || ^19.0.0
2946
-
peerDependenciesMeta:
2947
-
'@emotion/is-prop-valid':
2948
-
optional: true
2949
-
react:
2950
-
optional: true
2951
-
react-dom:
2952
-
optional: true
2953
-
2954
-
framer-motion@12.9.7:
2955
-
resolution: {integrity: sha512-Eo5TYU6sEPPy82GDx32PJm++G+AkBCrzxtEQOWLnpQX896Q3LFrsYhMZ5YO5ct4wL7wyHU6hqlrpYXeexKAevg==}
2845
+
framer-motion@12.23.26:
2846
+
resolution: {integrity: sha512-cPcIhgR42xBn1Uj+PzOyheMtZ73H927+uWPDVhUMqxy8UHt6Okavb6xIz9J/phFUHUj0OncR6UvMfJTXoc/LKA==}
2956
2847
peerDependencies:
2957
2848
'@emotion/is-prop-valid': '*'
2958
2849
react: ^18.0.0 || ^19.0.0
···
2982
2873
2983
2874
functions-have-names@1.2.3:
2984
2875
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
2876
+
2877
+
generator-function@2.0.1:
2878
+
resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
2879
+
engines: {node: '>= 0.4'}
2985
2880
2986
2881
gensync@1.0.0-beta.2:
2987
2882
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
···
3015
2910
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
3016
2911
engines: {node: '>= 0.4'}
3017
2912
3018
-
get-tsconfig@4.10.0:
3019
-
resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==}
2913
+
get-tsconfig@4.13.0:
2914
+
resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==}
3020
2915
3021
2916
glob-parent@5.1.2:
3022
2917
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
···
3026
2921
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
3027
2922
engines: {node: '>=10.13.0'}
3028
2923
3029
-
glob@10.4.5:
3030
-
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
2924
+
glob@10.5.0:
2925
+
resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==}
3031
2926
hasBin: true
3032
2927
3033
2928
glob@7.2.3:
···
3038
2933
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
3039
2934
engines: {node: '>=18'}
3040
2935
2936
+
globals@16.4.0:
2937
+
resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==}
2938
+
engines: {node: '>=18'}
2939
+
3041
2940
globalthis@1.0.4:
3042
2941
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
3043
2942
engines: {node: '>= 0.4'}
···
3048
2947
3049
2948
graceful-fs@4.2.11:
3050
2949
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
3051
-
3052
-
graphemer@1.4.0:
3053
-
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
3054
2950
3055
2951
handlebars@4.7.8:
3056
2952
resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
···
3084
2980
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
3085
2981
engines: {node: '>= 0.4'}
3086
2982
2983
+
hermes-estree@0.25.1:
2984
+
resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==}
2985
+
2986
+
hermes-parser@0.25.1:
2987
+
resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==}
2988
+
3087
2989
html-encoding-sniffer@4.0.0:
3088
2990
resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
3089
2991
engines: {node: '>=18'}
···
3111
3013
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
3112
3014
engines: {node: '>= 4'}
3113
3015
3016
+
ignore@7.0.5:
3017
+
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
3018
+
engines: {node: '>= 4'}
3019
+
3020
+
immer@10.2.0:
3021
+
resolution: {integrity: sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==}
3022
+
3023
+
immer@11.0.1:
3024
+
resolution: {integrity: sha512-naDCyggtcBWANtIrjQEajhhBEuL9b0Zg4zmlWK2CzS6xCWSE39/vvf4LqnMjUAWHBhot4m9MHCM/Z+mfWhUkiA==}
3025
+
3114
3026
import-fresh@3.3.1:
3115
3027
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
3116
3028
engines: {node: '>=6'}
···
3149
3061
3150
3062
is-arrayish@0.2.1:
3151
3063
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
3152
-
3153
-
is-arrayish@0.3.2:
3154
-
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
3155
3064
3156
3065
is-async-function@2.1.1:
3157
3066
resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
···
3200
3109
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
3201
3110
engines: {node: '>=6'}
3202
3111
3203
-
is-generator-function@1.1.0:
3204
-
resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
3112
+
is-generator-function@1.1.2:
3113
+
resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==}
3205
3114
engines: {node: '>= 0.4'}
3206
3115
3207
3116
is-glob@4.0.3:
···
3212
3121
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
3213
3122
engines: {node: '>= 0.4'}
3214
3123
3124
+
is-negative-zero@2.0.3:
3125
+
resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
3126
+
engines: {node: '>= 0.4'}
3127
+
3215
3128
is-number-object@1.1.1:
3216
3129
resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
3217
3130
engines: {node: '>= 0.4'}
···
3285
3198
resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==}
3286
3199
engines: {node: '>=10'}
3287
3200
3288
-
istanbul-reports@3.1.7:
3289
-
resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
3201
+
istanbul-reports@3.2.0:
3202
+
resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==}
3290
3203
engines: {node: '>=8'}
3291
3204
3292
3205
iterator.prototype@1.1.5:
···
3296
3209
jackspeak@3.4.3:
3297
3210
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
3298
3211
3299
-
jest-changed-files@30.0.5:
3300
-
resolution: {integrity: sha512-bGl2Ntdx0eAwXuGpdLdVYVr5YQHnSZlQ0y9HVDu565lCUAe9sj6JOtBbMmBBikGIegne9piDDIOeiLVoqTkz4A==}
3212
+
jest-changed-files@30.2.0:
3213
+
resolution: {integrity: sha512-L8lR1ChrRnSdfeOvTrwZMlnWV8G/LLjQ0nG9MBclwWZidA2N5FviRki0Bvh20WRMOX31/JYvzdqTJrk5oBdydQ==}
3301
3214
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3302
3215
3303
-
jest-circus@30.0.5:
3304
-
resolution: {integrity: sha512-h/sjXEs4GS+NFFfqBDYT7y5Msfxh04EwWLhQi0F8kuWpe+J/7tICSlswU8qvBqumR3kFgHbfu7vU6qruWWBPug==}
3216
+
jest-circus@30.2.0:
3217
+
resolution: {integrity: sha512-Fh0096NC3ZkFx05EP2OXCxJAREVxj1BcW/i6EWqqymcgYKWjyyDpral3fMxVcHXg6oZM7iULer9wGRFvfpl+Tg==}
3305
3218
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3306
3219
3307
-
jest-cli@30.0.5:
3308
-
resolution: {integrity: sha512-Sa45PGMkBZzF94HMrlX4kUyPOwUpdZasaliKN3mifvDmkhLYqLLg8HQTzn6gq7vJGahFYMQjXgyJWfYImKZzOw==}
3220
+
jest-cli@30.2.0:
3221
+
resolution: {integrity: sha512-Os9ukIvADX/A9sLt6Zse3+nmHtHaE6hqOsjQtNiugFTbKRHYIYtZXNGNK9NChseXy7djFPjndX1tL0sCTlfpAA==}
3309
3222
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3310
3223
hasBin: true
3311
3224
peerDependencies:
···
3314
3227
node-notifier:
3315
3228
optional: true
3316
3229
3317
-
jest-config@30.0.5:
3318
-
resolution: {integrity: sha512-aIVh+JNOOpzUgzUnPn5FLtyVnqc3TQHVMupYtyeURSb//iLColiMIR8TxCIDKyx9ZgjKnXGucuW68hCxgbrwmA==}
3230
+
jest-config@30.2.0:
3231
+
resolution: {integrity: sha512-g4WkyzFQVWHtu6uqGmQR4CQxz/CH3yDSlhzXMWzNjDx843gYjReZnMRanjRCq5XZFuQrGDxgUaiYWE8BRfVckA==}
3319
3232
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3320
3233
peerDependencies:
3321
3234
'@types/node': '*'
···
3329
3242
ts-node:
3330
3243
optional: true
3331
3244
3332
-
jest-diff@30.0.5:
3333
-
resolution: {integrity: sha512-1UIqE9PoEKaHcIKvq2vbibrCog4Y8G0zmOxgQUVEiTqwR5hJVMCoDsN1vFvI5JvwD37hjueZ1C4l2FyGnfpE0A==}
3245
+
jest-diff@30.2.0:
3246
+
resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==}
3334
3247
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3335
3248
3336
-
jest-docblock@30.0.1:
3337
-
resolution: {integrity: sha512-/vF78qn3DYphAaIc3jy4gA7XSAz167n9Bm/wn/1XhTLW7tTBIzXtCJpb/vcmc73NIIeeohCbdL94JasyXUZsGA==}
3249
+
jest-docblock@30.2.0:
3250
+
resolution: {integrity: sha512-tR/FFgZKS1CXluOQzZvNH3+0z9jXr3ldGSD8bhyuxvlVUwbeLOGynkunvlTMxchC5urrKndYiwCFC0DLVjpOCA==}
3338
3251
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3339
3252
3340
-
jest-each@30.0.5:
3341
-
resolution: {integrity: sha512-dKjRsx1uZ96TVyejD3/aAWcNKy6ajMaN531CwWIsrazIqIoXI9TnnpPlkrEYku/8rkS3dh2rbH+kMOyiEIv0xQ==}
3253
+
jest-each@30.2.0:
3254
+
resolution: {integrity: sha512-lpWlJlM7bCUf1mfmuqTA8+j2lNURW9eNafOy99knBM01i5CQeY5UH1vZjgT9071nDJac1M4XsbyI44oNOdhlDQ==}
3342
3255
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3343
3256
3344
-
jest-environment-jsdom@30.0.5:
3345
-
resolution: {integrity: sha512-BmnDEoAH+jEjkPrvE9DTKS2r3jYSJWlN/r46h0/DBUxKrkgt2jAZ5Nj4wXLAcV1KWkRpcFqA5zri9SWzJZ1cCg==}
3257
+
jest-environment-jsdom@30.2.0:
3258
+
resolution: {integrity: sha512-zbBTiqr2Vl78pKp/laGBREYzbZx9ZtqPjOK4++lL4BNDhxRnahg51HtoDrk9/VjIy9IthNEWdKVd7H5bqBhiWQ==}
3346
3259
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3347
3260
peerDependencies:
3348
3261
canvas: ^3.0.0
···
3350
3263
canvas:
3351
3264
optional: true
3352
3265
3353
-
jest-environment-node@30.0.5:
3354
-
resolution: {integrity: sha512-ppYizXdLMSvciGsRsMEnv/5EFpvOdXBaXRBzFUDPWrsfmog4kYrOGWXarLllz6AXan6ZAA/kYokgDWuos1IKDA==}
3266
+
jest-environment-node@30.2.0:
3267
+
resolution: {integrity: sha512-ElU8v92QJ9UrYsKrxDIKCxu6PfNj4Hdcktcn0JX12zqNdqWHB0N+hwOnnBBXvjLd2vApZtuLUGs1QSY+MsXoNA==}
3355
3268
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3356
3269
3357
-
jest-haste-map@30.0.5:
3358
-
resolution: {integrity: sha512-dkmlWNlsTSR0nH3nRfW5BKbqHefLZv0/6LCccG0xFCTWcJu8TuEwG+5Cm75iBfjVoockmO6J35o5gxtFSn5xeg==}
3270
+
jest-haste-map@30.2.0:
3271
+
resolution: {integrity: sha512-sQA/jCb9kNt+neM0anSj6eZhLZUIhQgwDt7cPGjumgLM4rXsfb9kpnlacmvZz3Q5tb80nS+oG/if+NBKrHC+Xw==}
3359
3272
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3360
3273
3361
-
jest-leak-detector@30.0.5:
3362
-
resolution: {integrity: sha512-3Uxr5uP8jmHMcsOtYMRB/zf1gXN3yUIc+iPorhNETG54gErFIiUhLvyY/OggYpSMOEYqsmRxmuU4ZOoX5jpRFg==}
3274
+
jest-leak-detector@30.2.0:
3275
+
resolution: {integrity: sha512-M6jKAjyzjHG0SrQgwhgZGy9hFazcudwCNovY/9HPIicmNSBuockPSedAP9vlPK6ONFJ1zfyH/M2/YYJxOz5cdQ==}
3363
3276
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3364
3277
3365
-
jest-matcher-utils@30.0.5:
3366
-
resolution: {integrity: sha512-uQgGWt7GOrRLP1P7IwNWwK1WAQbq+m//ZY0yXygyfWp0rJlksMSLQAA4wYQC3b6wl3zfnchyTx+k3HZ5aPtCbQ==}
3278
+
jest-matcher-utils@30.2.0:
3279
+
resolution: {integrity: sha512-dQ94Nq4dbzmUWkQ0ANAWS9tBRfqCrn0bV9AMYdOi/MHW726xn7eQmMeRTpX2ViC00bpNaWXq+7o4lIQ3AX13Hg==}
3367
3280
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3368
3281
3369
-
jest-message-util@30.0.5:
3370
-
resolution: {integrity: sha512-NAiDOhsK3V7RU0Aa/HnrQo+E4JlbarbmI3q6Pi4KcxicdtjV82gcIUrejOtczChtVQR4kddu1E1EJlW6EN9IyA==}
3282
+
jest-message-util@30.2.0:
3283
+
resolution: {integrity: sha512-y4DKFLZ2y6DxTWD4cDe07RglV88ZiNEdlRfGtqahfbIjfsw1nMCPx49Uev4IA/hWn3sDKyAnSPwoYSsAEdcimw==}
3371
3284
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3372
3285
3373
3286
jest-mock-extended@4.0.0:
···
3377
3290
jest: ^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0 || ^28.0.0 || ^29.0.0 || ^30.0.0
3378
3291
typescript: ^3.0.0 || ^4.0.0 || ^5.0.0
3379
3292
3380
-
jest-mock@30.0.5:
3381
-
resolution: {integrity: sha512-Od7TyasAAQX/6S+QCbN6vZoWOMwlTtzzGuxJku1GhGanAjz9y+QsQkpScDmETvdc9aSXyJ/Op4rhpMYBWW91wQ==}
3293
+
jest-mock@30.2.0:
3294
+
resolution: {integrity: sha512-JNNNl2rj4b5ICpmAcq+WbLH83XswjPbjH4T7yvGzfAGCPh1rw+xVNbtk+FnRslvt9lkCcdn9i1oAoKUuFsOxRw==}
3382
3295
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3383
3296
3384
3297
jest-pnp-resolver@1.2.3:
···
3394
3307
resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==}
3395
3308
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3396
3309
3397
-
jest-resolve-dependencies@30.0.5:
3398
-
resolution: {integrity: sha512-/xMvBR4MpwkrHW4ikZIWRttBBRZgWK4d6xt3xW1iRDSKt4tXzYkMkyPfBnSCgv96cpkrctfXs6gexeqMYqdEpw==}
3310
+
jest-resolve-dependencies@30.2.0:
3311
+
resolution: {integrity: sha512-xTOIGug/0RmIe3mmCqCT95yO0vj6JURrn1TKWlNbhiAefJRWINNPgwVkrVgt/YaerPzY3iItufd80v3lOrFJ2w==}
3399
3312
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3400
3313
3401
-
jest-resolve@30.0.5:
3402
-
resolution: {integrity: sha512-d+DjBQ1tIhdz91B79mywH5yYu76bZuE96sSbxj8MkjWVx5WNdt1deEFRONVL4UkKLSrAbMkdhb24XN691yDRHg==}
3314
+
jest-resolve@30.2.0:
3315
+
resolution: {integrity: sha512-TCrHSxPlx3tBY3hWNtRQKbtgLhsXa1WmbJEqBlTBrGafd5fiQFByy2GNCEoGR+Tns8d15GaL9cxEzKOO3GEb2A==}
3403
3316
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3404
3317
3405
-
jest-runner@30.0.5:
3406
-
resolution: {integrity: sha512-JcCOucZmgp+YuGgLAXHNy7ualBx4wYSgJVWrYMRBnb79j9PD0Jxh0EHvR5Cx/r0Ce+ZBC4hCdz2AzFFLl9hCiw==}
3318
+
jest-runner@30.2.0:
3319
+
resolution: {integrity: sha512-PqvZ2B2XEyPEbclp+gV6KO/F1FIFSbIwewRgmROCMBo/aZ6J1w8Qypoj2pEOcg3G2HzLlaP6VUtvwCI8dM3oqQ==}
3407
3320
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3408
3321
3409
-
jest-runtime@30.0.5:
3410
-
resolution: {integrity: sha512-7oySNDkqpe4xpX5PPiJTe5vEa+Ak/NnNz2bGYZrA1ftG3RL3EFlHaUkA1Cjx+R8IhK0Vg43RML5mJedGTPNz3A==}
3322
+
jest-runtime@30.2.0:
3323
+
resolution: {integrity: sha512-p1+GVX/PJqTucvsmERPMgCPvQJpFt4hFbM+VN3n8TMo47decMUcJbt+rgzwrEme0MQUA/R+1de2axftTHkKckg==}
3411
3324
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3412
3325
3413
-
jest-snapshot@30.0.5:
3414
-
resolution: {integrity: sha512-T00dWU/Ek3LqTp4+DcW6PraVxjk28WY5Ua/s+3zUKSERZSNyxTqhDXCWKG5p2HAJ+crVQ3WJ2P9YVHpj1tkW+g==}
3326
+
jest-snapshot@30.2.0:
3327
+
resolution: {integrity: sha512-5WEtTy2jXPFypadKNpbNkZ72puZCa6UjSr/7djeecHWOu7iYhSXSnHScT8wBz3Rn8Ena5d5RYRcsyKIeqG1IyA==}
3415
3328
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3416
3329
3417
-
jest-util@30.0.5:
3418
-
resolution: {integrity: sha512-pvyPWssDZR0FlfMxCBoc0tvM8iUEskaRFALUtGQYzVEAqisAztmy+R8LnU14KT4XA0H/a5HMVTXat1jLne010g==}
3330
+
jest-util@30.2.0:
3331
+
resolution: {integrity: sha512-QKNsM0o3Xe6ISQU869e+DhG+4CK/48aHYdJZGlFQVTjnbvgpcKyxpzk29fGiO7i/J8VENZ+d2iGnSsvmuHywlA==}
3419
3332
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3420
3333
3421
-
jest-validate@30.0.5:
3422
-
resolution: {integrity: sha512-ouTm6VFHaS2boyl+k4u+Qip4TSH7Uld5tyD8psQ8abGgt2uYYB8VwVfAHWHjHc0NWmGGbwO5h0sCPOGHHevefw==}
3334
+
jest-validate@30.2.0:
3335
+
resolution: {integrity: sha512-FBGWi7dP2hpdi8nBoWxSsLvBFewKAg0+uSQwBaof4Y4DPgBabXgpSYC5/lR7VmnIlSpASmCi/ntRWPbv7089Pw==}
3423
3336
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3424
3337
3425
-
jest-watcher@30.0.5:
3426
-
resolution: {integrity: sha512-z9slj/0vOwBDBjN3L4z4ZYaA+pG56d6p3kTUhFRYGvXbXMWhXmb/FIxREZCD06DYUwDKKnj2T80+Pb71CQ0KEg==}
3338
+
jest-watcher@30.2.0:
3339
+
resolution: {integrity: sha512-PYxa28dxJ9g777pGm/7PrbnMeA0Jr7osHP9bS7eJy9DuAjMgdGtxgf0uKMyoIsTWAkIbUW5hSDdJ3urmgXBqxg==}
3427
3340
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3428
3341
3429
-
jest-worker@30.0.5:
3430
-
resolution: {integrity: sha512-ojRXsWzEP16NdUuBw/4H/zkZdHOa7MMYCk4E430l+8fELeLg/mqmMlRhjL7UNZvQrDmnovWZV4DxX03fZF48fQ==}
3342
+
jest-worker@30.2.0:
3343
+
resolution: {integrity: sha512-0Q4Uk8WF7BUwqXHuAjc23vmopWJw5WH7w2tqBoUOZpOjW/ZnR44GXXd1r82RvnmI2GZge3ivrYXk/BE2+VtW2g==}
3431
3344
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3432
3345
3433
-
jest@30.0.5:
3434
-
resolution: {integrity: sha512-y2mfcJywuTUkvLm2Lp1/pFX8kTgMO5yyQGq/Sk/n2mN7XWYp4JsCZ/QXW34M8YScgk8bPZlREH04f6blPnoHnQ==}
3346
+
jest@30.2.0:
3347
+
resolution: {integrity: sha512-F26gjC0yWN8uAA5m5Ss8ZQf5nDHWGlN/xWZIh8S5SRbsEKBovwZhxGd6LJlbZYxBgCYOtreSUyb8hpXyGC5O4A==}
3435
3348
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3436
3349
hasBin: true
3437
3350
peerDependencies:
···
3440
3353
node-notifier:
3441
3354
optional: true
3442
3355
3443
-
jiti@2.4.2:
3444
-
resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
3356
+
jiti@2.6.1:
3357
+
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
3445
3358
hasBin: true
3446
3359
3447
-
jose@6.0.11:
3448
-
resolution: {integrity: sha512-QxG7EaliDARm1O1S8BGakqncGT9s25bKL1WSf6/oa17Tkqwi8D2ZNglqCF+DsYF88/rV66Q/Q2mFAy697E1DUg==}
3360
+
jose@6.1.3:
3361
+
resolution: {integrity: sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==}
3449
3362
3450
-
js-base64@3.7.7:
3451
-
resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==}
3363
+
js-base64@3.7.8:
3364
+
resolution: {integrity: sha512-hNngCeKxIUQiEUN3GPJOkz4wF/YvdUdbNL9hsBcMQTkKzboD7T/q3OYOuuPZLUE6dBxSGpwhk5mwuDud7JVAow==}
3452
3365
3453
3366
js-tokens@4.0.0:
3454
3367
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
3455
3368
3456
-
js-yaml@3.14.1:
3457
-
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
3369
+
js-yaml@3.14.2:
3370
+
resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==}
3458
3371
hasBin: true
3459
3372
3460
-
js-yaml@4.1.0:
3461
-
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
3373
+
js-yaml@4.1.1:
3374
+
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
3462
3375
hasBin: true
3463
3376
3464
3377
jsdom@26.1.0:
···
3502
3415
jsonc-parser@3.3.1:
3503
3416
resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
3504
3417
3505
-
jsondiffpatch@0.6.0:
3506
-
resolution: {integrity: sha512-3QItJOXp2AP1uv7waBkao5nCvhEv+QmJAd38Ybq7wNI74Q+BBmnLn4EDKz6yI9xGAIQoUF87qHt+kc1IVxB4zQ==}
3507
-
engines: {node: ^18.0.0 || >=20.0.0}
3508
-
hasBin: true
3509
-
3510
-
jsonwebtoken@9.0.2:
3511
-
resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==}
3418
+
jsonwebtoken@9.0.3:
3419
+
resolution: {integrity: sha512-MT/xP0CrubFRNLNKvxJ2BYfy53Zkm++5bX9dtuPbqAeQpTVe0MQTFhao8+Cp//EmJp244xt6Drw/GVEGCUj40g==}
3512
3420
engines: {node: '>=12', npm: '>=6'}
3513
3421
3514
3422
jsx-ast-utils@3.3.5:
3515
3423
resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
3516
3424
engines: {node: '>=4.0'}
3517
3425
3518
-
jwa@1.4.2:
3519
-
resolution: {integrity: sha512-eeH5JO+21J78qMvTIDdBXidBd6nG2kZjg5Ohz/1fpa28Z4CcsWUzJ1ZZyFq/3z3N17aZy+ZuBoHljASbL1WfOw==}
3426
+
jwa@2.0.1:
3427
+
resolution: {integrity: sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==}
3520
3428
3521
-
jws@3.2.2:
3522
-
resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==}
3429
+
jws@4.0.1:
3430
+
resolution: {integrity: sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==}
3523
3431
3524
3432
keyv@4.5.4:
3525
3433
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
···
3539
3447
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
3540
3448
engines: {node: '>= 0.8.0'}
3541
3449
3542
-
libsql@0.5.9:
3543
-
resolution: {integrity: sha512-FzhiExE9uiMAOa8kmiUzsIOsIwv+YiMzaEFXEq26OSpdSJREOEa13XT/N2NzJkMFOROKN+z4IBkNrcp1oQAjpQ==}
3450
+
libsql@0.5.22:
3451
+
resolution: {integrity: sha512-NscWthMQt7fpU8lqd7LXMvT9pi+KhhmTHAJWUB/Lj6MWa0MKFv0F2V4C6WKKpjCVZl0VwcDz4nOI3CyaT1DDiA==}
3544
3452
cpu: [x64, arm64, wasm32, arm]
3545
3453
os: [darwin, linux, win32]
3546
3454
3547
-
lightningcss-darwin-arm64@1.30.1:
3548
-
resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
3455
+
lightningcss-android-arm64@1.30.2:
3456
+
resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==}
3457
+
engines: {node: '>= 12.0.0'}
3458
+
cpu: [arm64]
3459
+
os: [android]
3460
+
3461
+
lightningcss-darwin-arm64@1.30.2:
3462
+
resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
3549
3463
engines: {node: '>= 12.0.0'}
3550
3464
cpu: [arm64]
3551
3465
os: [darwin]
3552
3466
3553
-
lightningcss-darwin-x64@1.30.1:
3554
-
resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
3467
+
lightningcss-darwin-x64@1.30.2:
3468
+
resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
3555
3469
engines: {node: '>= 12.0.0'}
3556
3470
cpu: [x64]
3557
3471
os: [darwin]
3558
3472
3559
-
lightningcss-freebsd-x64@1.30.1:
3560
-
resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
3473
+
lightningcss-freebsd-x64@1.30.2:
3474
+
resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
3561
3475
engines: {node: '>= 12.0.0'}
3562
3476
cpu: [x64]
3563
3477
os: [freebsd]
3564
3478
3565
-
lightningcss-linux-arm-gnueabihf@1.30.1:
3566
-
resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
3479
+
lightningcss-linux-arm-gnueabihf@1.30.2:
3480
+
resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
3567
3481
engines: {node: '>= 12.0.0'}
3568
3482
cpu: [arm]
3569
3483
os: [linux]
3570
3484
3571
-
lightningcss-linux-arm64-gnu@1.30.1:
3572
-
resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
3485
+
lightningcss-linux-arm64-gnu@1.30.2:
3486
+
resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
3573
3487
engines: {node: '>= 12.0.0'}
3574
3488
cpu: [arm64]
3575
3489
os: [linux]
3576
3490
3577
-
lightningcss-linux-arm64-musl@1.30.1:
3578
-
resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
3491
+
lightningcss-linux-arm64-musl@1.30.2:
3492
+
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
3579
3493
engines: {node: '>= 12.0.0'}
3580
3494
cpu: [arm64]
3581
3495
os: [linux]
3582
3496
3583
-
lightningcss-linux-x64-gnu@1.30.1:
3584
-
resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
3497
+
lightningcss-linux-x64-gnu@1.30.2:
3498
+
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
3585
3499
engines: {node: '>= 12.0.0'}
3586
3500
cpu: [x64]
3587
3501
os: [linux]
3588
3502
3589
-
lightningcss-linux-x64-musl@1.30.1:
3590
-
resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
3503
+
lightningcss-linux-x64-musl@1.30.2:
3504
+
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
3591
3505
engines: {node: '>= 12.0.0'}
3592
3506
cpu: [x64]
3593
3507
os: [linux]
3594
3508
3595
-
lightningcss-win32-arm64-msvc@1.30.1:
3596
-
resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
3509
+
lightningcss-win32-arm64-msvc@1.30.2:
3510
+
resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
3597
3511
engines: {node: '>= 12.0.0'}
3598
3512
cpu: [arm64]
3599
3513
os: [win32]
3600
3514
3601
-
lightningcss-win32-x64-msvc@1.30.1:
3602
-
resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
3515
+
lightningcss-win32-x64-msvc@1.30.2:
3516
+
resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
3603
3517
engines: {node: '>= 12.0.0'}
3604
3518
cpu: [x64]
3605
3519
os: [win32]
3606
3520
3607
-
lightningcss@1.30.1:
3608
-
resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
3521
+
lightningcss@1.30.2:
3522
+
resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
3609
3523
engines: {node: '>= 12.0.0'}
3610
3524
3611
3525
lines-and-columns@1.2.4:
···
3646
3560
lodash.once@4.1.1:
3647
3561
resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
3648
3562
3649
-
lodash@4.17.21:
3650
-
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
3651
-
3652
3563
loose-envify@1.4.0:
3653
3564
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
3654
3565
hasBin: true
···
3659
3570
lru-cache@5.1.1:
3660
3571
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
3661
3572
3662
-
lucide-react@0.503.0:
3663
-
resolution: {integrity: sha512-HGGkdlPWQ0vTF8jJ5TdIqhQXZi6uh3LnNgfZ8MHiuxFfX3RZeA79r2MW2tHAZKlAVfoNE8esm3p+O6VkIvpj6w==}
3573
+
lucide-react@0.561.0:
3574
+
resolution: {integrity: sha512-Y59gMY38tl4/i0qewcqohPdEbieBy7SovpBL9IFebhc2mDd8x4PZSOsiFRkpPcOq6bj1r/mjH/Rk73gSlIJP2A==}
3664
3575
peerDependencies:
3665
3576
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
3666
3577
···
3668
3579
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
3669
3580
hasBin: true
3670
3581
3671
-
magic-string@0.30.17:
3672
-
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
3582
+
magic-string@0.30.21:
3583
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
3673
3584
3674
3585
make-dir@4.0.0:
3675
3586
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
···
3718
3629
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
3719
3630
engines: {node: '>=16 || 14 >=14.17'}
3720
3631
3721
-
minizlib@3.0.2:
3722
-
resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==}
3723
-
engines: {node: '>= 18'}
3724
-
3725
-
mkdirp@3.0.1:
3726
-
resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
3727
-
engines: {node: '>=10'}
3728
-
hasBin: true
3729
-
3730
-
motion-dom@12.23.12:
3731
-
resolution: {integrity: sha512-RcR4fvMCTESQBD/uKQe49D5RUeDOokkGRmz4ceaJKDBgHYtZtntC/s2vLvY38gqGaytinij/yi3hMcWVcEF5Kw==}
3732
-
3733
-
motion-dom@12.9.6:
3734
-
resolution: {integrity: sha512-IK9pm5zU8BIp3FCoUGF3T7AHVLVOlXxlwco/bIbcnpBtyYb2gDQhdOzUh2KSDJVjYl1MZ9vdq8tnFTTahX2lfg==}
3632
+
motion-dom@12.23.23:
3633
+
resolution: {integrity: sha512-n5yolOs0TQQBRUFImrRfs/+6X4p3Q4n1dUEqt/H58Vx7OW6RF+foWEgmTVDhIWJIMXOuNNL0apKH2S16en9eiA==}
3735
3634
3736
3635
motion-utils@12.23.6:
3737
3636
resolution: {integrity: sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==}
3738
3637
3739
-
motion-utils@12.9.4:
3740
-
resolution: {integrity: sha512-BW3I65zeM76CMsfh3kHid9ansEJk9Qvl+K5cu4DVHKGsI52n76OJ4z2CUJUV+Mn3uEP9k1JJA3tClG0ggSrRcg==}
3741
-
3742
-
motion@12.23.12:
3743
-
resolution: {integrity: sha512-8jCD8uW5GD1csOoqh1WhH1A6j5APHVE15nuBkFeRiMzYBdRwyAHmSP/oXSuW0WJPZRXTFdBoG4hY9TFWNhhwng==}
3638
+
motion@12.23.26:
3639
+
resolution: {integrity: sha512-Ll8XhVxY8LXMVYTCfme27WH2GjBrCIzY4+ndr5QKxsK+YwCtOi2B/oBi5jcIbik5doXuWT/4KKDOVAZJkeY5VQ==}
3744
3640
peerDependencies:
3745
3641
'@emotion/is-prop-valid': '*'
3746
3642
react: ^18.0.0 || ^19.0.0
···
3761
3657
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
3762
3658
hasBin: true
3763
3659
3764
-
napi-postinstall@0.3.2:
3765
-
resolution: {integrity: sha512-tWVJxJHmBWLy69PvO96TZMZDrzmw5KeiZBz3RHmiM2XZ9grBJ2WgMAFVVg25nqp3ZjTFUs2Ftw1JhscL3Teliw==}
3660
+
napi-postinstall@0.3.4:
3661
+
resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
3766
3662
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
3767
3663
hasBin: true
3768
3664
···
3794
3690
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
3795
3691
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
3796
3692
3797
-
next@15.4.6:
3798
-
resolution: {integrity: sha512-us++E/Q80/8+UekzB3SAGs71AlLDsadpFMXVNM/uQ0BMwsh9m3mr0UNQIfjKed8vpWXsASe+Qifrnu1oLIcKEQ==}
3799
-
engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
3693
+
next@16.0.10:
3694
+
resolution: {integrity: sha512-RtWh5PUgI+vxlV3HdR+IfWA1UUHu0+Ram/JBO4vWB54cVPentCD0e+lxyAYEsDTqGGMg7qpjhKh6dc6aW7W/sA==}
3695
+
engines: {node: '>=20.9.0'}
3800
3696
hasBin: true
3801
3697
peerDependencies:
3802
3698
'@opentelemetry/api': ^1.1.0
···
3827
3723
node-int64@0.4.0:
3828
3724
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
3829
3725
3830
-
node-releases@2.0.19:
3831
-
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
3726
+
node-releases@2.0.27:
3727
+
resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
3832
3728
3833
3729
normalize-path@3.0.0:
3834
3730
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
···
3838
3734
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
3839
3735
engines: {node: '>=8'}
3840
3736
3841
-
nwsapi@2.2.21:
3842
-
resolution: {integrity: sha512-o6nIY3qwiSXl7/LuOU0Dmuctd34Yay0yeuZRLFmDPrrdHpXKFndPj3hM+YEPVHYC5fx2otBx4Ilc/gyYSAUaIA==}
3737
+
nwsapi@2.2.23:
3738
+
resolution: {integrity: sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==}
3843
3739
3844
-
oauth4webapi@3.5.5:
3845
-
resolution: {integrity: sha512-1K88D2GiAydGblHo39NBro5TebGXa+7tYoyIbxvqv3+haDDry7CBE1eSYuNbOSsYCCU6y0gdynVZAkm4YPw4hg==}
3740
+
oauth4webapi@3.8.3:
3741
+
resolution: {integrity: sha512-pQ5BsX3QRTgnt5HxgHwgunIRaDXBdkT23tf8dfzmtTIL2LTpdmxgbpbBm0VgFWAIDlezQvQCTgnVIUmHupXHxw==}
3846
3742
3847
3743
object-assign@4.1.1:
3848
3744
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
···
3951
3847
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
3952
3848
engines: {node: '>=8.6'}
3953
3849
3954
-
picomatch@4.0.2:
3955
-
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
3850
+
picomatch@4.0.3:
3851
+
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
3956
3852
engines: {node: '>=12'}
3957
3853
3958
3854
pirates@4.0.7:
···
3971
3867
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
3972
3868
engines: {node: ^10 || ^12 || >=14}
3973
3869
3974
-
postcss@8.5.3:
3975
-
resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
3870
+
postcss@8.5.6:
3871
+
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
3976
3872
engines: {node: ^10 || ^12 || >=14}
3977
3873
3978
3874
preact-render-to-string@6.5.11:
···
3991
3887
resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
3992
3888
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
3993
3889
3994
-
pretty-format@30.0.5:
3995
-
resolution: {integrity: sha512-D1tKtYvByrBkFLe2wHJl2bwMJIiT8rW+XA+TiataH79/FszLQMrpGEvzUVkzPau7OCO0Qnrhpe87PqtOAIB8Yw==}
3890
+
pretty-format@30.2.0:
3891
+
resolution: {integrity: sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==}
3996
3892
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3997
3893
3998
3894
promise-limit@2.7.0:
···
4011
3907
queue-microtask@1.2.3:
4012
3908
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
4013
3909
4014
-
react-day-picker@9.9.0:
4015
-
resolution: {integrity: sha512-NtkJbuX6cl/VaGNb3sVVhmMA6LSMnL5G3xNL+61IyoZj0mUZFWTg4hmj7PHjIQ8MXN9dHWhUHFoJWG6y60DKSg==}
3910
+
react-day-picker@9.12.0:
3911
+
resolution: {integrity: sha512-t8OvG/Zrciso5CQJu5b1A7yzEmebvST+S3pOVQJWxwjjVngyG/CA2htN/D15dLI4uTEuLLkbZyS4YYt480FAtA==}
4016
3912
engines: {node: '>=18'}
4017
3913
peerDependencies:
4018
3914
react: '>=16.8.0'
4019
3915
4020
-
react-dom@19.1.1:
4021
-
resolution: {integrity: sha512-Dlq/5LAZgF0Gaz6yiqZCf6VCcZs1ghAJyrsu84Q/GT0gV+mCxbfmKNoGRKBYMJ8IEdGPqu49YWXD02GCknEDkw==}
3916
+
react-dom@19.2.3:
3917
+
resolution: {integrity: sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==}
4022
3918
peerDependencies:
4023
-
react: ^19.1.1
3919
+
react: ^19.2.3
4024
3920
4025
3921
react-is@16.13.1:
4026
3922
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
···
4031
3927
react-is@18.3.1:
4032
3928
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
4033
3929
3930
+
react-redux@9.2.0:
3931
+
resolution: {integrity: sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==}
3932
+
peerDependencies:
3933
+
'@types/react': 19.1.10
3934
+
react: ^18.0 || ^19
3935
+
redux: ^5.0.0
3936
+
peerDependenciesMeta:
3937
+
'@types/react':
3938
+
optional: true
3939
+
redux:
3940
+
optional: true
3941
+
4034
3942
react-remove-scroll-bar@2.3.8:
4035
3943
resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
4036
3944
engines: {node: '>=10'}
···
4041
3949
'@types/react':
4042
3950
optional: true
4043
3951
4044
-
react-remove-scroll@2.6.3:
4045
-
resolution: {integrity: sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ==}
3952
+
react-remove-scroll@2.7.2:
3953
+
resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
4046
3954
engines: {node: '>=10'}
4047
3955
peerDependencies:
4048
3956
'@types/react': 19.1.10
···
4051
3959
'@types/react':
4052
3960
optional: true
4053
3961
4054
-
react-smooth@4.0.4:
4055
-
resolution: {integrity: sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q==}
4056
-
peerDependencies:
4057
-
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
4058
-
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
4059
-
4060
3962
react-style-singleton@2.2.3:
4061
3963
resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
4062
3964
engines: {node: '>=10'}
···
4067
3969
'@types/react':
4068
3970
optional: true
4069
3971
4070
-
react-transition-group@4.4.5:
4071
-
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
4072
-
peerDependencies:
4073
-
react: '>=16.6.0'
4074
-
react-dom: '>=16.6.0'
4075
-
4076
-
react@19.1.1:
4077
-
resolution: {integrity: sha512-w8nqGImo45dmMIfljjMwOGtbmC/mk4CMYhWIicdSflH91J9TyCyczcPFXJzrZ/ZXcgGRFeP6BU0BEJTw6tZdfQ==}
3972
+
react@19.2.3:
3973
+
resolution: {integrity: sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==}
4078
3974
engines: {node: '>=0.10.0'}
4079
3975
4080
-
recharts-scale@0.4.5:
4081
-
resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
4082
-
4083
-
recharts@2.15.3:
4084
-
resolution: {integrity: sha512-EdOPzTwcFSuqtvkDoaM5ws/Km1+WTAO2eizL7rqiG0V2UVhTnz0m7J2i0CjVPUCdEkZImaWvXLbZDS2H5t6GFQ==}
4085
-
engines: {node: '>=14'}
3976
+
recharts@3.6.0:
3977
+
resolution: {integrity: sha512-L5bjxvQRAe26RlToBAziKUB7whaGKEwD3znoM6fz3DrTowCIC/FnJYnuq1GEzB8Zv2kdTfaxQfi5GoH0tBinyg==}
3978
+
engines: {node: '>=18'}
4086
3979
peerDependencies:
4087
-
react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
3980
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
4088
3981
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
3982
+
react-is: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
4089
3983
4090
3984
redent@3.0.0:
4091
3985
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
4092
3986
engines: {node: '>=8'}
4093
3987
3988
+
redux-thunk@3.1.0:
3989
+
resolution: {integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==}
3990
+
peerDependencies:
3991
+
redux: ^5.0.0
3992
+
3993
+
redux@5.0.1:
3994
+
resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==}
3995
+
4094
3996
reflect.getprototypeof@1.0.10:
4095
3997
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
4096
3998
engines: {node: '>= 0.4'}
4097
3999
4098
-
regenerator-runtime@0.14.1:
4099
-
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
4100
-
4101
4000
regexp.prototype.flags@1.5.4:
4102
4001
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
4103
4002
engines: {node: '>= 0.4'}
···
4105
4004
require-directory@2.1.1:
4106
4005
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
4107
4006
engines: {node: '>=0.10.0'}
4007
+
4008
+
reselect@5.1.1:
4009
+
resolution: {integrity: sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==}
4108
4010
4109
4011
resolve-cwd@3.0.0:
4110
4012
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
···
4121
4023
resolve-pkg-maps@1.0.0:
4122
4024
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
4123
4025
4124
-
resolve@1.22.10:
4125
-
resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
4026
+
resolve@1.22.11:
4027
+
resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
4126
4028
engines: {node: '>= 0.4'}
4127
4029
hasBin: true
4128
4030
···
4162
4064
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
4163
4065
engines: {node: '>=v12.22.7'}
4164
4066
4165
-
scheduler@0.26.0:
4166
-
resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
4167
-
4168
-
secure-json-parse@2.7.0:
4169
-
resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==}
4067
+
scheduler@0.27.0:
4068
+
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
4170
4069
4171
4070
semver@6.3.1:
4172
4071
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
4173
4072
hasBin: true
4174
4073
4175
-
semver@7.7.1:
4176
-
resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
4177
-
engines: {node: '>=10'}
4178
-
hasBin: true
4179
-
4180
-
semver@7.7.2:
4181
-
resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
4074
+
semver@7.7.3:
4075
+
resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
4182
4076
engines: {node: '>=10'}
4183
4077
hasBin: true
4184
4078
···
4194
4088
resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
4195
4089
engines: {node: '>= 0.4'}
4196
4090
4197
-
sharp@0.34.3:
4198
-
resolution: {integrity: sha512-eX2IQ6nFohW4DbvHIOLRB3MHFpYqaqvXd3Tp5e/T/dSH83fxaNJQRvDMhASmkNTsNTVF2/OOopzRCt7xokgPfg==}
4091
+
sharp@0.34.5:
4092
+
resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
4199
4093
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
4200
4094
4201
4095
shebang-command@2.0.0:
···
4229
4123
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
4230
4124
engines: {node: '>=14'}
4231
4125
4232
-
simple-swizzle@0.2.2:
4233
-
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
4234
-
4235
4126
slash@3.0.0:
4236
4127
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
4237
4128
engines: {node: '>=8'}
4238
4129
4239
-
sonner@2.0.3:
4240
-
resolution: {integrity: sha512-njQ4Hht92m0sMqqHVDL32V2Oun9W1+PHO9NDv9FHfJjT3JT22IG4Jpo3FPQy+mouRKCXFWO+r67v6MrHX2zeIA==}
4130
+
sonner@2.0.7:
4131
+
resolution: {integrity: sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==}
4241
4132
peerDependencies:
4242
4133
react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
4243
4134
react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
···
4262
4153
stack-utils@2.0.6:
4263
4154
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
4264
4155
engines: {node: '>=10'}
4156
+
4157
+
stop-iteration-iterator@1.1.0:
4158
+
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
4159
+
engines: {node: '>= 0.4'}
4265
4160
4266
4161
string-length@4.0.2:
4267
4162
resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
···
4302
4197
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
4303
4198
engines: {node: '>=8'}
4304
4199
4305
-
strip-ansi@7.1.0:
4306
-
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
4200
+
strip-ansi@7.1.2:
4201
+
resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
4307
4202
engines: {node: '>=12'}
4308
4203
4309
4204
strip-bom@3.0.0:
···
4351
4246
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
4352
4247
engines: {node: '>= 0.4'}
4353
4248
4354
-
swr@2.3.3:
4355
-
resolution: {integrity: sha512-dshNvs3ExOqtZ6kJBaAsabhPdHyeY4P2cKwRCniDVifBMoG/SVI7tfLWqPXriVspf2Rg4tPzXJTnwaihIeFw2A==}
4249
+
swr@2.3.8:
4250
+
resolution: {integrity: sha512-gaCPRVoMq8WGDcWj9p4YWzCMPHzE0WNl6W8ADIx9c3JBEIdMkJGMzW+uzXvxHMltwcYACr9jP+32H8/hgwMR7w==}
4356
4251
peerDependencies:
4357
4252
react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
4358
4253
···
4363
4258
resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==}
4364
4259
engines: {node: ^14.18.0 || >=16.0.0}
4365
4260
4366
-
tailwind-merge@3.2.0:
4367
-
resolution: {integrity: sha512-FQT/OVqCD+7edmmJpsgCsY820RTD5AkBryuG5IUqR5YQZSdj5xlH5nLgH7YPths7WsLPSpSBNneJdM8aS8aeFA==}
4261
+
tailwind-merge@3.4.0:
4262
+
resolution: {integrity: sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==}
4368
4263
4369
-
tailwindcss@4.1.11:
4370
-
resolution: {integrity: sha512-2E9TBm6MDD/xKYe+dvJZAmg3yxIEDNRc0jwlNyDg/4Fil2QcSLjFKGVff0lAf1jjeaArlG/M75Ey/EYr/OJtBA==}
4264
+
tailwindcss@4.1.18:
4265
+
resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==}
4371
4266
4372
-
tapable@2.2.1:
4373
-
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
4267
+
tapable@2.3.0:
4268
+
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
4374
4269
engines: {node: '>=6'}
4375
4270
4376
-
tar@7.4.3:
4377
-
resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
4378
-
engines: {node: '>=18'}
4379
-
4380
4271
test-exclude@6.0.0:
4381
4272
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
4382
4273
engines: {node: '>=8'}
4383
4274
4384
-
throttleit@2.1.0:
4385
-
resolution: {integrity: sha512-nt6AMGKW1p/70DF/hGBdJB57B8Tspmbp5gfJ8ilhLnt7kkr2ye7hzD6NVG8GGErk2HWF34igrL2CXmNIkzKqKw==}
4386
-
engines: {node: '>=18'}
4387
-
4388
4275
tiny-invariant@1.3.3:
4389
4276
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
4390
4277
4391
-
tinyglobby@0.2.13:
4392
-
resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
4278
+
tinyglobby@0.2.15:
4279
+
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
4393
4280
engines: {node: '>=12.0.0'}
4394
4281
4395
4282
tldts-core@6.1.86:
···
4428
4315
typescript:
4429
4316
optional: true
4430
4317
4431
-
ts-jest@29.4.1:
4432
-
resolution: {integrity: sha512-SaeUtjfpg9Uqu8IbeDKtdaS0g8lS6FT6OzM3ezrDfErPJPHNDo/Ey+VFGP1bQIDfagYDLyRpd7O15XpG1Es2Uw==}
4318
+
ts-jest@29.4.6:
4319
+
resolution: {integrity: sha512-fSpWtOO/1AjSNQguk43hb/JCo16oJDnMJf3CdEGNkqsEX3t0KX96xvyX1D7PfLCpVoKu4MfVrqUkFyblYoY4lA==}
4433
4320
engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0}
4434
4321
hasBin: true
4435
4322
peerDependencies:
···
4461
4348
tslib@2.8.1:
4462
4349
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
4463
4350
4464
-
tw-animate-css@1.2.8:
4465
-
resolution: {integrity: sha512-AxSnYRvyFnAiZCUndS3zQZhNfV/B77ZhJ+O7d3K6wfg/jKJY+yv6ahuyXwnyaYA9UdLqnpCwhTRv9pPTBnPR2g==}
4351
+
tw-animate-css@1.4.0:
4352
+
resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
4466
4353
4467
4354
type-check@0.4.0:
4468
4355
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
···
4496
4383
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
4497
4384
engines: {node: '>= 0.4'}
4498
4385
4499
-
typescript@5.8.3:
4500
-
resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
4386
+
typescript-eslint@8.50.0:
4387
+
resolution: {integrity: sha512-Q1/6yNUmCpH94fbgMUMg2/BSAr/6U7GBk61kZTv1/asghQOWOjTlp9K8mixS5NcJmm2creY+UFfGeW/+OcA64A==}
4388
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
4389
+
peerDependencies:
4390
+
eslint: ^8.57.0 || ^9.0.0
4391
+
typescript: '>=4.8.4 <6.0.0'
4392
+
4393
+
typescript@5.9.3:
4394
+
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
4501
4395
engines: {node: '>=14.17'}
4502
4396
hasBin: true
4503
4397
···
4510
4404
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
4511
4405
engines: {node: '>= 0.4'}
4512
4406
4513
-
undici-types@6.19.8:
4514
-
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
4407
+
undici-types@7.16.0:
4408
+
resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
4515
4409
4516
-
universal-user-agent@7.0.2:
4517
-
resolution: {integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==}
4410
+
universal-user-agent@7.0.3:
4411
+
resolution: {integrity: sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A==}
4518
4412
4519
4413
unrs-resolver@1.11.1:
4520
4414
resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
4521
4415
4522
-
update-browserslist-db@1.1.3:
4523
-
resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
4416
+
update-browserslist-db@1.2.2:
4417
+
resolution: {integrity: sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==}
4524
4418
hasBin: true
4525
4419
peerDependencies:
4526
4420
browserslist: '>= 4.21.0'
···
4548
4442
'@types/react':
4549
4443
optional: true
4550
4444
4551
-
use-sync-external-store@1.5.0:
4552
-
resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==}
4445
+
use-sync-external-store@1.6.0:
4446
+
resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
4553
4447
peerDependencies:
4554
4448
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
4555
4449
···
4563
4457
react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
4564
4458
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
4565
4459
4566
-
victory-vendor@36.9.2:
4567
-
resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==}
4460
+
victory-vendor@37.3.6:
4461
+
resolution: {integrity: sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==}
4568
4462
4569
4463
w3c-xmlserializer@5.0.0:
4570
4464
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
···
4639
4533
resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
4640
4534
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
4641
4535
4642
-
ws@8.18.2:
4643
-
resolution: {integrity: sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==}
4536
+
ws@8.18.3:
4537
+
resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==}
4644
4538
engines: {node: '>=10.0.0'}
4645
4539
peerDependencies:
4646
4540
bufferutil: ^4.0.1
···
4665
4559
yallist@3.1.1:
4666
4560
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
4667
4561
4668
-
yallist@5.0.0:
4669
-
resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
4670
-
engines: {node: '>=18'}
4671
-
4672
4562
yargs-parser@21.1.1:
4673
4563
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
4674
4564
engines: {node: '>=12'}
···
4681
4571
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
4682
4572
engines: {node: '>=10'}
4683
4573
4684
-
zod-to-json-schema@3.24.5:
4685
-
resolution: {integrity: sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g==}
4574
+
zod-validation-error@4.0.2:
4575
+
resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==}
4576
+
engines: {node: '>=18.0.0'}
4686
4577
peerDependencies:
4687
-
zod: ^3.24.1
4578
+
zod: ^3.25.0 || ^4.0.0
4688
4579
4689
-
zod@3.24.3:
4690
-
resolution: {integrity: sha512-HhY1oqzWCQWuUqvBFnsyrtZRhyPeR7SUGv+C4+MsisMuVfSPx8HpwWqH8tRahSlt6M3PiFAcoeFhZAqIXTxoSg==}
4580
+
zod@4.2.1:
4581
+
resolution: {integrity: sha512-0wZ1IRqGGhMP76gLqz8EyfBXKk0J2qo2+H3fi4mcUP/KtTocoX08nmIAHl1Z2kJIZbZee8KOpBCSNPRgauucjw==}
4691
4582
4692
4583
snapshots:
4693
4584
4694
-
'@adobe/css-tools@4.4.3': {}
4585
+
'@adobe/css-tools@4.4.4': {}
4695
4586
4696
-
'@ai-sdk/anthropic@1.2.11(zod@3.24.3)':
4587
+
'@ai-sdk/anthropic@2.0.56(zod@4.2.1)':
4697
4588
dependencies:
4698
-
'@ai-sdk/provider': 1.1.3
4699
-
'@ai-sdk/provider-utils': 2.2.8(zod@3.24.3)
4700
-
zod: 3.24.3
4589
+
'@ai-sdk/provider': 2.0.0
4590
+
'@ai-sdk/provider-utils': 3.0.19(zod@4.2.1)
4591
+
zod: 4.2.1
4701
4592
4702
-
'@ai-sdk/google@1.2.17(zod@3.24.3)':
4593
+
'@ai-sdk/gateway@2.0.21(zod@4.2.1)':
4703
4594
dependencies:
4704
-
'@ai-sdk/provider': 1.1.3
4705
-
'@ai-sdk/provider-utils': 2.2.8(zod@3.24.3)
4706
-
zod: 3.24.3
4595
+
'@ai-sdk/provider': 2.0.0
4596
+
'@ai-sdk/provider-utils': 3.0.19(zod@4.2.1)
4597
+
'@vercel/oidc': 3.0.5
4598
+
zod: 4.2.1
4707
4599
4708
-
'@ai-sdk/openai@1.3.22(zod@3.24.3)':
4600
+
'@ai-sdk/google@2.0.47(zod@4.2.1)':
4709
4601
dependencies:
4710
-
'@ai-sdk/provider': 1.1.3
4711
-
'@ai-sdk/provider-utils': 2.2.8(zod@3.24.3)
4712
-
zod: 3.24.3
4602
+
'@ai-sdk/provider': 2.0.0
4603
+
'@ai-sdk/provider-utils': 3.0.19(zod@4.2.1)
4604
+
zod: 4.2.1
4713
4605
4714
-
'@ai-sdk/provider-utils@2.2.8(zod@3.24.3)':
4606
+
'@ai-sdk/openai@2.0.87(zod@4.2.1)':
4715
4607
dependencies:
4716
-
'@ai-sdk/provider': 1.1.3
4717
-
nanoid: 3.3.11
4718
-
secure-json-parse: 2.7.0
4719
-
zod: 3.24.3
4608
+
'@ai-sdk/provider': 2.0.0
4609
+
'@ai-sdk/provider-utils': 3.0.19(zod@4.2.1)
4610
+
zod: 4.2.1
4720
4611
4721
-
'@ai-sdk/provider@1.1.3':
4612
+
'@ai-sdk/provider-utils@3.0.19(zod@4.2.1)':
4722
4613
dependencies:
4723
-
json-schema: 0.4.0
4614
+
'@ai-sdk/provider': 2.0.0
4615
+
'@standard-schema/spec': 1.1.0
4616
+
eventsource-parser: 3.0.6
4617
+
zod: 4.2.1
4724
4618
4725
-
'@ai-sdk/react@1.2.12(react@19.1.1)(zod@3.24.3)':
4619
+
'@ai-sdk/provider@2.0.0':
4726
4620
dependencies:
4727
-
'@ai-sdk/provider-utils': 2.2.8(zod@3.24.3)
4728
-
'@ai-sdk/ui-utils': 1.2.11(zod@3.24.3)
4729
-
react: 19.1.1
4730
-
swr: 2.3.3(react@19.1.1)
4731
-
throttleit: 2.1.0
4732
-
optionalDependencies:
4733
-
zod: 3.24.3
4734
-
4735
-
'@ai-sdk/ui-utils@1.2.11(zod@3.24.3)':
4736
-
dependencies:
4737
-
'@ai-sdk/provider': 1.1.3
4738
-
'@ai-sdk/provider-utils': 2.2.8(zod@3.24.3)
4739
-
zod: 3.24.3
4740
-
zod-to-json-schema: 3.24.5(zod@3.24.3)
4621
+
json-schema: 0.4.0
4741
4622
4742
4623
'@alloc/quick-lru@5.2.0': {}
4743
4624
4744
-
'@ampproject/remapping@2.3.0':
4745
-
dependencies:
4746
-
'@jridgewell/gen-mapping': 0.3.12
4747
-
'@jridgewell/trace-mapping': 0.3.29
4748
-
4749
4625
'@asamuzakjp/css-color@3.2.0':
4750
4626
dependencies:
4751
4627
'@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
4752
-
'@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
4628
+
'@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
4753
4629
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
4754
4630
'@csstools/css-tokenizer': 3.0.4
4755
4631
lru-cache: 10.4.3
···
4757
4633
'@auth/core@0.40.0':
4758
4634
dependencies:
4759
4635
'@panva/hkdf': 1.2.1
4760
-
jose: 6.0.11
4761
-
oauth4webapi: 3.5.5
4636
+
jose: 6.1.3
4637
+
oauth4webapi: 3.8.3
4762
4638
preact: 10.24.3
4763
4639
preact-render-to-string: 6.5.11(preact@10.24.3)
4764
4640
4765
4641
'@babel/code-frame@7.27.1':
4766
4642
dependencies:
4767
-
'@babel/helper-validator-identifier': 7.27.1
4643
+
'@babel/helper-validator-identifier': 7.28.5
4768
4644
js-tokens: 4.0.0
4769
4645
picocolors: 1.1.1
4770
4646
4771
-
'@babel/compat-data@7.28.0': {}
4647
+
'@babel/compat-data@7.28.5': {}
4772
4648
4773
-
'@babel/core@7.28.0':
4649
+
'@babel/core@7.28.5':
4774
4650
dependencies:
4775
-
'@ampproject/remapping': 2.3.0
4776
4651
'@babel/code-frame': 7.27.1
4777
-
'@babel/generator': 7.28.0
4652
+
'@babel/generator': 7.28.5
4778
4653
'@babel/helper-compilation-targets': 7.27.2
4779
-
'@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
4780
-
'@babel/helpers': 7.28.2
4781
-
'@babel/parser': 7.28.0
4654
+
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
4655
+
'@babel/helpers': 7.28.4
4656
+
'@babel/parser': 7.28.5
4782
4657
'@babel/template': 7.27.2
4783
-
'@babel/traverse': 7.28.0
4784
-
'@babel/types': 7.28.2
4658
+
'@babel/traverse': 7.28.5
4659
+
'@babel/types': 7.28.5
4660
+
'@jridgewell/remapping': 2.3.5
4785
4661
convert-source-map: 2.0.0
4786
-
debug: 4.4.0
4662
+
debug: 4.4.3
4787
4663
gensync: 1.0.0-beta.2
4788
4664
json5: 2.2.3
4789
4665
semver: 6.3.1
4790
4666
transitivePeerDependencies:
4791
4667
- supports-color
4792
4668
4793
-
'@babel/generator@7.28.0':
4669
+
'@babel/generator@7.28.5':
4794
4670
dependencies:
4795
-
'@babel/parser': 7.28.0
4796
-
'@babel/types': 7.28.2
4797
-
'@jridgewell/gen-mapping': 0.3.12
4798
-
'@jridgewell/trace-mapping': 0.3.29
4671
+
'@babel/parser': 7.28.5
4672
+
'@babel/types': 7.28.5
4673
+
'@jridgewell/gen-mapping': 0.3.13
4674
+
'@jridgewell/trace-mapping': 0.3.31
4799
4675
jsesc: 3.1.0
4800
4676
4801
4677
'@babel/helper-compilation-targets@7.27.2':
4802
4678
dependencies:
4803
-
'@babel/compat-data': 7.28.0
4679
+
'@babel/compat-data': 7.28.5
4804
4680
'@babel/helper-validator-option': 7.27.1
4805
-
browserslist: 4.25.1
4681
+
browserslist: 4.28.1
4806
4682
lru-cache: 5.1.1
4807
4683
semver: 6.3.1
4808
4684
···
4810
4686
4811
4687
'@babel/helper-module-imports@7.27.1':
4812
4688
dependencies:
4813
-
'@babel/traverse': 7.28.0
4814
-
'@babel/types': 7.28.2
4689
+
'@babel/traverse': 7.28.5
4690
+
'@babel/types': 7.28.5
4815
4691
transitivePeerDependencies:
4816
4692
- supports-color
4817
4693
4818
-
'@babel/helper-module-transforms@7.27.3(@babel/core@7.28.0)':
4694
+
'@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
4819
4695
dependencies:
4820
-
'@babel/core': 7.28.0
4696
+
'@babel/core': 7.28.5
4821
4697
'@babel/helper-module-imports': 7.27.1
4822
-
'@babel/helper-validator-identifier': 7.27.1
4823
-
'@babel/traverse': 7.28.0
4698
+
'@babel/helper-validator-identifier': 7.28.5
4699
+
'@babel/traverse': 7.28.5
4824
4700
transitivePeerDependencies:
4825
4701
- supports-color
4826
4702
···
4828
4704
4829
4705
'@babel/helper-string-parser@7.27.1': {}
4830
4706
4831
-
'@babel/helper-validator-identifier@7.27.1': {}
4707
+
'@babel/helper-validator-identifier@7.28.5': {}
4832
4708
4833
4709
'@babel/helper-validator-option@7.27.1': {}
4834
4710
4835
-
'@babel/helpers@7.28.2':
4711
+
'@babel/helpers@7.28.4':
4836
4712
dependencies:
4837
4713
'@babel/template': 7.27.2
4838
-
'@babel/types': 7.28.2
4714
+
'@babel/types': 7.28.5
4839
4715
4840
-
'@babel/parser@7.28.0':
4716
+
'@babel/parser@7.28.5':
4841
4717
dependencies:
4842
-
'@babel/types': 7.28.2
4718
+
'@babel/types': 7.28.5
4843
4719
4844
-
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.0)':
4720
+
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.5)':
4845
4721
dependencies:
4846
-
'@babel/core': 7.28.0
4722
+
'@babel/core': 7.28.5
4847
4723
'@babel/helper-plugin-utils': 7.27.1
4848
4724
4849
-
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.0)':
4725
+
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.5)':
4850
4726
dependencies:
4851
-
'@babel/core': 7.28.0
4727
+
'@babel/core': 7.28.5
4852
4728
'@babel/helper-plugin-utils': 7.27.1
4853
4729
4854
-
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.0)':
4730
+
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.5)':
4855
4731
dependencies:
4856
-
'@babel/core': 7.28.0
4732
+
'@babel/core': 7.28.5
4857
4733
'@babel/helper-plugin-utils': 7.27.1
4858
4734
4859
-
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.0)':
4735
+
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.5)':
4860
4736
dependencies:
4861
-
'@babel/core': 7.28.0
4737
+
'@babel/core': 7.28.5
4862
4738
'@babel/helper-plugin-utils': 7.27.1
4863
4739
4864
-
'@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.0)':
4740
+
'@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.5)':
4865
4741
dependencies:
4866
-
'@babel/core': 7.28.0
4742
+
'@babel/core': 7.28.5
4867
4743
'@babel/helper-plugin-utils': 7.27.1
4868
4744
4869
-
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.0)':
4745
+
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.5)':
4870
4746
dependencies:
4871
-
'@babel/core': 7.28.0
4747
+
'@babel/core': 7.28.5
4872
4748
'@babel/helper-plugin-utils': 7.27.1
4873
4749
4874
-
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.0)':
4750
+
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.5)':
4875
4751
dependencies:
4876
-
'@babel/core': 7.28.0
4752
+
'@babel/core': 7.28.5
4877
4753
'@babel/helper-plugin-utils': 7.27.1
4878
4754
4879
-
'@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.0)':
4755
+
'@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)':
4880
4756
dependencies:
4881
-
'@babel/core': 7.28.0
4757
+
'@babel/core': 7.28.5
4882
4758
'@babel/helper-plugin-utils': 7.27.1
4883
4759
4884
-
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.0)':
4760
+
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.5)':
4885
4761
dependencies:
4886
-
'@babel/core': 7.28.0
4762
+
'@babel/core': 7.28.5
4887
4763
'@babel/helper-plugin-utils': 7.27.1
4888
4764
4889
-
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.0)':
4765
+
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.5)':
4890
4766
dependencies:
4891
-
'@babel/core': 7.28.0
4767
+
'@babel/core': 7.28.5
4892
4768
'@babel/helper-plugin-utils': 7.27.1
4893
4769
4894
-
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.0)':
4770
+
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.5)':
4895
4771
dependencies:
4896
-
'@babel/core': 7.28.0
4772
+
'@babel/core': 7.28.5
4897
4773
'@babel/helper-plugin-utils': 7.27.1
4898
4774
4899
-
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.0)':
4775
+
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.5)':
4900
4776
dependencies:
4901
-
'@babel/core': 7.28.0
4777
+
'@babel/core': 7.28.5
4902
4778
'@babel/helper-plugin-utils': 7.27.1
4903
4779
4904
-
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.0)':
4780
+
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.5)':
4905
4781
dependencies:
4906
-
'@babel/core': 7.28.0
4782
+
'@babel/core': 7.28.5
4907
4783
'@babel/helper-plugin-utils': 7.27.1
4908
4784
4909
-
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.0)':
4785
+
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.5)':
4910
4786
dependencies:
4911
-
'@babel/core': 7.28.0
4787
+
'@babel/core': 7.28.5
4912
4788
'@babel/helper-plugin-utils': 7.27.1
4913
4789
4914
-
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.0)':
4790
+
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.5)':
4915
4791
dependencies:
4916
-
'@babel/core': 7.28.0
4792
+
'@babel/core': 7.28.5
4917
4793
'@babel/helper-plugin-utils': 7.27.1
4918
4794
4919
-
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.0)':
4795
+
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.5)':
4920
4796
dependencies:
4921
-
'@babel/core': 7.28.0
4797
+
'@babel/core': 7.28.5
4922
4798
'@babel/helper-plugin-utils': 7.27.1
4923
4799
4924
-
'@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.0)':
4800
+
'@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.5)':
4925
4801
dependencies:
4926
-
'@babel/core': 7.28.0
4802
+
'@babel/core': 7.28.5
4927
4803
'@babel/helper-plugin-utils': 7.27.1
4928
4804
4929
-
'@babel/runtime@7.27.0':
4930
-
dependencies:
4931
-
regenerator-runtime: 0.14.1
4805
+
'@babel/runtime@7.28.4': {}
4932
4806
4933
4807
'@babel/template@7.27.2':
4934
4808
dependencies:
4935
4809
'@babel/code-frame': 7.27.1
4936
-
'@babel/parser': 7.28.0
4937
-
'@babel/types': 7.28.2
4810
+
'@babel/parser': 7.28.5
4811
+
'@babel/types': 7.28.5
4938
4812
4939
-
'@babel/traverse@7.28.0':
4813
+
'@babel/traverse@7.28.5':
4940
4814
dependencies:
4941
4815
'@babel/code-frame': 7.27.1
4942
-
'@babel/generator': 7.28.0
4816
+
'@babel/generator': 7.28.5
4943
4817
'@babel/helper-globals': 7.28.0
4944
-
'@babel/parser': 7.28.0
4818
+
'@babel/parser': 7.28.5
4945
4819
'@babel/template': 7.27.2
4946
-
'@babel/types': 7.28.2
4947
-
debug: 4.4.0
4820
+
'@babel/types': 7.28.5
4821
+
debug: 4.4.3
4948
4822
transitivePeerDependencies:
4949
4823
- supports-color
4950
4824
4951
-
'@babel/types@7.28.2':
4825
+
'@babel/types@7.28.5':
4952
4826
dependencies:
4953
4827
'@babel/helper-string-parser': 7.27.1
4954
-
'@babel/helper-validator-identifier': 7.27.1
4828
+
'@babel/helper-validator-identifier': 7.28.5
4955
4829
4956
4830
'@bcoe/v8-coverage@0.2.3': {}
4957
4831
4958
-
'@csstools/color-helpers@5.0.2': {}
4832
+
'@csstools/color-helpers@5.1.0': {}
4959
4833
4960
4834
'@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
4961
4835
dependencies:
4962
4836
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
4963
4837
'@csstools/css-tokenizer': 3.0.4
4964
4838
4965
-
'@csstools/css-color-parser@3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
4839
+
'@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
4966
4840
dependencies:
4967
-
'@csstools/color-helpers': 5.0.2
4841
+
'@csstools/color-helpers': 5.1.0
4968
4842
'@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
4969
4843
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
4970
4844
'@csstools/css-tokenizer': 3.0.4
···
4977
4851
4978
4852
'@date-fns/tz@1.4.1': {}
4979
4853
4980
-
'@dnd-kit/accessibility@3.1.1(react@19.1.1)':
4854
+
'@dnd-kit/accessibility@3.1.1(react@19.2.3)':
4981
4855
dependencies:
4982
-
react: 19.1.1
4856
+
react: 19.2.3
4983
4857
tslib: 2.8.1
4984
4858
4985
-
'@dnd-kit/core@6.3.1(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
4859
+
'@dnd-kit/core@6.3.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
4986
4860
dependencies:
4987
-
'@dnd-kit/accessibility': 3.1.1(react@19.1.1)
4988
-
'@dnd-kit/utilities': 3.2.2(react@19.1.1)
4989
-
react: 19.1.1
4990
-
react-dom: 19.1.1(react@19.1.1)
4861
+
'@dnd-kit/accessibility': 3.1.1(react@19.2.3)
4862
+
'@dnd-kit/utilities': 3.2.2(react@19.2.3)
4863
+
react: 19.2.3
4864
+
react-dom: 19.2.3(react@19.2.3)
4991
4865
tslib: 2.8.1
4992
4866
4993
-
'@dnd-kit/modifiers@9.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)':
4867
+
'@dnd-kit/modifiers@9.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)':
4994
4868
dependencies:
4995
-
'@dnd-kit/core': 6.3.1(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
4996
-
'@dnd-kit/utilities': 3.2.2(react@19.1.1)
4997
-
react: 19.1.1
4869
+
'@dnd-kit/core': 6.3.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
4870
+
'@dnd-kit/utilities': 3.2.2(react@19.2.3)
4871
+
react: 19.2.3
4998
4872
tslib: 2.8.1
4999
4873
5000
-
'@dnd-kit/sortable@10.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1)':
4874
+
'@dnd-kit/sortable@10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3)':
5001
4875
dependencies:
5002
-
'@dnd-kit/core': 6.3.1(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5003
-
'@dnd-kit/utilities': 3.2.2(react@19.1.1)
5004
-
react: 19.1.1
4876
+
'@dnd-kit/core': 6.3.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
4877
+
'@dnd-kit/utilities': 3.2.2(react@19.2.3)
4878
+
react: 19.2.3
5005
4879
tslib: 2.8.1
5006
4880
5007
-
'@dnd-kit/utilities@3.2.2(react@19.1.1)':
4881
+
'@dnd-kit/utilities@3.2.2(react@19.2.3)':
5008
4882
dependencies:
5009
-
react: 19.1.1
4883
+
react: 19.2.3
5010
4884
tslib: 2.8.1
5011
4885
5012
-
'@emnapi/core@1.4.3':
4886
+
'@emnapi/core@1.7.1':
5013
4887
dependencies:
5014
-
'@emnapi/wasi-threads': 1.0.2
4888
+
'@emnapi/wasi-threads': 1.1.0
5015
4889
tslib: 2.8.1
5016
4890
optional: true
5017
4891
5018
-
'@emnapi/runtime@1.4.3':
4892
+
'@emnapi/runtime@1.7.1':
5019
4893
dependencies:
5020
4894
tslib: 2.8.1
5021
4895
optional: true
5022
4896
5023
-
'@emnapi/runtime@1.4.5':
4897
+
'@emnapi/wasi-threads@1.1.0':
5024
4898
dependencies:
5025
4899
tslib: 2.8.1
5026
4900
optional: true
5027
4901
5028
-
'@emnapi/wasi-threads@1.0.2':
4902
+
'@eslint-community/eslint-utils@4.9.0(eslint@9.39.2(jiti@2.6.1))':
5029
4903
dependencies:
5030
-
tslib: 2.8.1
5031
-
optional: true
5032
-
5033
-
'@eslint-community/eslint-utils@4.6.1(eslint@9.25.1(jiti@2.4.2))':
5034
-
dependencies:
5035
-
eslint: 9.25.1(jiti@2.4.2)
4904
+
eslint: 9.39.2(jiti@2.6.1)
5036
4905
eslint-visitor-keys: 3.4.3
5037
4906
5038
-
'@eslint-community/regexpp@4.12.1': {}
4907
+
'@eslint-community/regexpp@4.12.2': {}
5039
4908
5040
-
'@eslint/config-array@0.20.0':
4909
+
'@eslint/config-array@0.21.1':
5041
4910
dependencies:
5042
-
'@eslint/object-schema': 2.1.6
5043
-
debug: 4.4.0
4911
+
'@eslint/object-schema': 2.1.7
4912
+
debug: 4.4.3
5044
4913
minimatch: 3.1.2
5045
4914
transitivePeerDependencies:
5046
4915
- supports-color
5047
4916
5048
-
'@eslint/config-helpers@0.2.1': {}
4917
+
'@eslint/config-helpers@0.4.2':
4918
+
dependencies:
4919
+
'@eslint/core': 0.17.0
5049
4920
5050
-
'@eslint/core@0.13.0':
4921
+
'@eslint/core@0.17.0':
5051
4922
dependencies:
5052
4923
'@types/json-schema': 7.0.15
5053
4924
5054
-
'@eslint/eslintrc@3.3.1':
4925
+
'@eslint/eslintrc@3.3.3':
5055
4926
dependencies:
5056
4927
ajv: 6.12.6
5057
-
debug: 4.4.0
5058
-
espree: 10.3.0
4928
+
debug: 4.4.3
4929
+
espree: 10.4.0
5059
4930
globals: 14.0.0
5060
4931
ignore: 5.3.2
5061
4932
import-fresh: 3.3.1
5062
-
js-yaml: 4.1.0
4933
+
js-yaml: 4.1.1
5063
4934
minimatch: 3.1.2
5064
4935
strip-json-comments: 3.1.1
5065
4936
transitivePeerDependencies:
5066
4937
- supports-color
5067
4938
5068
-
'@eslint/js@9.25.1': {}
4939
+
'@eslint/js@9.39.2': {}
5069
4940
5070
-
'@eslint/object-schema@2.1.6': {}
4941
+
'@eslint/object-schema@2.1.7': {}
5071
4942
5072
-
'@eslint/plugin-kit@0.2.8':
4943
+
'@eslint/plugin-kit@0.4.1':
5073
4944
dependencies:
5074
-
'@eslint/core': 0.13.0
4945
+
'@eslint/core': 0.17.0
5075
4946
levn: 0.4.1
5076
4947
5077
-
'@floating-ui/core@1.6.9':
4948
+
'@floating-ui/core@1.7.3':
5078
4949
dependencies:
5079
-
'@floating-ui/utils': 0.2.9
4950
+
'@floating-ui/utils': 0.2.10
5080
4951
5081
-
'@floating-ui/dom@1.6.13':
4952
+
'@floating-ui/dom@1.7.4':
5082
4953
dependencies:
5083
-
'@floating-ui/core': 1.6.9
5084
-
'@floating-ui/utils': 0.2.9
4954
+
'@floating-ui/core': 1.7.3
4955
+
'@floating-ui/utils': 0.2.10
5085
4956
5086
-
'@floating-ui/react-dom@2.1.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
4957
+
'@floating-ui/react-dom@2.1.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5087
4958
dependencies:
5088
-
'@floating-ui/dom': 1.6.13
5089
-
react: 19.1.1
5090
-
react-dom: 19.1.1(react@19.1.1)
4959
+
'@floating-ui/dom': 1.7.4
4960
+
react: 19.2.3
4961
+
react-dom: 19.2.3(react@19.2.3)
5091
4962
5092
-
'@floating-ui/utils@0.2.9': {}
4963
+
'@floating-ui/utils@0.2.10': {}
5093
4964
5094
4965
'@humanfs/core@0.19.1': {}
5095
4966
5096
-
'@humanfs/node@0.16.6':
4967
+
'@humanfs/node@0.16.7':
5097
4968
dependencies:
5098
4969
'@humanfs/core': 0.19.1
5099
-
'@humanwhocodes/retry': 0.3.1
4970
+
'@humanwhocodes/retry': 0.4.3
5100
4971
5101
4972
'@humanwhocodes/module-importer@1.0.1': {}
5102
4973
5103
-
'@humanwhocodes/retry@0.3.1': {}
4974
+
'@humanwhocodes/retry@0.4.3': {}
5104
4975
5105
-
'@humanwhocodes/retry@0.4.2': {}
4976
+
'@img/colour@1.0.0':
4977
+
optional: true
5106
4978
5107
-
'@img/sharp-darwin-arm64@0.34.3':
4979
+
'@img/sharp-darwin-arm64@0.34.5':
5108
4980
optionalDependencies:
5109
-
'@img/sharp-libvips-darwin-arm64': 1.2.0
4981
+
'@img/sharp-libvips-darwin-arm64': 1.2.4
5110
4982
optional: true
5111
4983
5112
-
'@img/sharp-darwin-x64@0.34.3':
4984
+
'@img/sharp-darwin-x64@0.34.5':
5113
4985
optionalDependencies:
5114
-
'@img/sharp-libvips-darwin-x64': 1.2.0
4986
+
'@img/sharp-libvips-darwin-x64': 1.2.4
5115
4987
optional: true
5116
4988
5117
-
'@img/sharp-libvips-darwin-arm64@1.2.0':
4989
+
'@img/sharp-libvips-darwin-arm64@1.2.4':
5118
4990
optional: true
5119
4991
5120
-
'@img/sharp-libvips-darwin-x64@1.2.0':
4992
+
'@img/sharp-libvips-darwin-x64@1.2.4':
5121
4993
optional: true
5122
4994
5123
-
'@img/sharp-libvips-linux-arm64@1.2.0':
4995
+
'@img/sharp-libvips-linux-arm64@1.2.4':
5124
4996
optional: true
5125
4997
5126
-
'@img/sharp-libvips-linux-arm@1.2.0':
4998
+
'@img/sharp-libvips-linux-arm@1.2.4':
5127
4999
optional: true
5128
5000
5129
-
'@img/sharp-libvips-linux-ppc64@1.2.0':
5001
+
'@img/sharp-libvips-linux-ppc64@1.2.4':
5130
5002
optional: true
5131
5003
5132
-
'@img/sharp-libvips-linux-s390x@1.2.0':
5004
+
'@img/sharp-libvips-linux-riscv64@1.2.4':
5133
5005
optional: true
5134
5006
5135
-
'@img/sharp-libvips-linux-x64@1.2.0':
5007
+
'@img/sharp-libvips-linux-s390x@1.2.4':
5008
+
optional: true
5009
+
5010
+
'@img/sharp-libvips-linux-x64@1.2.4':
5011
+
optional: true
5012
+
5013
+
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
5136
5014
optional: true
5137
5015
5138
-
'@img/sharp-libvips-linuxmusl-arm64@1.2.0':
5016
+
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
5139
5017
optional: true
5140
5018
5141
-
'@img/sharp-libvips-linuxmusl-x64@1.2.0':
5019
+
'@img/sharp-linux-arm64@0.34.5':
5020
+
optionalDependencies:
5021
+
'@img/sharp-libvips-linux-arm64': 1.2.4
5142
5022
optional: true
5143
5023
5144
-
'@img/sharp-linux-arm64@0.34.3':
5024
+
'@img/sharp-linux-arm@0.34.5':
5145
5025
optionalDependencies:
5146
-
'@img/sharp-libvips-linux-arm64': 1.2.0
5026
+
'@img/sharp-libvips-linux-arm': 1.2.4
5147
5027
optional: true
5148
5028
5149
-
'@img/sharp-linux-arm@0.34.3':
5029
+
'@img/sharp-linux-ppc64@0.34.5':
5150
5030
optionalDependencies:
5151
-
'@img/sharp-libvips-linux-arm': 1.2.0
5031
+
'@img/sharp-libvips-linux-ppc64': 1.2.4
5152
5032
optional: true
5153
5033
5154
-
'@img/sharp-linux-ppc64@0.34.3':
5034
+
'@img/sharp-linux-riscv64@0.34.5':
5155
5035
optionalDependencies:
5156
-
'@img/sharp-libvips-linux-ppc64': 1.2.0
5036
+
'@img/sharp-libvips-linux-riscv64': 1.2.4
5157
5037
optional: true
5158
5038
5159
-
'@img/sharp-linux-s390x@0.34.3':
5039
+
'@img/sharp-linux-s390x@0.34.5':
5160
5040
optionalDependencies:
5161
-
'@img/sharp-libvips-linux-s390x': 1.2.0
5041
+
'@img/sharp-libvips-linux-s390x': 1.2.4
5162
5042
optional: true
5163
5043
5164
-
'@img/sharp-linux-x64@0.34.3':
5044
+
'@img/sharp-linux-x64@0.34.5':
5165
5045
optionalDependencies:
5166
-
'@img/sharp-libvips-linux-x64': 1.2.0
5046
+
'@img/sharp-libvips-linux-x64': 1.2.4
5167
5047
optional: true
5168
5048
5169
-
'@img/sharp-linuxmusl-arm64@0.34.3':
5049
+
'@img/sharp-linuxmusl-arm64@0.34.5':
5170
5050
optionalDependencies:
5171
-
'@img/sharp-libvips-linuxmusl-arm64': 1.2.0
5051
+
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
5172
5052
optional: true
5173
5053
5174
-
'@img/sharp-linuxmusl-x64@0.34.3':
5054
+
'@img/sharp-linuxmusl-x64@0.34.5':
5175
5055
optionalDependencies:
5176
-
'@img/sharp-libvips-linuxmusl-x64': 1.2.0
5056
+
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
5177
5057
optional: true
5178
5058
5179
-
'@img/sharp-wasm32@0.34.3':
5059
+
'@img/sharp-wasm32@0.34.5':
5180
5060
dependencies:
5181
-
'@emnapi/runtime': 1.4.5
5061
+
'@emnapi/runtime': 1.7.1
5182
5062
optional: true
5183
5063
5184
-
'@img/sharp-win32-arm64@0.34.3':
5064
+
'@img/sharp-win32-arm64@0.34.5':
5185
5065
optional: true
5186
5066
5187
-
'@img/sharp-win32-ia32@0.34.3':
5067
+
'@img/sharp-win32-ia32@0.34.5':
5188
5068
optional: true
5189
5069
5190
-
'@img/sharp-win32-x64@0.34.3':
5070
+
'@img/sharp-win32-x64@0.34.5':
5191
5071
optional: true
5192
5072
5193
5073
'@isaacs/cliui@8.0.2':
5194
5074
dependencies:
5195
5075
string-width: 5.1.2
5196
5076
string-width-cjs: string-width@4.2.3
5197
-
strip-ansi: 7.1.0
5077
+
strip-ansi: 7.1.2
5198
5078
strip-ansi-cjs: strip-ansi@6.0.1
5199
5079
wrap-ansi: 8.1.0
5200
5080
wrap-ansi-cjs: wrap-ansi@7.0.0
5201
5081
5202
-
'@isaacs/fs-minipass@4.0.1':
5203
-
dependencies:
5204
-
minipass: 7.1.2
5205
-
5206
5082
'@istanbuljs/load-nyc-config@1.1.0':
5207
5083
dependencies:
5208
5084
camelcase: 5.3.1
5209
5085
find-up: 4.1.0
5210
5086
get-package-type: 0.1.0
5211
-
js-yaml: 3.14.1
5087
+
js-yaml: 3.14.2
5212
5088
resolve-from: 5.0.0
5213
5089
5214
5090
'@istanbuljs/schema@0.1.3': {}
5215
5091
5216
-
'@jest/console@30.0.5':
5092
+
'@jest/console@30.2.0':
5217
5093
dependencies:
5218
-
'@jest/types': 30.0.5
5219
-
'@types/node': 20.17.31
5094
+
'@jest/types': 30.2.0
5095
+
'@types/node': 25.0.2
5220
5096
chalk: 4.1.2
5221
-
jest-message-util: 30.0.5
5222
-
jest-util: 30.0.5
5097
+
jest-message-util: 30.2.0
5098
+
jest-util: 30.2.0
5223
5099
slash: 3.0.0
5224
5100
5225
-
'@jest/core@30.0.5':
5101
+
'@jest/core@30.2.0':
5226
5102
dependencies:
5227
-
'@jest/console': 30.0.5
5103
+
'@jest/console': 30.2.0
5228
5104
'@jest/pattern': 30.0.1
5229
-
'@jest/reporters': 30.0.5
5230
-
'@jest/test-result': 30.0.5
5231
-
'@jest/transform': 30.0.5
5232
-
'@jest/types': 30.0.5
5233
-
'@types/node': 20.17.31
5105
+
'@jest/reporters': 30.2.0
5106
+
'@jest/test-result': 30.2.0
5107
+
'@jest/transform': 30.2.0
5108
+
'@jest/types': 30.2.0
5109
+
'@types/node': 25.0.2
5234
5110
ansi-escapes: 4.3.2
5235
5111
chalk: 4.1.2
5236
-
ci-info: 4.3.0
5112
+
ci-info: 4.3.1
5237
5113
exit-x: 0.2.2
5238
5114
graceful-fs: 4.2.11
5239
-
jest-changed-files: 30.0.5
5240
-
jest-config: 30.0.5(@types/node@20.17.31)
5241
-
jest-haste-map: 30.0.5
5242
-
jest-message-util: 30.0.5
5115
+
jest-changed-files: 30.2.0
5116
+
jest-config: 30.2.0(@types/node@25.0.2)
5117
+
jest-haste-map: 30.2.0
5118
+
jest-message-util: 30.2.0
5243
5119
jest-regex-util: 30.0.1
5244
-
jest-resolve: 30.0.5
5245
-
jest-resolve-dependencies: 30.0.5
5246
-
jest-runner: 30.0.5
5247
-
jest-runtime: 30.0.5
5248
-
jest-snapshot: 30.0.5
5249
-
jest-util: 30.0.5
5250
-
jest-validate: 30.0.5
5251
-
jest-watcher: 30.0.5
5120
+
jest-resolve: 30.2.0
5121
+
jest-resolve-dependencies: 30.2.0
5122
+
jest-runner: 30.2.0
5123
+
jest-runtime: 30.2.0
5124
+
jest-snapshot: 30.2.0
5125
+
jest-util: 30.2.0
5126
+
jest-validate: 30.2.0
5127
+
jest-watcher: 30.2.0
5252
5128
micromatch: 4.0.8
5253
-
pretty-format: 30.0.5
5129
+
pretty-format: 30.2.0
5254
5130
slash: 3.0.0
5255
5131
transitivePeerDependencies:
5256
5132
- babel-plugin-macros
···
5258
5134
- supports-color
5259
5135
- ts-node
5260
5136
5261
-
'@jest/create-cache-key-function@30.0.5':
5137
+
'@jest/create-cache-key-function@30.2.0':
5262
5138
dependencies:
5263
-
'@jest/types': 30.0.5
5139
+
'@jest/types': 30.2.0
5264
5140
5265
5141
'@jest/diff-sequences@30.0.1': {}
5266
5142
5267
-
'@jest/environment-jsdom-abstract@30.0.5(jsdom@26.1.0)':
5143
+
'@jest/environment-jsdom-abstract@30.2.0(jsdom@26.1.0)':
5268
5144
dependencies:
5269
-
'@jest/environment': 30.0.5
5270
-
'@jest/fake-timers': 30.0.5
5271
-
'@jest/types': 30.0.5
5145
+
'@jest/environment': 30.2.0
5146
+
'@jest/fake-timers': 30.2.0
5147
+
'@jest/types': 30.2.0
5272
5148
'@types/jsdom': 21.1.7
5273
-
'@types/node': 20.17.31
5274
-
jest-mock: 30.0.5
5275
-
jest-util: 30.0.5
5149
+
'@types/node': 25.0.2
5150
+
jest-mock: 30.2.0
5151
+
jest-util: 30.2.0
5276
5152
jsdom: 26.1.0
5277
5153
5278
-
'@jest/environment@30.0.5':
5154
+
'@jest/environment@30.2.0':
5279
5155
dependencies:
5280
-
'@jest/fake-timers': 30.0.5
5281
-
'@jest/types': 30.0.5
5282
-
'@types/node': 20.17.31
5283
-
jest-mock: 30.0.5
5156
+
'@jest/fake-timers': 30.2.0
5157
+
'@jest/types': 30.2.0
5158
+
'@types/node': 25.0.2
5159
+
jest-mock: 30.2.0
5284
5160
5285
-
'@jest/expect-utils@30.0.5':
5161
+
'@jest/expect-utils@30.2.0':
5286
5162
dependencies:
5287
-
'@jest/get-type': 30.0.1
5163
+
'@jest/get-type': 30.1.0
5288
5164
5289
-
'@jest/expect@30.0.5':
5165
+
'@jest/expect@30.2.0':
5290
5166
dependencies:
5291
-
expect: 30.0.5
5292
-
jest-snapshot: 30.0.5
5167
+
expect: 30.2.0
5168
+
jest-snapshot: 30.2.0
5293
5169
transitivePeerDependencies:
5294
5170
- supports-color
5295
5171
5296
-
'@jest/fake-timers@30.0.5':
5172
+
'@jest/fake-timers@30.2.0':
5297
5173
dependencies:
5298
-
'@jest/types': 30.0.5
5174
+
'@jest/types': 30.2.0
5299
5175
'@sinonjs/fake-timers': 13.0.5
5300
-
'@types/node': 20.17.31
5301
-
jest-message-util: 30.0.5
5302
-
jest-mock: 30.0.5
5303
-
jest-util: 30.0.5
5176
+
'@types/node': 25.0.2
5177
+
jest-message-util: 30.2.0
5178
+
jest-mock: 30.2.0
5179
+
jest-util: 30.2.0
5304
5180
5305
-
'@jest/get-type@30.0.1': {}
5181
+
'@jest/get-type@30.1.0': {}
5306
5182
5307
-
'@jest/globals@30.0.5':
5183
+
'@jest/globals@30.2.0':
5308
5184
dependencies:
5309
-
'@jest/environment': 30.0.5
5310
-
'@jest/expect': 30.0.5
5311
-
'@jest/types': 30.0.5
5312
-
jest-mock: 30.0.5
5185
+
'@jest/environment': 30.2.0
5186
+
'@jest/expect': 30.2.0
5187
+
'@jest/types': 30.2.0
5188
+
jest-mock: 30.2.0
5313
5189
transitivePeerDependencies:
5314
5190
- supports-color
5315
5191
5316
5192
'@jest/pattern@30.0.1':
5317
5193
dependencies:
5318
-
'@types/node': 20.17.31
5194
+
'@types/node': 25.0.2
5319
5195
jest-regex-util: 30.0.1
5320
5196
5321
-
'@jest/reporters@30.0.5':
5197
+
'@jest/reporters@30.2.0':
5322
5198
dependencies:
5323
5199
'@bcoe/v8-coverage': 0.2.3
5324
-
'@jest/console': 30.0.5
5325
-
'@jest/test-result': 30.0.5
5326
-
'@jest/transform': 30.0.5
5327
-
'@jest/types': 30.0.5
5328
-
'@jridgewell/trace-mapping': 0.3.29
5329
-
'@types/node': 20.17.31
5200
+
'@jest/console': 30.2.0
5201
+
'@jest/test-result': 30.2.0
5202
+
'@jest/transform': 30.2.0
5203
+
'@jest/types': 30.2.0
5204
+
'@jridgewell/trace-mapping': 0.3.31
5205
+
'@types/node': 25.0.2
5330
5206
chalk: 4.1.2
5331
-
collect-v8-coverage: 1.0.2
5207
+
collect-v8-coverage: 1.0.3
5332
5208
exit-x: 0.2.2
5333
-
glob: 10.4.5
5209
+
glob: 10.5.0
5334
5210
graceful-fs: 4.2.11
5335
5211
istanbul-lib-coverage: 3.2.2
5336
5212
istanbul-lib-instrument: 6.0.3
5337
5213
istanbul-lib-report: 3.0.1
5338
5214
istanbul-lib-source-maps: 5.0.6
5339
-
istanbul-reports: 3.1.7
5340
-
jest-message-util: 30.0.5
5341
-
jest-util: 30.0.5
5342
-
jest-worker: 30.0.5
5215
+
istanbul-reports: 3.2.0
5216
+
jest-message-util: 30.2.0
5217
+
jest-util: 30.2.0
5218
+
jest-worker: 30.2.0
5343
5219
slash: 3.0.0
5344
5220
string-length: 4.0.2
5345
5221
v8-to-istanbul: 9.3.0
···
5348
5224
5349
5225
'@jest/schemas@30.0.5':
5350
5226
dependencies:
5351
-
'@sinclair/typebox': 0.34.38
5227
+
'@sinclair/typebox': 0.34.41
5352
5228
5353
-
'@jest/snapshot-utils@30.0.5':
5229
+
'@jest/snapshot-utils@30.2.0':
5354
5230
dependencies:
5355
-
'@jest/types': 30.0.5
5231
+
'@jest/types': 30.2.0
5356
5232
chalk: 4.1.2
5357
5233
graceful-fs: 4.2.11
5358
5234
natural-compare: 1.4.0
5359
5235
5360
5236
'@jest/source-map@30.0.1':
5361
5237
dependencies:
5362
-
'@jridgewell/trace-mapping': 0.3.29
5238
+
'@jridgewell/trace-mapping': 0.3.31
5363
5239
callsites: 3.1.0
5364
5240
graceful-fs: 4.2.11
5365
5241
5366
-
'@jest/test-result@30.0.5':
5242
+
'@jest/test-result@30.2.0':
5367
5243
dependencies:
5368
-
'@jest/console': 30.0.5
5369
-
'@jest/types': 30.0.5
5244
+
'@jest/console': 30.2.0
5245
+
'@jest/types': 30.2.0
5370
5246
'@types/istanbul-lib-coverage': 2.0.6
5371
-
collect-v8-coverage: 1.0.2
5247
+
collect-v8-coverage: 1.0.3
5372
5248
5373
-
'@jest/test-sequencer@30.0.5':
5249
+
'@jest/test-sequencer@30.2.0':
5374
5250
dependencies:
5375
-
'@jest/test-result': 30.0.5
5251
+
'@jest/test-result': 30.2.0
5376
5252
graceful-fs: 4.2.11
5377
-
jest-haste-map: 30.0.5
5253
+
jest-haste-map: 30.2.0
5378
5254
slash: 3.0.0
5379
5255
5380
-
'@jest/transform@30.0.5':
5256
+
'@jest/transform@30.2.0':
5381
5257
dependencies:
5382
-
'@babel/core': 7.28.0
5383
-
'@jest/types': 30.0.5
5384
-
'@jridgewell/trace-mapping': 0.3.29
5385
-
babel-plugin-istanbul: 7.0.0
5258
+
'@babel/core': 7.28.5
5259
+
'@jest/types': 30.2.0
5260
+
'@jridgewell/trace-mapping': 0.3.31
5261
+
babel-plugin-istanbul: 7.0.1
5386
5262
chalk: 4.1.2
5387
5263
convert-source-map: 2.0.0
5388
5264
fast-json-stable-stringify: 2.1.0
5389
5265
graceful-fs: 4.2.11
5390
-
jest-haste-map: 30.0.5
5266
+
jest-haste-map: 30.2.0
5391
5267
jest-regex-util: 30.0.1
5392
-
jest-util: 30.0.5
5268
+
jest-util: 30.2.0
5393
5269
micromatch: 4.0.8
5394
5270
pirates: 4.0.7
5395
5271
slash: 3.0.0
···
5397
5273
transitivePeerDependencies:
5398
5274
- supports-color
5399
5275
5400
-
'@jest/types@30.0.5':
5276
+
'@jest/types@30.2.0':
5401
5277
dependencies:
5402
5278
'@jest/pattern': 30.0.1
5403
5279
'@jest/schemas': 30.0.5
5404
5280
'@types/istanbul-lib-coverage': 2.0.6
5405
5281
'@types/istanbul-reports': 3.0.4
5406
-
'@types/node': 20.17.31
5407
-
'@types/yargs': 17.0.33
5282
+
'@types/node': 25.0.2
5283
+
'@types/yargs': 17.0.35
5408
5284
chalk: 4.1.2
5409
5285
5410
-
'@jridgewell/gen-mapping@0.3.12':
5286
+
'@jridgewell/gen-mapping@0.3.13':
5411
5287
dependencies:
5412
-
'@jridgewell/sourcemap-codec': 1.5.4
5413
-
'@jridgewell/trace-mapping': 0.3.29
5288
+
'@jridgewell/sourcemap-codec': 1.5.5
5289
+
'@jridgewell/trace-mapping': 0.3.31
5290
+
5291
+
'@jridgewell/remapping@2.3.5':
5292
+
dependencies:
5293
+
'@jridgewell/gen-mapping': 0.3.13
5294
+
'@jridgewell/trace-mapping': 0.3.31
5414
5295
5415
5296
'@jridgewell/resolve-uri@3.1.2': {}
5416
5297
5417
-
'@jridgewell/sourcemap-codec@1.5.4': {}
5298
+
'@jridgewell/sourcemap-codec@1.5.5': {}
5418
5299
5419
-
'@jridgewell/trace-mapping@0.3.29':
5300
+
'@jridgewell/trace-mapping@0.3.31':
5420
5301
dependencies:
5421
5302
'@jridgewell/resolve-uri': 3.1.2
5422
-
'@jridgewell/sourcemap-codec': 1.5.4
5303
+
'@jridgewell/sourcemap-codec': 1.5.5
5423
5304
5424
-
'@libsql/client@0.15.5':
5305
+
'@libsql/client@0.15.15':
5425
5306
dependencies:
5426
-
'@libsql/core': 0.15.5
5307
+
'@libsql/core': 0.15.15
5427
5308
'@libsql/hrana-client': 0.7.0
5428
-
js-base64: 3.7.7
5429
-
libsql: 0.5.9
5309
+
js-base64: 3.7.8
5310
+
libsql: 0.5.22
5430
5311
promise-limit: 2.7.0
5431
5312
transitivePeerDependencies:
5432
5313
- bufferutil
5433
5314
- utf-8-validate
5434
5315
5435
-
'@libsql/core@0.15.5':
5316
+
'@libsql/core@0.15.15':
5436
5317
dependencies:
5437
-
js-base64: 3.7.7
5318
+
js-base64: 3.7.8
5438
5319
5439
-
'@libsql/darwin-arm64@0.5.9':
5320
+
'@libsql/darwin-arm64@0.5.22':
5440
5321
optional: true
5441
5322
5442
-
'@libsql/darwin-x64@0.5.9':
5323
+
'@libsql/darwin-x64@0.5.22':
5443
5324
optional: true
5444
5325
5445
5326
'@libsql/hrana-client@0.7.0':
5446
5327
dependencies:
5447
5328
'@libsql/isomorphic-fetch': 0.3.1
5448
5329
'@libsql/isomorphic-ws': 0.1.5
5449
-
js-base64: 3.7.7
5330
+
js-base64: 3.7.8
5450
5331
node-fetch: 3.3.2
5451
5332
transitivePeerDependencies:
5452
5333
- bufferutil
···
5457
5338
'@libsql/isomorphic-ws@0.1.5':
5458
5339
dependencies:
5459
5340
'@types/ws': 8.18.1
5460
-
ws: 8.18.2
5341
+
ws: 8.18.3
5461
5342
transitivePeerDependencies:
5462
5343
- bufferutil
5463
5344
- utf-8-validate
5464
5345
5465
-
'@libsql/linux-arm-gnueabihf@0.5.9':
5346
+
'@libsql/linux-arm-gnueabihf@0.5.22':
5466
5347
optional: true
5467
5348
5468
-
'@libsql/linux-arm-musleabihf@0.5.9':
5349
+
'@libsql/linux-arm-musleabihf@0.5.22':
5469
5350
optional: true
5470
5351
5471
-
'@libsql/linux-arm64-gnu@0.5.9':
5352
+
'@libsql/linux-arm64-gnu@0.5.22':
5472
5353
optional: true
5473
5354
5474
-
'@libsql/linux-arm64-musl@0.5.9':
5355
+
'@libsql/linux-arm64-musl@0.5.22':
5475
5356
optional: true
5476
5357
5477
-
'@libsql/linux-x64-gnu@0.5.9':
5358
+
'@libsql/linux-x64-gnu@0.5.22':
5478
5359
optional: true
5479
5360
5480
-
'@libsql/linux-x64-musl@0.5.9':
5361
+
'@libsql/linux-x64-musl@0.5.22':
5481
5362
optional: true
5482
5363
5483
-
'@libsql/win32-x64-msvc@0.5.9':
5364
+
'@libsql/win32-x64-msvc@0.5.22':
5484
5365
optional: true
5485
5366
5486
5367
'@napi-rs/wasm-runtime@0.2.12':
5487
5368
dependencies:
5488
-
'@emnapi/core': 1.4.3
5489
-
'@emnapi/runtime': 1.4.3
5490
-
'@tybys/wasm-util': 0.10.0
5369
+
'@emnapi/core': 1.7.1
5370
+
'@emnapi/runtime': 1.7.1
5371
+
'@tybys/wasm-util': 0.10.1
5491
5372
optional: true
5492
5373
5493
5374
'@neon-rs/load@0.0.4': {}
5494
5375
5495
-
'@next/env@15.4.6': {}
5376
+
'@next/env@16.0.10': {}
5496
5377
5497
-
'@next/eslint-plugin-next@15.4.6':
5378
+
'@next/eslint-plugin-next@16.0.10':
5498
5379
dependencies:
5499
5380
fast-glob: 3.3.1
5500
5381
5501
-
'@next/swc-darwin-arm64@15.4.6':
5382
+
'@next/swc-darwin-arm64@16.0.10':
5502
5383
optional: true
5503
5384
5504
-
'@next/swc-darwin-x64@15.4.6':
5385
+
'@next/swc-darwin-x64@16.0.10':
5505
5386
optional: true
5506
5387
5507
-
'@next/swc-linux-arm64-gnu@15.4.6':
5388
+
'@next/swc-linux-arm64-gnu@16.0.10':
5508
5389
optional: true
5509
5390
5510
-
'@next/swc-linux-arm64-musl@15.4.6':
5391
+
'@next/swc-linux-arm64-musl@16.0.10':
5511
5392
optional: true
5512
5393
5513
-
'@next/swc-linux-x64-gnu@15.4.6':
5394
+
'@next/swc-linux-x64-gnu@16.0.10':
5514
5395
optional: true
5515
5396
5516
-
'@next/swc-linux-x64-musl@15.4.6':
5397
+
'@next/swc-linux-x64-musl@16.0.10':
5517
5398
optional: true
5518
5399
5519
-
'@next/swc-win32-arm64-msvc@15.4.6':
5400
+
'@next/swc-win32-arm64-msvc@16.0.10':
5520
5401
optional: true
5521
5402
5522
-
'@next/swc-win32-x64-msvc@15.4.6':
5403
+
'@next/swc-win32-x64-msvc@16.0.10':
5523
5404
optional: true
5524
5405
5525
5406
'@nodelib/fs.scandir@2.1.5':
···
5536
5417
5537
5418
'@nolyfill/is-core-module@1.0.39': {}
5538
5419
5539
-
'@octokit/auth-token@5.1.2': {}
5420
+
'@octokit/auth-token@6.0.0': {}
5540
5421
5541
-
'@octokit/core@6.1.5':
5422
+
'@octokit/core@7.0.6':
5542
5423
dependencies:
5543
-
'@octokit/auth-token': 5.1.2
5544
-
'@octokit/graphql': 8.2.2
5545
-
'@octokit/request': 9.2.3
5546
-
'@octokit/request-error': 6.1.8
5547
-
'@octokit/types': 14.0.0
5548
-
before-after-hook: 3.0.2
5549
-
universal-user-agent: 7.0.2
5424
+
'@octokit/auth-token': 6.0.0
5425
+
'@octokit/graphql': 9.0.3
5426
+
'@octokit/request': 10.0.7
5427
+
'@octokit/request-error': 7.1.0
5428
+
'@octokit/types': 16.0.0
5429
+
before-after-hook: 4.0.0
5430
+
universal-user-agent: 7.0.3
5550
5431
5551
-
'@octokit/endpoint@10.1.4':
5432
+
'@octokit/endpoint@11.0.2':
5552
5433
dependencies:
5553
-
'@octokit/types': 14.0.0
5554
-
universal-user-agent: 7.0.2
5434
+
'@octokit/types': 16.0.0
5435
+
universal-user-agent: 7.0.3
5555
5436
5556
-
'@octokit/graphql@8.2.2':
5437
+
'@octokit/graphql@9.0.3':
5557
5438
dependencies:
5558
-
'@octokit/request': 9.2.3
5559
-
'@octokit/types': 14.0.0
5560
-
universal-user-agent: 7.0.2
5561
-
5562
-
'@octokit/openapi-types@24.2.0': {}
5439
+
'@octokit/request': 10.0.7
5440
+
'@octokit/types': 16.0.0
5441
+
universal-user-agent: 7.0.3
5563
5442
5564
-
'@octokit/openapi-types@25.0.0': {}
5443
+
'@octokit/openapi-types@27.0.0': {}
5565
5444
5566
-
'@octokit/plugin-paginate-rest@11.6.0(@octokit/core@6.1.5)':
5445
+
'@octokit/plugin-paginate-rest@14.0.0(@octokit/core@7.0.6)':
5567
5446
dependencies:
5568
-
'@octokit/core': 6.1.5
5569
-
'@octokit/types': 13.10.0
5447
+
'@octokit/core': 7.0.6
5448
+
'@octokit/types': 16.0.0
5570
5449
5571
-
'@octokit/plugin-request-log@5.3.1(@octokit/core@6.1.5)':
5572
-
dependencies:
5573
-
'@octokit/core': 6.1.5
5574
-
5575
-
'@octokit/plugin-rest-endpoint-methods@13.5.0(@octokit/core@6.1.5)':
5450
+
'@octokit/plugin-request-log@6.0.0(@octokit/core@7.0.6)':
5576
5451
dependencies:
5577
-
'@octokit/core': 6.1.5
5578
-
'@octokit/types': 13.10.0
5452
+
'@octokit/core': 7.0.6
5579
5453
5580
-
'@octokit/request-error@6.1.8':
5454
+
'@octokit/plugin-rest-endpoint-methods@17.0.0(@octokit/core@7.0.6)':
5581
5455
dependencies:
5582
-
'@octokit/types': 14.0.0
5456
+
'@octokit/core': 7.0.6
5457
+
'@octokit/types': 16.0.0
5583
5458
5584
-
'@octokit/request@9.2.3':
5459
+
'@octokit/request-error@7.1.0':
5585
5460
dependencies:
5586
-
'@octokit/endpoint': 10.1.4
5587
-
'@octokit/request-error': 6.1.8
5588
-
'@octokit/types': 14.0.0
5589
-
fast-content-type-parse: 2.0.1
5590
-
universal-user-agent: 7.0.2
5461
+
'@octokit/types': 16.0.0
5591
5462
5592
-
'@octokit/rest@21.1.1':
5463
+
'@octokit/request@10.0.7':
5593
5464
dependencies:
5594
-
'@octokit/core': 6.1.5
5595
-
'@octokit/plugin-paginate-rest': 11.6.0(@octokit/core@6.1.5)
5596
-
'@octokit/plugin-request-log': 5.3.1(@octokit/core@6.1.5)
5597
-
'@octokit/plugin-rest-endpoint-methods': 13.5.0(@octokit/core@6.1.5)
5465
+
'@octokit/endpoint': 11.0.2
5466
+
'@octokit/request-error': 7.1.0
5467
+
'@octokit/types': 16.0.0
5468
+
fast-content-type-parse: 3.0.0
5469
+
universal-user-agent: 7.0.3
5598
5470
5599
-
'@octokit/types@13.10.0':
5471
+
'@octokit/rest@22.0.1':
5600
5472
dependencies:
5601
-
'@octokit/openapi-types': 24.2.0
5473
+
'@octokit/core': 7.0.6
5474
+
'@octokit/plugin-paginate-rest': 14.0.0(@octokit/core@7.0.6)
5475
+
'@octokit/plugin-request-log': 6.0.0(@octokit/core@7.0.6)
5476
+
'@octokit/plugin-rest-endpoint-methods': 17.0.0(@octokit/core@7.0.6)
5602
5477
5603
-
'@octokit/types@14.0.0':
5478
+
'@octokit/types@16.0.0':
5604
5479
dependencies:
5605
-
'@octokit/openapi-types': 25.0.0
5480
+
'@octokit/openapi-types': 27.0.0
5606
5481
5607
5482
'@opentelemetry/api@1.9.0': {}
5608
5483
···
5615
5490
5616
5491
'@radix-ui/number@1.1.1': {}
5617
5492
5618
-
'@radix-ui/primitive@1.1.2': {}
5493
+
'@radix-ui/primitive@1.1.3': {}
5619
5494
5620
-
'@radix-ui/react-accordion@1.2.10(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5495
+
'@radix-ui/react-accordion@1.2.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5621
5496
dependencies:
5622
-
'@radix-ui/primitive': 1.1.2
5623
-
'@radix-ui/react-collapsible': 1.1.10(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5624
-
'@radix-ui/react-collection': 1.1.6(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5625
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5626
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5627
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5628
-
'@radix-ui/react-id': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5629
-
'@radix-ui/react-primitive': 2.1.2(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5630
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
5631
-
react: 19.1.1
5632
-
react-dom: 19.1.1(react@19.1.1)
5497
+
'@radix-ui/primitive': 1.1.3
5498
+
'@radix-ui/react-collapsible': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5499
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5500
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5501
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5502
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5503
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5504
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5505
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5506
+
react: 19.2.3
5507
+
react-dom: 19.2.3(react@19.2.3)
5633
5508
optionalDependencies:
5634
-
'@types/react': 19.1.10
5635
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5509
+
'@types/react': 19.2.7
5510
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5636
5511
5637
-
'@radix-ui/react-alert-dialog@1.1.14(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5512
+
'@radix-ui/react-alert-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5638
5513
dependencies:
5639
-
'@radix-ui/primitive': 1.1.2
5640
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5641
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5642
-
'@radix-ui/react-dialog': 1.1.14(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5643
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5644
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.1.10)(react@19.1.1)
5645
-
react: 19.1.1
5646
-
react-dom: 19.1.1(react@19.1.1)
5514
+
'@radix-ui/primitive': 1.1.3
5515
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5516
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5517
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5518
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5519
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.7)(react@19.2.3)
5520
+
react: 19.2.3
5521
+
react-dom: 19.2.3(react@19.2.3)
5647
5522
optionalDependencies:
5648
-
'@types/react': 19.1.10
5649
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5523
+
'@types/react': 19.2.7
5524
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5650
5525
5651
-
'@radix-ui/react-arrow@1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5526
+
'@radix-ui/react-arrow@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5652
5527
dependencies:
5653
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5654
-
react: 19.1.1
5655
-
react-dom: 19.1.1(react@19.1.1)
5528
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5529
+
react: 19.2.3
5530
+
react-dom: 19.2.3(react@19.2.3)
5656
5531
optionalDependencies:
5657
-
'@types/react': 19.1.10
5658
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5532
+
'@types/react': 19.2.7
5533
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5659
5534
5660
-
'@radix-ui/react-avatar@1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5535
+
'@radix-ui/react-avatar@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5661
5536
dependencies:
5662
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5663
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5664
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5665
-
'@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.1.10)(react@19.1.1)
5666
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5667
-
react: 19.1.1
5668
-
react-dom: 19.1.1(react@19.1.1)
5537
+
'@radix-ui/react-context': 1.1.3(@types/react@19.2.7)(react@19.2.3)
5538
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5539
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5540
+
'@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.7)(react@19.2.3)
5541
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5542
+
react: 19.2.3
5543
+
react-dom: 19.2.3(react@19.2.3)
5669
5544
optionalDependencies:
5670
-
'@types/react': 19.1.10
5671
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5545
+
'@types/react': 19.2.7
5546
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5672
5547
5673
-
'@radix-ui/react-checkbox@1.2.3(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5548
+
'@radix-ui/react-checkbox@1.3.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5674
5549
dependencies:
5675
-
'@radix-ui/primitive': 1.1.2
5676
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5677
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5678
-
'@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5679
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5680
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
5681
-
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5682
-
'@radix-ui/react-use-size': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5683
-
react: 19.1.1
5684
-
react-dom: 19.1.1(react@19.1.1)
5550
+
'@radix-ui/primitive': 1.1.3
5551
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5552
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5553
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5554
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5555
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5556
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5557
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5558
+
react: 19.2.3
5559
+
react-dom: 19.2.3(react@19.2.3)
5685
5560
optionalDependencies:
5686
-
'@types/react': 19.1.10
5687
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5561
+
'@types/react': 19.2.7
5562
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5688
5563
5689
-
'@radix-ui/react-collapsible@1.1.10(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5564
+
'@radix-ui/react-collapsible@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5690
5565
dependencies:
5691
-
'@radix-ui/primitive': 1.1.2
5692
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5693
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5694
-
'@radix-ui/react-id': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5695
-
'@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5696
-
'@radix-ui/react-primitive': 2.1.2(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5697
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
5698
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5699
-
react: 19.1.1
5700
-
react-dom: 19.1.1(react@19.1.1)
5566
+
'@radix-ui/primitive': 1.1.3
5567
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5568
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5569
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5570
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5571
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5572
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5573
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5574
+
react: 19.2.3
5575
+
react-dom: 19.2.3(react@19.2.3)
5701
5576
optionalDependencies:
5702
-
'@types/react': 19.1.10
5703
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5577
+
'@types/react': 19.2.7
5578
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5704
5579
5705
-
'@radix-ui/react-collection@1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5580
+
'@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5706
5581
dependencies:
5707
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5708
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5709
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5710
-
'@radix-ui/react-slot': 1.2.0(@types/react@19.1.10)(react@19.1.1)
5711
-
react: 19.1.1
5712
-
react-dom: 19.1.1(react@19.1.1)
5582
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5583
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5584
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5585
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.7)(react@19.2.3)
5586
+
react: 19.2.3
5587
+
react-dom: 19.2.3(react@19.2.3)
5713
5588
optionalDependencies:
5714
-
'@types/react': 19.1.10
5715
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5589
+
'@types/react': 19.2.7
5590
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5716
5591
5717
-
'@radix-ui/react-collection@1.1.6(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5592
+
'@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.7)(react@19.2.3)':
5718
5593
dependencies:
5719
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5720
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5721
-
'@radix-ui/react-primitive': 2.1.2(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5722
-
'@radix-ui/react-slot': 1.2.2(@types/react@19.1.10)(react@19.1.1)
5723
-
react: 19.1.1
5724
-
react-dom: 19.1.1(react@19.1.1)
5594
+
react: 19.2.3
5725
5595
optionalDependencies:
5726
-
'@types/react': 19.1.10
5727
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5596
+
'@types/react': 19.2.7
5728
5597
5729
-
'@radix-ui/react-collection@1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5598
+
'@radix-ui/react-context@1.1.2(@types/react@19.2.7)(react@19.2.3)':
5730
5599
dependencies:
5731
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5732
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5733
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5734
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.1.10)(react@19.1.1)
5735
-
react: 19.1.1
5736
-
react-dom: 19.1.1(react@19.1.1)
5600
+
react: 19.2.3
5737
5601
optionalDependencies:
5738
-
'@types/react': 19.1.10
5739
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5602
+
'@types/react': 19.2.7
5740
5603
5741
-
'@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.10)(react@19.1.1)':
5604
+
'@radix-ui/react-context@1.1.3(@types/react@19.2.7)(react@19.2.3)':
5742
5605
dependencies:
5743
-
react: 19.1.1
5606
+
react: 19.2.3
5744
5607
optionalDependencies:
5745
-
'@types/react': 19.1.10
5608
+
'@types/react': 19.2.7
5746
5609
5747
-
'@radix-ui/react-context@1.1.2(@types/react@19.1.10)(react@19.1.1)':
5610
+
'@radix-ui/react-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5748
5611
dependencies:
5749
-
react: 19.1.1
5612
+
'@radix-ui/primitive': 1.1.3
5613
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5614
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5615
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5616
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.7)(react@19.2.3)
5617
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5618
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5619
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5620
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5621
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5622
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.7)(react@19.2.3)
5623
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5624
+
aria-hidden: 1.2.6
5625
+
react: 19.2.3
5626
+
react-dom: 19.2.3(react@19.2.3)
5627
+
react-remove-scroll: 2.7.2(@types/react@19.2.7)(react@19.2.3)
5750
5628
optionalDependencies:
5751
-
'@types/react': 19.1.10
5629
+
'@types/react': 19.2.7
5630
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5752
5631
5753
-
'@radix-ui/react-dialog@1.1.11(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5632
+
'@radix-ui/react-direction@1.1.1(@types/react@19.2.7)(react@19.2.3)':
5754
5633
dependencies:
5755
-
'@radix-ui/primitive': 1.1.2
5756
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5757
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5758
-
'@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5759
-
'@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5760
-
'@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5761
-
'@radix-ui/react-id': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5762
-
'@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5763
-
'@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5764
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5765
-
'@radix-ui/react-slot': 1.2.0(@types/react@19.1.10)(react@19.1.1)
5766
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
5767
-
aria-hidden: 1.2.4
5768
-
react: 19.1.1
5769
-
react-dom: 19.1.1(react@19.1.1)
5770
-
react-remove-scroll: 2.6.3(@types/react@19.1.10)(react@19.1.1)
5634
+
react: 19.2.3
5771
5635
optionalDependencies:
5772
-
'@types/react': 19.1.10
5773
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5636
+
'@types/react': 19.2.7
5774
5637
5775
-
'@radix-ui/react-dialog@1.1.14(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5638
+
'@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5776
5639
dependencies:
5777
-
'@radix-ui/primitive': 1.1.2
5778
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5779
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5780
-
'@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5781
-
'@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5782
-
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5783
-
'@radix-ui/react-id': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5784
-
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5785
-
'@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5786
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5787
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.1.10)(react@19.1.1)
5788
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
5789
-
aria-hidden: 1.2.4
5790
-
react: 19.1.1
5791
-
react-dom: 19.1.1(react@19.1.1)
5792
-
react-remove-scroll: 2.6.3(@types/react@19.1.10)(react@19.1.1)
5640
+
'@radix-ui/primitive': 1.1.3
5641
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5642
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5643
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5644
+
'@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5645
+
react: 19.2.3
5646
+
react-dom: 19.2.3(react@19.2.3)
5793
5647
optionalDependencies:
5794
-
'@types/react': 19.1.10
5795
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5648
+
'@types/react': 19.2.7
5649
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5796
5650
5797
-
'@radix-ui/react-direction@1.1.1(@types/react@19.1.10)(react@19.1.1)':
5651
+
'@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5798
5652
dependencies:
5799
-
react: 19.1.1
5653
+
'@radix-ui/primitive': 1.1.3
5654
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5655
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5656
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5657
+
'@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5658
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5659
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5660
+
react: 19.2.3
5661
+
react-dom: 19.2.3(react@19.2.3)
5800
5662
optionalDependencies:
5801
-
'@types/react': 19.1.10
5663
+
'@types/react': 19.2.7
5664
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5802
5665
5803
-
'@radix-ui/react-dismissable-layer@1.1.10(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5666
+
'@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.7)(react@19.2.3)':
5804
5667
dependencies:
5805
-
'@radix-ui/primitive': 1.1.2
5806
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5807
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5808
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5809
-
'@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5810
-
react: 19.1.1
5811
-
react-dom: 19.1.1(react@19.1.1)
5668
+
react: 19.2.3
5812
5669
optionalDependencies:
5813
-
'@types/react': 19.1.10
5814
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5670
+
'@types/react': 19.2.7
5815
5671
5816
-
'@radix-ui/react-dismissable-layer@1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5672
+
'@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5817
5673
dependencies:
5818
-
'@radix-ui/primitive': 1.1.2
5819
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5820
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5821
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5822
-
'@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5823
-
react: 19.1.1
5824
-
react-dom: 19.1.1(react@19.1.1)
5674
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5675
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5676
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5677
+
react: 19.2.3
5678
+
react-dom: 19.2.3(react@19.2.3)
5825
5679
optionalDependencies:
5826
-
'@types/react': 19.1.10
5827
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5680
+
'@types/react': 19.2.7
5681
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5828
5682
5829
-
'@radix-ui/react-dropdown-menu@2.1.12(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5683
+
'@radix-ui/react-id@1.1.1(@types/react@19.2.7)(react@19.2.3)':
5830
5684
dependencies:
5831
-
'@radix-ui/primitive': 1.1.2
5832
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5833
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5834
-
'@radix-ui/react-id': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5835
-
'@radix-ui/react-menu': 2.1.12(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5836
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5837
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
5838
-
react: 19.1.1
5839
-
react-dom: 19.1.1(react@19.1.1)
5685
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5686
+
react: 19.2.3
5840
5687
optionalDependencies:
5841
-
'@types/react': 19.1.10
5842
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5688
+
'@types/react': 19.2.7
5843
5689
5844
-
'@radix-ui/react-focus-guards@1.1.2(@types/react@19.1.10)(react@19.1.1)':
5690
+
'@radix-ui/react-label@2.1.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5845
5691
dependencies:
5846
-
react: 19.1.1
5692
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5693
+
react: 19.2.3
5694
+
react-dom: 19.2.3(react@19.2.3)
5847
5695
optionalDependencies:
5848
-
'@types/react': 19.1.10
5696
+
'@types/react': 19.2.7
5697
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5849
5698
5850
-
'@radix-ui/react-focus-scope@1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5699
+
'@radix-ui/react-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5851
5700
dependencies:
5852
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5853
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5854
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5855
-
react: 19.1.1
5856
-
react-dom: 19.1.1(react@19.1.1)
5701
+
'@radix-ui/primitive': 1.1.3
5702
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5703
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5704
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5705
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5706
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5707
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.7)(react@19.2.3)
5708
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5709
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5710
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5711
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5712
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5713
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5714
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5715
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.7)(react@19.2.3)
5716
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5717
+
aria-hidden: 1.2.6
5718
+
react: 19.2.3
5719
+
react-dom: 19.2.3(react@19.2.3)
5720
+
react-remove-scroll: 2.7.2(@types/react@19.2.7)(react@19.2.3)
5857
5721
optionalDependencies:
5858
-
'@types/react': 19.1.10
5859
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5722
+
'@types/react': 19.2.7
5723
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5860
5724
5861
-
'@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5725
+
'@radix-ui/react-popover@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5862
5726
dependencies:
5863
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5864
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5865
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5866
-
react: 19.1.1
5867
-
react-dom: 19.1.1(react@19.1.1)
5727
+
'@radix-ui/primitive': 1.1.3
5728
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5729
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5730
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5731
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.7)(react@19.2.3)
5732
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5733
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5734
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5735
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5736
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5737
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5738
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.7)(react@19.2.3)
5739
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5740
+
aria-hidden: 1.2.6
5741
+
react: 19.2.3
5742
+
react-dom: 19.2.3(react@19.2.3)
5743
+
react-remove-scroll: 2.7.2(@types/react@19.2.7)(react@19.2.3)
5868
5744
optionalDependencies:
5869
-
'@types/react': 19.1.10
5870
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5745
+
'@types/react': 19.2.7
5746
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5871
5747
5872
-
'@radix-ui/react-id@1.1.1(@types/react@19.1.10)(react@19.1.1)':
5748
+
'@radix-ui/react-popper@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5873
5749
dependencies:
5874
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5875
-
react: 19.1.1
5876
-
optionalDependencies:
5877
-
'@types/react': 19.1.10
5878
-
5879
-
'@radix-ui/react-label@2.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5880
-
dependencies:
5881
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5882
-
react: 19.1.1
5883
-
react-dom: 19.1.1(react@19.1.1)
5884
-
optionalDependencies:
5885
-
'@types/react': 19.1.10
5886
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5887
-
5888
-
'@radix-ui/react-menu@2.1.12(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5889
-
dependencies:
5890
-
'@radix-ui/primitive': 1.1.2
5891
-
'@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5892
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5893
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5894
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5895
-
'@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5896
-
'@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5897
-
'@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5898
-
'@radix-ui/react-id': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5899
-
'@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5900
-
'@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5901
-
'@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5902
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5903
-
'@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5904
-
'@radix-ui/react-slot': 1.2.0(@types/react@19.1.10)(react@19.1.1)
5905
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5906
-
aria-hidden: 1.2.4
5907
-
react: 19.1.1
5908
-
react-dom: 19.1.1(react@19.1.1)
5909
-
react-remove-scroll: 2.6.3(@types/react@19.1.10)(react@19.1.1)
5910
-
optionalDependencies:
5911
-
'@types/react': 19.1.10
5912
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5913
-
5914
-
'@radix-ui/react-popover@1.1.11(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5915
-
dependencies:
5916
-
'@radix-ui/primitive': 1.1.2
5917
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5918
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5919
-
'@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5920
-
'@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5921
-
'@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5922
-
'@radix-ui/react-id': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5923
-
'@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5924
-
'@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5925
-
'@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5926
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5927
-
'@radix-ui/react-slot': 1.2.0(@types/react@19.1.10)(react@19.1.1)
5928
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
5929
-
aria-hidden: 1.2.4
5930
-
react: 19.1.1
5931
-
react-dom: 19.1.1(react@19.1.1)
5932
-
react-remove-scroll: 2.6.3(@types/react@19.1.10)(react@19.1.1)
5933
-
optionalDependencies:
5934
-
'@types/react': 19.1.10
5935
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5936
-
5937
-
'@radix-ui/react-popper@1.2.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5938
-
dependencies:
5939
-
'@floating-ui/react-dom': 2.1.2(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5940
-
'@radix-ui/react-arrow': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5941
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5942
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5943
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5944
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5945
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5946
-
'@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5947
-
'@radix-ui/react-use-size': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5750
+
'@floating-ui/react-dom': 2.1.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5751
+
'@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5752
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5753
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5754
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5755
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5756
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5757
+
'@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5758
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5948
5759
'@radix-ui/rect': 1.1.1
5949
-
react: 19.1.1
5950
-
react-dom: 19.1.1(react@19.1.1)
5760
+
react: 19.2.3
5761
+
react-dom: 19.2.3(react@19.2.3)
5951
5762
optionalDependencies:
5952
-
'@types/react': 19.1.10
5953
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5763
+
'@types/react': 19.2.7
5764
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5954
5765
5955
-
'@radix-ui/react-portal@1.1.6(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5766
+
'@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5956
5767
dependencies:
5957
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5958
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5959
-
react: 19.1.1
5960
-
react-dom: 19.1.1(react@19.1.1)
5768
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5769
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5770
+
react: 19.2.3
5771
+
react-dom: 19.2.3(react@19.2.3)
5961
5772
optionalDependencies:
5962
-
'@types/react': 19.1.10
5963
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5773
+
'@types/react': 19.2.7
5774
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5964
5775
5965
-
'@radix-ui/react-portal@1.1.9(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5776
+
'@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5966
5777
dependencies:
5967
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
5968
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5969
-
react: 19.1.1
5970
-
react-dom: 19.1.1(react@19.1.1)
5778
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5779
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5780
+
react: 19.2.3
5781
+
react-dom: 19.2.3(react@19.2.3)
5971
5782
optionalDependencies:
5972
-
'@types/react': 19.1.10
5973
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5783
+
'@types/react': 19.2.7
5784
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5974
5785
5975
-
'@radix-ui/react-presence@1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5786
+
'@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5976
5787
dependencies:
5977
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
5978
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
5979
-
react: 19.1.1
5980
-
react-dom: 19.1.1(react@19.1.1)
5788
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.7)(react@19.2.3)
5789
+
react: 19.2.3
5790
+
react-dom: 19.2.3(react@19.2.3)
5981
5791
optionalDependencies:
5982
-
'@types/react': 19.1.10
5983
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5792
+
'@types/react': 19.2.7
5793
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5984
5794
5985
-
'@radix-ui/react-primitive@2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5795
+
'@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5986
5796
dependencies:
5987
-
'@radix-ui/react-slot': 1.2.0(@types/react@19.1.10)(react@19.1.1)
5988
-
react: 19.1.1
5989
-
react-dom: 19.1.1(react@19.1.1)
5797
+
'@radix-ui/react-slot': 1.2.4(@types/react@19.2.7)(react@19.2.3)
5798
+
react: 19.2.3
5799
+
react-dom: 19.2.3(react@19.2.3)
5990
5800
optionalDependencies:
5991
-
'@types/react': 19.1.10
5992
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5801
+
'@types/react': 19.2.7
5802
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
5993
5803
5994
-
'@radix-ui/react-primitive@2.1.2(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5804
+
'@radix-ui/react-progress@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
5995
5805
dependencies:
5996
-
'@radix-ui/react-slot': 1.2.2(@types/react@19.1.10)(react@19.1.1)
5997
-
react: 19.1.1
5998
-
react-dom: 19.1.1(react@19.1.1)
5806
+
'@radix-ui/react-context': 1.1.3(@types/react@19.2.7)(react@19.2.3)
5807
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5808
+
react: 19.2.3
5809
+
react-dom: 19.2.3(react@19.2.3)
5999
5810
optionalDependencies:
6000
-
'@types/react': 19.1.10
6001
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5811
+
'@types/react': 19.2.7
5812
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
6002
5813
6003
-
'@radix-ui/react-primitive@2.1.3(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5814
+
'@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
6004
5815
dependencies:
6005
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.1.10)(react@19.1.1)
6006
-
react: 19.1.1
6007
-
react-dom: 19.1.1(react@19.1.1)
5816
+
'@radix-ui/primitive': 1.1.3
5817
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5818
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5819
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5820
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5821
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5822
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5823
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5824
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5825
+
react: 19.2.3
5826
+
react-dom: 19.2.3(react@19.2.3)
6008
5827
optionalDependencies:
6009
-
'@types/react': 19.1.10
6010
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5828
+
'@types/react': 19.2.7
5829
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
6011
5830
6012
-
'@radix-ui/react-progress@1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
6013
-
dependencies:
6014
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6015
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6016
-
react: 19.1.1
6017
-
react-dom: 19.1.1(react@19.1.1)
6018
-
optionalDependencies:
6019
-
'@types/react': 19.1.10
6020
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
6021
-
6022
-
'@radix-ui/react-roving-focus@1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
6023
-
dependencies:
6024
-
'@radix-ui/primitive': 1.1.2
6025
-
'@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6026
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6027
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6028
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6029
-
'@radix-ui/react-id': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6030
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6031
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6032
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
6033
-
react: 19.1.1
6034
-
react-dom: 19.1.1(react@19.1.1)
6035
-
optionalDependencies:
6036
-
'@types/react': 19.1.10
6037
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
6038
-
6039
-
'@radix-ui/react-select@2.2.2(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5831
+
'@radix-ui/react-select@2.2.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
6040
5832
dependencies:
6041
5833
'@radix-ui/number': 1.1.1
6042
-
'@radix-ui/primitive': 1.1.2
6043
-
'@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6044
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6045
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6046
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6047
-
'@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6048
-
'@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6049
-
'@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6050
-
'@radix-ui/react-id': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6051
-
'@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6052
-
'@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6053
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6054
-
'@radix-ui/react-slot': 1.2.0(@types/react@19.1.10)(react@19.1.1)
6055
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6056
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
6057
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6058
-
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6059
-
'@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6060
-
aria-hidden: 1.2.4
6061
-
react: 19.1.1
6062
-
react-dom: 19.1.1(react@19.1.1)
6063
-
react-remove-scroll: 2.6.3(@types/react@19.1.10)(react@19.1.1)
5834
+
'@radix-ui/primitive': 1.1.3
5835
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5836
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5837
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5838
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5839
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5840
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.7)(react@19.2.3)
5841
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5842
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5843
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5844
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5845
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5846
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.7)(react@19.2.3)
5847
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5848
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5849
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5850
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5851
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5852
+
aria-hidden: 1.2.6
5853
+
react: 19.2.3
5854
+
react-dom: 19.2.3(react@19.2.3)
5855
+
react-remove-scroll: 2.7.2(@types/react@19.2.7)(react@19.2.3)
6064
5856
optionalDependencies:
6065
-
'@types/react': 19.1.10
6066
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5857
+
'@types/react': 19.2.7
5858
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
6067
5859
6068
-
'@radix-ui/react-separator@1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5860
+
'@radix-ui/react-separator@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
6069
5861
dependencies:
6070
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6071
-
react: 19.1.1
6072
-
react-dom: 19.1.1(react@19.1.1)
5862
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5863
+
react: 19.2.3
5864
+
react-dom: 19.2.3(react@19.2.3)
6073
5865
optionalDependencies:
6074
-
'@types/react': 19.1.10
6075
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5866
+
'@types/react': 19.2.7
5867
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
6076
5868
6077
-
'@radix-ui/react-slider@1.3.5(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5869
+
'@radix-ui/react-slider@1.3.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
6078
5870
dependencies:
6079
5871
'@radix-ui/number': 1.1.1
6080
-
'@radix-ui/primitive': 1.1.2
6081
-
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6082
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6083
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6084
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6085
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6086
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
6087
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6088
-
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6089
-
'@radix-ui/react-use-size': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6090
-
react: 19.1.1
6091
-
react-dom: 19.1.1(react@19.1.1)
5872
+
'@radix-ui/primitive': 1.1.3
5873
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5874
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5875
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5876
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5877
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5878
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5879
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5880
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5881
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5882
+
react: 19.2.3
5883
+
react-dom: 19.2.3(react@19.2.3)
6092
5884
optionalDependencies:
6093
-
'@types/react': 19.1.10
6094
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5885
+
'@types/react': 19.2.7
5886
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
6095
5887
6096
-
'@radix-ui/react-slot@1.2.0(@types/react@19.1.10)(react@19.1.1)':
5888
+
'@radix-ui/react-slot@1.2.3(@types/react@19.2.7)(react@19.2.3)':
6097
5889
dependencies:
6098
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6099
-
react: 19.1.1
5890
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5891
+
react: 19.2.3
6100
5892
optionalDependencies:
6101
-
'@types/react': 19.1.10
5893
+
'@types/react': 19.2.7
6102
5894
6103
-
'@radix-ui/react-slot@1.2.2(@types/react@19.1.10)(react@19.1.1)':
5895
+
'@radix-ui/react-slot@1.2.4(@types/react@19.2.7)(react@19.2.3)':
6104
5896
dependencies:
6105
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6106
-
react: 19.1.1
5897
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5898
+
react: 19.2.3
6107
5899
optionalDependencies:
6108
-
'@types/react': 19.1.10
5900
+
'@types/react': 19.2.7
6109
5901
6110
-
'@radix-ui/react-slot@1.2.3(@types/react@19.1.10)(react@19.1.1)':
5902
+
'@radix-ui/react-switch@1.2.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
6111
5903
dependencies:
6112
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6113
-
react: 19.1.1
5904
+
'@radix-ui/primitive': 1.1.3
5905
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5906
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5907
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5908
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5909
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5910
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5911
+
react: 19.2.3
5912
+
react-dom: 19.2.3(react@19.2.3)
6114
5913
optionalDependencies:
6115
-
'@types/react': 19.1.10
5914
+
'@types/react': 19.2.7
5915
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
6116
5916
6117
-
'@radix-ui/react-switch@1.2.2(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5917
+
'@radix-ui/react-tabs@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
6118
5918
dependencies:
6119
-
'@radix-ui/primitive': 1.1.2
6120
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6121
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6122
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6123
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
6124
-
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6125
-
'@radix-ui/react-use-size': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6126
-
react: 19.1.1
6127
-
react-dom: 19.1.1(react@19.1.1)
5919
+
'@radix-ui/primitive': 1.1.3
5920
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5921
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5922
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5923
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5924
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5925
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5926
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5927
+
react: 19.2.3
5928
+
react-dom: 19.2.3(react@19.2.3)
6128
5929
optionalDependencies:
6129
-
'@types/react': 19.1.10
6130
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5930
+
'@types/react': 19.2.7
5931
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
6131
5932
6132
-
'@radix-ui/react-tabs@1.1.9(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5933
+
'@radix-ui/react-toggle-group@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
6133
5934
dependencies:
6134
-
'@radix-ui/primitive': 1.1.2
6135
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6136
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6137
-
'@radix-ui/react-id': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6138
-
'@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6139
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6140
-
'@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6141
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
6142
-
react: 19.1.1
6143
-
react-dom: 19.1.1(react@19.1.1)
5935
+
'@radix-ui/primitive': 1.1.3
5936
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5937
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5938
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5939
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5940
+
'@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5941
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5942
+
react: 19.2.3
5943
+
react-dom: 19.2.3(react@19.2.3)
6144
5944
optionalDependencies:
6145
-
'@types/react': 19.1.10
6146
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5945
+
'@types/react': 19.2.7
5946
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
6147
5947
6148
-
'@radix-ui/react-toggle-group@1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5948
+
'@radix-ui/react-toggle@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
6149
5949
dependencies:
6150
-
'@radix-ui/primitive': 1.1.2
6151
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6152
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6153
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6154
-
'@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6155
-
'@radix-ui/react-toggle': 1.1.6(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6156
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
6157
-
react: 19.1.1
6158
-
react-dom: 19.1.1(react@19.1.1)
5950
+
'@radix-ui/primitive': 1.1.3
5951
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5952
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5953
+
react: 19.2.3
5954
+
react-dom: 19.2.3(react@19.2.3)
6159
5955
optionalDependencies:
6160
-
'@types/react': 19.1.10
6161
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5956
+
'@types/react': 19.2.7
5957
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
6162
5958
6163
-
'@radix-ui/react-toggle@1.1.6(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
5959
+
'@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
6164
5960
dependencies:
6165
-
'@radix-ui/primitive': 1.1.2
6166
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6167
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
6168
-
react: 19.1.1
6169
-
react-dom: 19.1.1(react@19.1.1)
5961
+
'@radix-ui/primitive': 1.1.3
5962
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5963
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.3)
5964
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5965
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5966
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5967
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5968
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5969
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5970
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.7)(react@19.2.3)
5971
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.3)
5972
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
5973
+
react: 19.2.3
5974
+
react-dom: 19.2.3(react@19.2.3)
6170
5975
optionalDependencies:
6171
-
'@types/react': 19.1.10
6172
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
6173
-
6174
-
'@radix-ui/react-tooltip@1.2.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
6175
-
dependencies:
6176
-
'@radix-ui/primitive': 1.1.2
6177
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6178
-
'@radix-ui/react-context': 1.1.2(@types/react@19.1.10)(react@19.1.1)
6179
-
'@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6180
-
'@radix-ui/react-id': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6181
-
'@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6182
-
'@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6183
-
'@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6184
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6185
-
'@radix-ui/react-slot': 1.2.0(@types/react@19.1.10)(react@19.1.1)
6186
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.10)(react@19.1.1)
6187
-
'@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6188
-
react: 19.1.1
6189
-
react-dom: 19.1.1(react@19.1.1)
6190
-
optionalDependencies:
6191
-
'@types/react': 19.1.10
6192
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
5976
+
'@types/react': 19.2.7
5977
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
6193
5978
6194
-
'@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.10)(react@19.1.1)':
5979
+
'@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.7)(react@19.2.3)':
6195
5980
dependencies:
6196
-
react: 19.1.1
5981
+
react: 19.2.3
6197
5982
optionalDependencies:
6198
-
'@types/react': 19.1.10
5983
+
'@types/react': 19.2.7
6199
5984
6200
-
'@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.10)(react@19.1.1)':
5985
+
'@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.7)(react@19.2.3)':
6201
5986
dependencies:
6202
-
'@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.10)(react@19.1.1)
6203
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6204
-
react: 19.1.1
5987
+
'@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.7)(react@19.2.3)
5988
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5989
+
react: 19.2.3
6205
5990
optionalDependencies:
6206
-
'@types/react': 19.1.10
5991
+
'@types/react': 19.2.7
6207
5992
6208
-
'@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.10)(react@19.1.1)':
5993
+
'@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.7)(react@19.2.3)':
6209
5994
dependencies:
6210
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6211
-
react: 19.1.1
5995
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.3)
5996
+
react: 19.2.3
6212
5997
optionalDependencies:
6213
-
'@types/react': 19.1.10
5998
+
'@types/react': 19.2.7
6214
5999
6215
-
'@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.10)(react@19.1.1)':
6000
+
'@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.7)(react@19.2.3)':
6216
6001
dependencies:
6217
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6218
-
react: 19.1.1
6002
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.3)
6003
+
react: 19.2.3
6219
6004
optionalDependencies:
6220
-
'@types/react': 19.1.10
6005
+
'@types/react': 19.2.7
6221
6006
6222
-
'@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.1.10)(react@19.1.1)':
6007
+
'@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.2.7)(react@19.2.3)':
6223
6008
dependencies:
6224
-
react: 19.1.1
6225
-
use-sync-external-store: 1.5.0(react@19.1.1)
6009
+
react: 19.2.3
6010
+
use-sync-external-store: 1.6.0(react@19.2.3)
6226
6011
optionalDependencies:
6227
-
'@types/react': 19.1.10
6012
+
'@types/react': 19.2.7
6228
6013
6229
-
'@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.10)(react@19.1.1)':
6014
+
'@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.7)(react@19.2.3)':
6230
6015
dependencies:
6231
-
react: 19.1.1
6016
+
react: 19.2.3
6232
6017
optionalDependencies:
6233
-
'@types/react': 19.1.10
6018
+
'@types/react': 19.2.7
6234
6019
6235
-
'@radix-ui/react-use-previous@1.1.1(@types/react@19.1.10)(react@19.1.1)':
6020
+
'@radix-ui/react-use-previous@1.1.1(@types/react@19.2.7)(react@19.2.3)':
6236
6021
dependencies:
6237
-
react: 19.1.1
6022
+
react: 19.2.3
6238
6023
optionalDependencies:
6239
-
'@types/react': 19.1.10
6024
+
'@types/react': 19.2.7
6240
6025
6241
-
'@radix-ui/react-use-rect@1.1.1(@types/react@19.1.10)(react@19.1.1)':
6026
+
'@radix-ui/react-use-rect@1.1.1(@types/react@19.2.7)(react@19.2.3)':
6242
6027
dependencies:
6243
6028
'@radix-ui/rect': 1.1.1
6244
-
react: 19.1.1
6029
+
react: 19.2.3
6245
6030
optionalDependencies:
6246
-
'@types/react': 19.1.10
6031
+
'@types/react': 19.2.7
6247
6032
6248
-
'@radix-ui/react-use-size@1.1.1(@types/react@19.1.10)(react@19.1.1)':
6033
+
'@radix-ui/react-use-size@1.1.1(@types/react@19.2.7)(react@19.2.3)':
6249
6034
dependencies:
6250
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.10)(react@19.1.1)
6251
-
react: 19.1.1
6035
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.3)
6036
+
react: 19.2.3
6252
6037
optionalDependencies:
6253
-
'@types/react': 19.1.10
6038
+
'@types/react': 19.2.7
6254
6039
6255
-
'@radix-ui/react-visually-hidden@1.2.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
6040
+
'@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
6256
6041
dependencies:
6257
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
6258
-
react: 19.1.1
6259
-
react-dom: 19.1.1(react@19.1.1)
6042
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
6043
+
react: 19.2.3
6044
+
react-dom: 19.2.3(react@19.2.3)
6260
6045
optionalDependencies:
6261
-
'@types/react': 19.1.10
6262
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
6046
+
'@types/react': 19.2.7
6047
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
6263
6048
6264
6049
'@radix-ui/rect@1.1.1': {}
6265
6050
6266
-
'@rtsao/scc@1.1.0': {}
6051
+
'@reduxjs/toolkit@2.11.2(react-redux@9.2.0(@types/react@19.2.7)(react@19.2.3)(redux@5.0.1))(react@19.2.3)':
6052
+
dependencies:
6053
+
'@standard-schema/spec': 1.1.0
6054
+
'@standard-schema/utils': 0.3.0
6055
+
immer: 11.0.1
6056
+
redux: 5.0.1
6057
+
redux-thunk: 3.1.0(redux@5.0.1)
6058
+
reselect: 5.1.1
6059
+
optionalDependencies:
6060
+
react: 19.2.3
6061
+
react-redux: 9.2.0(@types/react@19.2.7)(react@19.2.3)(redux@5.0.1)
6267
6062
6268
-
'@rushstack/eslint-patch@1.11.0': {}
6063
+
'@rtsao/scc@1.1.0': {}
6269
6064
6270
-
'@sinclair/typebox@0.34.38': {}
6065
+
'@sinclair/typebox@0.34.41': {}
6271
6066
6272
6067
'@sinonjs/commons@3.0.1':
6273
6068
dependencies:
···
6277
6072
dependencies:
6278
6073
'@sinonjs/commons': 3.0.1
6279
6074
6075
+
'@standard-schema/spec@1.1.0': {}
6076
+
6077
+
'@standard-schema/utils@0.3.0': {}
6078
+
6280
6079
'@swc/core-darwin-arm64@1.13.3':
6281
6080
optional: true
6282
6081
···
6310
6109
'@swc/core@1.13.3':
6311
6110
dependencies:
6312
6111
'@swc/counter': 0.1.3
6313
-
'@swc/types': 0.1.24
6112
+
'@swc/types': 0.1.25
6314
6113
optionalDependencies:
6315
6114
'@swc/core-darwin-arm64': 1.13.3
6316
6115
'@swc/core-darwin-x64': 1.13.3
···
6331
6130
6332
6131
'@swc/jest@0.2.39(@swc/core@1.13.3)':
6333
6132
dependencies:
6334
-
'@jest/create-cache-key-function': 30.0.5
6133
+
'@jest/create-cache-key-function': 30.2.0
6335
6134
'@swc/core': 1.13.3
6336
6135
'@swc/counter': 0.1.3
6337
6136
jsonc-parser: 3.3.1
6338
6137
6339
-
'@swc/types@0.1.24':
6138
+
'@swc/types@0.1.25':
6340
6139
dependencies:
6341
6140
'@swc/counter': 0.1.3
6342
6141
6343
-
'@tabler/icons-react@3.31.0(react@19.1.1)':
6142
+
'@tabler/icons-react@3.36.0(react@19.2.3)':
6344
6143
dependencies:
6345
-
'@tabler/icons': 3.31.0
6346
-
react: 19.1.1
6144
+
'@tabler/icons': 3.36.0
6145
+
react: 19.2.3
6347
6146
6348
-
'@tabler/icons@3.31.0': {}
6147
+
'@tabler/icons@3.36.0': {}
6349
6148
6350
-
'@tailwindcss/node@4.1.11':
6149
+
'@tailwindcss/node@4.1.18':
6351
6150
dependencies:
6352
-
'@ampproject/remapping': 2.3.0
6353
-
enhanced-resolve: 5.18.1
6354
-
jiti: 2.4.2
6355
-
lightningcss: 1.30.1
6356
-
magic-string: 0.30.17
6151
+
'@jridgewell/remapping': 2.3.5
6152
+
enhanced-resolve: 5.18.4
6153
+
jiti: 2.6.1
6154
+
lightningcss: 1.30.2
6155
+
magic-string: 0.30.21
6357
6156
source-map-js: 1.2.1
6358
-
tailwindcss: 4.1.11
6157
+
tailwindcss: 4.1.18
6359
6158
6360
-
'@tailwindcss/oxide-android-arm64@4.1.11':
6159
+
'@tailwindcss/oxide-android-arm64@4.1.18':
6361
6160
optional: true
6362
6161
6363
-
'@tailwindcss/oxide-darwin-arm64@4.1.11':
6162
+
'@tailwindcss/oxide-darwin-arm64@4.1.18':
6364
6163
optional: true
6365
6164
6366
-
'@tailwindcss/oxide-darwin-x64@4.1.11':
6165
+
'@tailwindcss/oxide-darwin-x64@4.1.18':
6367
6166
optional: true
6368
6167
6369
-
'@tailwindcss/oxide-freebsd-x64@4.1.11':
6168
+
'@tailwindcss/oxide-freebsd-x64@4.1.18':
6370
6169
optional: true
6371
6170
6372
-
'@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11':
6171
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18':
6373
6172
optional: true
6374
6173
6375
-
'@tailwindcss/oxide-linux-arm64-gnu@4.1.11':
6174
+
'@tailwindcss/oxide-linux-arm64-gnu@4.1.18':
6376
6175
optional: true
6377
6176
6378
-
'@tailwindcss/oxide-linux-arm64-musl@4.1.11':
6177
+
'@tailwindcss/oxide-linux-arm64-musl@4.1.18':
6379
6178
optional: true
6380
6179
6381
-
'@tailwindcss/oxide-linux-x64-gnu@4.1.11':
6180
+
'@tailwindcss/oxide-linux-x64-gnu@4.1.18':
6382
6181
optional: true
6383
6182
6384
-
'@tailwindcss/oxide-linux-x64-musl@4.1.11':
6183
+
'@tailwindcss/oxide-linux-x64-musl@4.1.18':
6385
6184
optional: true
6386
6185
6387
-
'@tailwindcss/oxide-wasm32-wasi@4.1.11':
6186
+
'@tailwindcss/oxide-wasm32-wasi@4.1.18':
6388
6187
optional: true
6389
6188
6390
-
'@tailwindcss/oxide-win32-arm64-msvc@4.1.11':
6189
+
'@tailwindcss/oxide-win32-arm64-msvc@4.1.18':
6391
6190
optional: true
6392
6191
6393
-
'@tailwindcss/oxide-win32-x64-msvc@4.1.11':
6192
+
'@tailwindcss/oxide-win32-x64-msvc@4.1.18':
6394
6193
optional: true
6395
6194
6396
-
'@tailwindcss/oxide@4.1.11':
6397
-
dependencies:
6398
-
detect-libc: 2.0.4
6399
-
tar: 7.4.3
6195
+
'@tailwindcss/oxide@4.1.18':
6400
6196
optionalDependencies:
6401
-
'@tailwindcss/oxide-android-arm64': 4.1.11
6402
-
'@tailwindcss/oxide-darwin-arm64': 4.1.11
6403
-
'@tailwindcss/oxide-darwin-x64': 4.1.11
6404
-
'@tailwindcss/oxide-freebsd-x64': 4.1.11
6405
-
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.11
6406
-
'@tailwindcss/oxide-linux-arm64-gnu': 4.1.11
6407
-
'@tailwindcss/oxide-linux-arm64-musl': 4.1.11
6408
-
'@tailwindcss/oxide-linux-x64-gnu': 4.1.11
6409
-
'@tailwindcss/oxide-linux-x64-musl': 4.1.11
6410
-
'@tailwindcss/oxide-wasm32-wasi': 4.1.11
6411
-
'@tailwindcss/oxide-win32-arm64-msvc': 4.1.11
6412
-
'@tailwindcss/oxide-win32-x64-msvc': 4.1.11
6197
+
'@tailwindcss/oxide-android-arm64': 4.1.18
6198
+
'@tailwindcss/oxide-darwin-arm64': 4.1.18
6199
+
'@tailwindcss/oxide-darwin-x64': 4.1.18
6200
+
'@tailwindcss/oxide-freebsd-x64': 4.1.18
6201
+
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.18
6202
+
'@tailwindcss/oxide-linux-arm64-gnu': 4.1.18
6203
+
'@tailwindcss/oxide-linux-arm64-musl': 4.1.18
6204
+
'@tailwindcss/oxide-linux-x64-gnu': 4.1.18
6205
+
'@tailwindcss/oxide-linux-x64-musl': 4.1.18
6206
+
'@tailwindcss/oxide-wasm32-wasi': 4.1.18
6207
+
'@tailwindcss/oxide-win32-arm64-msvc': 4.1.18
6208
+
'@tailwindcss/oxide-win32-x64-msvc': 4.1.18
6413
6209
6414
-
'@tailwindcss/postcss@4.1.11':
6210
+
'@tailwindcss/postcss@4.1.18':
6415
6211
dependencies:
6416
6212
'@alloc/quick-lru': 5.2.0
6417
-
'@tailwindcss/node': 4.1.11
6418
-
'@tailwindcss/oxide': 4.1.11
6419
-
postcss: 8.5.3
6420
-
tailwindcss: 4.1.11
6213
+
'@tailwindcss/node': 4.1.18
6214
+
'@tailwindcss/oxide': 4.1.18
6215
+
postcss: 8.5.6
6216
+
tailwindcss: 4.1.18
6421
6217
6422
-
'@tanstack/react-table@8.21.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
6218
+
'@tanstack/react-table@8.21.3(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
6423
6219
dependencies:
6424
6220
'@tanstack/table-core': 8.21.3
6425
-
react: 19.1.1
6426
-
react-dom: 19.1.1(react@19.1.1)
6221
+
react: 19.2.3
6222
+
react-dom: 19.2.3(react@19.2.3)
6427
6223
6428
6224
'@tanstack/table-core@8.21.3': {}
6429
6225
6430
6226
'@testing-library/dom@10.4.1':
6431
6227
dependencies:
6432
6228
'@babel/code-frame': 7.27.1
6433
-
'@babel/runtime': 7.27.0
6229
+
'@babel/runtime': 7.28.4
6434
6230
'@types/aria-query': 5.0.4
6435
6231
aria-query: 5.3.0
6436
6232
dom-accessibility-api: 0.5.16
···
6438
6234
picocolors: 1.1.1
6439
6235
pretty-format: 27.5.1
6440
6236
6441
-
'@testing-library/jest-dom@6.6.4':
6237
+
'@testing-library/jest-dom@6.9.1':
6442
6238
dependencies:
6443
-
'@adobe/css-tools': 4.4.3
6239
+
'@adobe/css-tools': 4.4.4
6444
6240
aria-query: 5.3.2
6445
6241
css.escape: 1.5.1
6446
6242
dom-accessibility-api: 0.6.3
6447
-
lodash: 4.17.21
6448
6243
picocolors: 1.1.1
6449
6244
redent: 3.0.0
6450
6245
6451
-
'@testing-library/react@16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
6246
+
'@testing-library/react@16.3.1(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
6452
6247
dependencies:
6453
-
'@babel/runtime': 7.27.0
6248
+
'@babel/runtime': 7.28.4
6454
6249
'@testing-library/dom': 10.4.1
6455
-
react: 19.1.1
6456
-
react-dom: 19.1.1(react@19.1.1)
6250
+
react: 19.2.3
6251
+
react-dom: 19.2.3(react@19.2.3)
6457
6252
optionalDependencies:
6458
-
'@types/react': 19.1.10
6459
-
'@types/react-dom': 19.1.7(@types/react@19.1.10)
6253
+
'@types/react': 19.2.7
6254
+
'@types/react-dom': 19.2.3(@types/react@19.2.7)
6460
6255
6461
6256
'@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)':
6462
6257
dependencies:
6463
6258
'@testing-library/dom': 10.4.1
6464
6259
6465
-
'@tybys/wasm-util@0.10.0':
6260
+
'@tybys/wasm-util@0.10.1':
6466
6261
dependencies:
6467
6262
tslib: 2.8.1
6468
6263
optional: true
···
6471
6266
6472
6267
'@types/babel__core@7.20.5':
6473
6268
dependencies:
6474
-
'@babel/parser': 7.28.0
6475
-
'@babel/types': 7.28.2
6269
+
'@babel/parser': 7.28.5
6270
+
'@babel/types': 7.28.5
6476
6271
'@types/babel__generator': 7.27.0
6477
6272
'@types/babel__template': 7.4.4
6478
6273
'@types/babel__traverse': 7.28.0
6479
6274
6480
6275
'@types/babel__generator@7.27.0':
6481
6276
dependencies:
6482
-
'@babel/types': 7.28.2
6277
+
'@babel/types': 7.28.5
6483
6278
6484
6279
'@types/babel__template@7.4.4':
6485
6280
dependencies:
6486
-
'@babel/parser': 7.28.0
6487
-
'@babel/types': 7.28.2
6281
+
'@babel/parser': 7.28.5
6282
+
'@babel/types': 7.28.5
6488
6283
6489
6284
'@types/babel__traverse@7.28.0':
6490
6285
dependencies:
6491
-
'@babel/types': 7.28.2
6286
+
'@babel/types': 7.28.5
6492
6287
6493
-
'@types/d3-array@3.2.1': {}
6288
+
'@types/d3-array@3.2.2': {}
6494
6289
6495
6290
'@types/d3-color@3.1.3': {}
6496
6291
···
6514
6309
6515
6310
'@types/d3-timer@3.0.2': {}
6516
6311
6517
-
'@types/diff-match-patch@1.0.36': {}
6518
-
6519
-
'@types/estree@1.0.7': {}
6312
+
'@types/estree@1.0.8': {}
6520
6313
6521
6314
'@types/istanbul-lib-coverage@2.0.6': {}
6522
6315
···
6530
6323
6531
6324
'@types/jest@30.0.0':
6532
6325
dependencies:
6533
-
expect: 30.0.5
6534
-
pretty-format: 30.0.5
6326
+
expect: 30.2.0
6327
+
pretty-format: 30.2.0
6535
6328
6536
6329
'@types/jsdom@21.1.7':
6537
6330
dependencies:
6538
-
'@types/node': 20.17.31
6331
+
'@types/node': 25.0.2
6539
6332
'@types/tough-cookie': 4.0.5
6540
6333
parse5: 7.3.0
6541
6334
···
6543
6336
6544
6337
'@types/json5@0.0.29': {}
6545
6338
6546
-
'@types/jsonwebtoken@9.0.9':
6339
+
'@types/jsonwebtoken@9.0.10':
6547
6340
dependencies:
6548
6341
'@types/ms': 2.1.0
6549
-
'@types/node': 20.17.31
6342
+
'@types/node': 25.0.2
6550
6343
6551
6344
'@types/ms@2.1.0': {}
6552
6345
6553
-
'@types/node@20.17.31':
6346
+
'@types/node@25.0.2':
6554
6347
dependencies:
6555
-
undici-types: 6.19.8
6348
+
undici-types: 7.16.0
6556
6349
6557
-
'@types/react-dom@19.1.7(@types/react@19.1.10)':
6350
+
'@types/react-dom@19.2.3(@types/react@19.2.7)':
6558
6351
dependencies:
6559
-
'@types/react': 19.1.10
6352
+
'@types/react': 19.2.7
6560
6353
6561
-
'@types/react@19.1.10':
6354
+
'@types/react@19.2.7':
6562
6355
dependencies:
6563
-
csstype: 3.1.3
6356
+
csstype: 3.2.3
6564
6357
6565
6358
'@types/stack-utils@2.0.3': {}
6566
6359
6567
6360
'@types/tough-cookie@4.0.5': {}
6568
6361
6362
+
'@types/use-sync-external-store@0.0.6': {}
6363
+
6569
6364
'@types/ws@8.18.1':
6570
6365
dependencies:
6571
-
'@types/node': 20.17.31
6366
+
'@types/node': 25.0.2
6572
6367
6573
6368
'@types/yargs-parser@21.0.3': {}
6574
6369
6575
-
'@types/yargs@17.0.33':
6370
+
'@types/yargs@17.0.35':
6576
6371
dependencies:
6577
6372
'@types/yargs-parser': 21.0.3
6578
6373
6579
-
'@typescript-eslint/eslint-plugin@8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
6374
+
'@typescript-eslint/eslint-plugin@8.50.0(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
6580
6375
dependencies:
6581
-
'@eslint-community/regexpp': 4.12.1
6582
-
'@typescript-eslint/parser': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
6583
-
'@typescript-eslint/scope-manager': 8.31.0
6584
-
'@typescript-eslint/type-utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
6585
-
'@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
6586
-
'@typescript-eslint/visitor-keys': 8.31.0
6587
-
eslint: 9.25.1(jiti@2.4.2)
6588
-
graphemer: 1.4.0
6589
-
ignore: 5.3.2
6376
+
'@eslint-community/regexpp': 4.12.2
6377
+
'@typescript-eslint/parser': 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
6378
+
'@typescript-eslint/scope-manager': 8.50.0
6379
+
'@typescript-eslint/type-utils': 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
6380
+
'@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
6381
+
'@typescript-eslint/visitor-keys': 8.50.0
6382
+
eslint: 9.39.2(jiti@2.6.1)
6383
+
ignore: 7.0.5
6590
6384
natural-compare: 1.4.0
6591
-
ts-api-utils: 2.1.0(typescript@5.8.3)
6592
-
typescript: 5.8.3
6385
+
ts-api-utils: 2.1.0(typescript@5.9.3)
6386
+
typescript: 5.9.3
6387
+
transitivePeerDependencies:
6388
+
- supports-color
6389
+
6390
+
'@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
6391
+
dependencies:
6392
+
'@typescript-eslint/scope-manager': 8.50.0
6393
+
'@typescript-eslint/types': 8.50.0
6394
+
'@typescript-eslint/typescript-estree': 8.50.0(typescript@5.9.3)
6395
+
'@typescript-eslint/visitor-keys': 8.50.0
6396
+
debug: 4.4.3
6397
+
eslint: 9.39.2(jiti@2.6.1)
6398
+
typescript: 5.9.3
6593
6399
transitivePeerDependencies:
6594
6400
- supports-color
6595
6401
6596
-
'@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
6402
+
'@typescript-eslint/project-service@8.50.0(typescript@5.9.3)':
6597
6403
dependencies:
6598
-
'@typescript-eslint/scope-manager': 8.31.0
6599
-
'@typescript-eslint/types': 8.31.0
6600
-
'@typescript-eslint/typescript-estree': 8.31.0(typescript@5.8.3)
6601
-
'@typescript-eslint/visitor-keys': 8.31.0
6602
-
debug: 4.4.0
6603
-
eslint: 9.25.1(jiti@2.4.2)
6604
-
typescript: 5.8.3
6404
+
'@typescript-eslint/tsconfig-utils': 8.50.0(typescript@5.9.3)
6405
+
'@typescript-eslint/types': 8.50.0
6406
+
debug: 4.4.3
6407
+
typescript: 5.9.3
6605
6408
transitivePeerDependencies:
6606
6409
- supports-color
6607
6410
6608
-
'@typescript-eslint/scope-manager@8.31.0':
6411
+
'@typescript-eslint/scope-manager@8.50.0':
6609
6412
dependencies:
6610
-
'@typescript-eslint/types': 8.31.0
6611
-
'@typescript-eslint/visitor-keys': 8.31.0
6413
+
'@typescript-eslint/types': 8.50.0
6414
+
'@typescript-eslint/visitor-keys': 8.50.0
6612
6415
6613
-
'@typescript-eslint/type-utils@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
6416
+
'@typescript-eslint/tsconfig-utils@8.50.0(typescript@5.9.3)':
6614
6417
dependencies:
6615
-
'@typescript-eslint/typescript-estree': 8.31.0(typescript@5.8.3)
6616
-
'@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
6617
-
debug: 4.4.0
6618
-
eslint: 9.25.1(jiti@2.4.2)
6619
-
ts-api-utils: 2.1.0(typescript@5.8.3)
6620
-
typescript: 5.8.3
6418
+
typescript: 5.9.3
6419
+
6420
+
'@typescript-eslint/type-utils@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
6421
+
dependencies:
6422
+
'@typescript-eslint/types': 8.50.0
6423
+
'@typescript-eslint/typescript-estree': 8.50.0(typescript@5.9.3)
6424
+
'@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
6425
+
debug: 4.4.3
6426
+
eslint: 9.39.2(jiti@2.6.1)
6427
+
ts-api-utils: 2.1.0(typescript@5.9.3)
6428
+
typescript: 5.9.3
6621
6429
transitivePeerDependencies:
6622
6430
- supports-color
6623
6431
6624
-
'@typescript-eslint/types@8.31.0': {}
6432
+
'@typescript-eslint/types@8.50.0': {}
6625
6433
6626
-
'@typescript-eslint/typescript-estree@8.31.0(typescript@5.8.3)':
6434
+
'@typescript-eslint/typescript-estree@8.50.0(typescript@5.9.3)':
6627
6435
dependencies:
6628
-
'@typescript-eslint/types': 8.31.0
6629
-
'@typescript-eslint/visitor-keys': 8.31.0
6630
-
debug: 4.4.0
6631
-
fast-glob: 3.3.3
6632
-
is-glob: 4.0.3
6436
+
'@typescript-eslint/project-service': 8.50.0(typescript@5.9.3)
6437
+
'@typescript-eslint/tsconfig-utils': 8.50.0(typescript@5.9.3)
6438
+
'@typescript-eslint/types': 8.50.0
6439
+
'@typescript-eslint/visitor-keys': 8.50.0
6440
+
debug: 4.4.3
6633
6441
minimatch: 9.0.5
6634
-
semver: 7.7.2
6635
-
ts-api-utils: 2.1.0(typescript@5.8.3)
6636
-
typescript: 5.8.3
6442
+
semver: 7.7.3
6443
+
tinyglobby: 0.2.15
6444
+
ts-api-utils: 2.1.0(typescript@5.9.3)
6445
+
typescript: 5.9.3
6637
6446
transitivePeerDependencies:
6638
6447
- supports-color
6639
6448
6640
-
'@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
6449
+
'@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
6641
6450
dependencies:
6642
-
'@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@2.4.2))
6643
-
'@typescript-eslint/scope-manager': 8.31.0
6644
-
'@typescript-eslint/types': 8.31.0
6645
-
'@typescript-eslint/typescript-estree': 8.31.0(typescript@5.8.3)
6646
-
eslint: 9.25.1(jiti@2.4.2)
6647
-
typescript: 5.8.3
6451
+
'@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.6.1))
6452
+
'@typescript-eslint/scope-manager': 8.50.0
6453
+
'@typescript-eslint/types': 8.50.0
6454
+
'@typescript-eslint/typescript-estree': 8.50.0(typescript@5.9.3)
6455
+
eslint: 9.39.2(jiti@2.6.1)
6456
+
typescript: 5.9.3
6648
6457
transitivePeerDependencies:
6649
6458
- supports-color
6650
6459
6651
-
'@typescript-eslint/visitor-keys@8.31.0':
6460
+
'@typescript-eslint/visitor-keys@8.50.0':
6652
6461
dependencies:
6653
-
'@typescript-eslint/types': 8.31.0
6654
-
eslint-visitor-keys: 4.2.0
6462
+
'@typescript-eslint/types': 8.50.0
6463
+
eslint-visitor-keys: 4.2.1
6655
6464
6656
6465
'@ungap/structured-clone@1.3.0': {}
6657
6466
···
6714
6523
'@unrs/resolver-binding-win32-x64-msvc@1.11.1':
6715
6524
optional: true
6716
6525
6717
-
acorn-jsx@5.3.2(acorn@8.14.1):
6526
+
'@vercel/oidc@3.0.5': {}
6527
+
6528
+
acorn-jsx@5.3.2(acorn@8.15.0):
6718
6529
dependencies:
6719
-
acorn: 8.14.1
6530
+
acorn: 8.15.0
6720
6531
6721
-
acorn@8.14.1: {}
6532
+
acorn@8.15.0: {}
6722
6533
6723
6534
agent-base@7.1.4: {}
6724
6535
6725
-
ai@4.3.15(react@19.1.1)(zod@3.24.3):
6536
+
ai@5.0.113(zod@4.2.1):
6726
6537
dependencies:
6727
-
'@ai-sdk/provider': 1.1.3
6728
-
'@ai-sdk/provider-utils': 2.2.8(zod@3.24.3)
6729
-
'@ai-sdk/react': 1.2.12(react@19.1.1)(zod@3.24.3)
6730
-
'@ai-sdk/ui-utils': 1.2.11(zod@3.24.3)
6538
+
'@ai-sdk/gateway': 2.0.21(zod@4.2.1)
6539
+
'@ai-sdk/provider': 2.0.0
6540
+
'@ai-sdk/provider-utils': 3.0.19(zod@4.2.1)
6731
6541
'@opentelemetry/api': 1.9.0
6732
-
jsondiffpatch: 0.6.0
6733
-
zod: 3.24.3
6734
-
optionalDependencies:
6735
-
react: 19.1.1
6542
+
zod: 4.2.1
6736
6543
6737
6544
ajv@6.12.6:
6738
6545
dependencies:
···
6747
6554
6748
6555
ansi-regex@5.0.1: {}
6749
6556
6750
-
ansi-regex@6.1.0: {}
6557
+
ansi-regex@6.2.2: {}
6751
6558
6752
6559
ansi-styles@4.3.0:
6753
6560
dependencies:
···
6755
6562
6756
6563
ansi-styles@5.2.0: {}
6757
6564
6758
-
ansi-styles@6.2.1: {}
6565
+
ansi-styles@6.2.3: {}
6759
6566
6760
6567
anymatch@3.1.3:
6761
6568
dependencies:
···
6768
6575
6769
6576
argparse@2.0.1: {}
6770
6577
6771
-
aria-hidden@1.2.4:
6578
+
aria-hidden@1.2.6:
6772
6579
dependencies:
6773
6580
tslib: 2.8.1
6774
6581
···
6783
6590
call-bound: 1.0.4
6784
6591
is-array-buffer: 3.0.5
6785
6592
6786
-
array-includes@3.1.8:
6593
+
array-includes@3.1.9:
6787
6594
dependencies:
6788
6595
call-bind: 1.0.8
6596
+
call-bound: 1.0.4
6789
6597
define-properties: 1.2.1
6790
-
es-abstract: 1.23.9
6598
+
es-abstract: 1.24.1
6791
6599
es-object-atoms: 1.1.1
6792
6600
get-intrinsic: 1.3.0
6793
6601
is-string: 1.1.1
6602
+
math-intrinsics: 1.1.0
6794
6603
6795
6604
array.prototype.findlast@1.2.5:
6796
6605
dependencies:
6797
6606
call-bind: 1.0.8
6798
6607
define-properties: 1.2.1
6799
-
es-abstract: 1.23.9
6608
+
es-abstract: 1.24.1
6800
6609
es-errors: 1.3.0
6801
6610
es-object-atoms: 1.1.1
6802
6611
es-shim-unscopables: 1.1.0
···
6806
6615
call-bind: 1.0.8
6807
6616
call-bound: 1.0.4
6808
6617
define-properties: 1.2.1
6809
-
es-abstract: 1.23.9
6618
+
es-abstract: 1.24.1
6810
6619
es-errors: 1.3.0
6811
6620
es-object-atoms: 1.1.1
6812
6621
es-shim-unscopables: 1.1.0
···
6815
6624
dependencies:
6816
6625
call-bind: 1.0.8
6817
6626
define-properties: 1.2.1
6818
-
es-abstract: 1.23.9
6627
+
es-abstract: 1.24.1
6819
6628
es-shim-unscopables: 1.1.0
6820
6629
6821
6630
array.prototype.flatmap@1.3.3:
6822
6631
dependencies:
6823
6632
call-bind: 1.0.8
6824
6633
define-properties: 1.2.1
6825
-
es-abstract: 1.23.9
6634
+
es-abstract: 1.24.1
6826
6635
es-shim-unscopables: 1.1.0
6827
6636
6828
6637
array.prototype.tosorted@1.1.4:
6829
6638
dependencies:
6830
6639
call-bind: 1.0.8
6831
6640
define-properties: 1.2.1
6832
-
es-abstract: 1.23.9
6641
+
es-abstract: 1.24.1
6833
6642
es-errors: 1.3.0
6834
6643
es-shim-unscopables: 1.1.0
6835
6644
···
6838
6647
array-buffer-byte-length: 1.0.2
6839
6648
call-bind: 1.0.8
6840
6649
define-properties: 1.2.1
6841
-
es-abstract: 1.23.9
6650
+
es-abstract: 1.24.1
6842
6651
es-errors: 1.3.0
6843
6652
get-intrinsic: 1.3.0
6844
6653
is-array-buffer: 3.0.5
···
6851
6660
dependencies:
6852
6661
possible-typed-array-names: 1.1.0
6853
6662
6854
-
axe-core@4.10.3: {}
6663
+
axe-core@4.11.0: {}
6855
6664
6856
6665
axobject-query@4.1.0: {}
6857
6666
6858
-
babel-jest@30.0.5(@babel/core@7.28.0):
6667
+
babel-jest@30.2.0(@babel/core@7.28.5):
6859
6668
dependencies:
6860
-
'@babel/core': 7.28.0
6861
-
'@jest/transform': 30.0.5
6669
+
'@babel/core': 7.28.5
6670
+
'@jest/transform': 30.2.0
6862
6671
'@types/babel__core': 7.20.5
6863
-
babel-plugin-istanbul: 7.0.0
6864
-
babel-preset-jest: 30.0.1(@babel/core@7.28.0)
6672
+
babel-plugin-istanbul: 7.0.1
6673
+
babel-preset-jest: 30.2.0(@babel/core@7.28.5)
6865
6674
chalk: 4.1.2
6866
6675
graceful-fs: 4.2.11
6867
6676
slash: 3.0.0
6868
6677
transitivePeerDependencies:
6869
6678
- supports-color
6870
6679
6871
-
babel-plugin-istanbul@7.0.0:
6680
+
babel-plugin-istanbul@7.0.1:
6872
6681
dependencies:
6873
6682
'@babel/helper-plugin-utils': 7.27.1
6874
6683
'@istanbuljs/load-nyc-config': 1.1.0
···
6878
6687
transitivePeerDependencies:
6879
6688
- supports-color
6880
6689
6881
-
babel-plugin-jest-hoist@30.0.1:
6690
+
babel-plugin-jest-hoist@30.2.0:
6882
6691
dependencies:
6883
-
'@babel/template': 7.27.2
6884
-
'@babel/types': 7.28.2
6885
6692
'@types/babel__core': 7.20.5
6886
6693
6887
-
babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.0):
6694
+
babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.5):
6888
6695
dependencies:
6889
-
'@babel/core': 7.28.0
6890
-
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.0)
6891
-
'@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.0)
6892
-
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.0)
6893
-
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.0)
6894
-
'@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.0)
6895
-
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.0)
6896
-
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.0)
6897
-
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.0)
6898
-
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.0)
6899
-
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.0)
6900
-
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.0)
6901
-
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.0)
6902
-
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.0)
6903
-
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.0)
6904
-
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.0)
6696
+
'@babel/core': 7.28.5
6697
+
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.5)
6698
+
'@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.5)
6699
+
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.5)
6700
+
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.5)
6701
+
'@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.5)
6702
+
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.5)
6703
+
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.5)
6704
+
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.5)
6705
+
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.5)
6706
+
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.5)
6707
+
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.5)
6708
+
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.5)
6709
+
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.5)
6710
+
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.5)
6711
+
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.5)
6905
6712
6906
-
babel-preset-jest@30.0.1(@babel/core@7.28.0):
6713
+
babel-preset-jest@30.2.0(@babel/core@7.28.5):
6907
6714
dependencies:
6908
-
'@babel/core': 7.28.0
6909
-
babel-plugin-jest-hoist: 30.0.1
6910
-
babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.0)
6715
+
'@babel/core': 7.28.5
6716
+
babel-plugin-jest-hoist: 30.2.0
6717
+
babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5)
6911
6718
6912
6719
balanced-match@1.0.2: {}
6913
6720
6914
-
before-after-hook@3.0.2: {}
6721
+
baseline-browser-mapping@2.9.7: {}
6722
+
6723
+
before-after-hook@4.0.0: {}
6915
6724
6916
-
brace-expansion@1.1.11:
6725
+
brace-expansion@1.1.12:
6917
6726
dependencies:
6918
6727
balanced-match: 1.0.2
6919
6728
concat-map: 0.0.1
6920
6729
6921
-
brace-expansion@2.0.1:
6730
+
brace-expansion@2.0.2:
6922
6731
dependencies:
6923
6732
balanced-match: 1.0.2
6924
6733
···
6926
6735
dependencies:
6927
6736
fill-range: 7.1.1
6928
6737
6929
-
browserslist@4.25.1:
6738
+
browserslist@4.28.1:
6930
6739
dependencies:
6931
-
caniuse-lite: 1.0.30001731
6932
-
electron-to-chromium: 1.5.197
6933
-
node-releases: 2.0.19
6934
-
update-browserslist-db: 1.1.3(browserslist@4.25.1)
6740
+
baseline-browser-mapping: 2.9.7
6741
+
caniuse-lite: 1.0.30001760
6742
+
electron-to-chromium: 1.5.267
6743
+
node-releases: 2.0.27
6744
+
update-browserslist-db: 1.2.2(browserslist@4.28.1)
6935
6745
6936
6746
bs-logger@0.2.6:
6937
6747
dependencies:
···
6968
6778
6969
6779
camelcase@6.3.0: {}
6970
6780
6971
-
caniuse-lite@1.0.30001731: {}
6781
+
caniuse-lite@1.0.30001760: {}
6972
6782
6973
6783
chalk@4.1.2:
6974
6784
dependencies:
6975
6785
ansi-styles: 4.3.0
6976
6786
supports-color: 7.2.0
6977
-
6978
-
chalk@5.4.1: {}
6979
6787
6980
6788
char-regex@1.0.2: {}
6981
6789
6982
-
chownr@3.0.0: {}
6983
-
6984
-
ci-info@4.3.0: {}
6790
+
ci-info@4.3.1: {}
6985
6791
6986
-
cjs-module-lexer@2.1.0: {}
6792
+
cjs-module-lexer@2.1.1: {}
6987
6793
6988
6794
class-variance-authority@0.7.1:
6989
6795
dependencies:
···
6999
6805
7000
6806
clsx@2.1.1: {}
7001
6807
7002
-
cmdk@1.1.1(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1):
6808
+
cmdk@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
7003
6809
dependencies:
7004
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.10)(react@19.1.1)
7005
-
'@radix-ui/react-dialog': 1.1.11(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
7006
-
'@radix-ui/react-id': 1.1.1(@types/react@19.1.10)(react@19.1.1)
7007
-
'@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
7008
-
react: 19.1.1
7009
-
react-dom: 19.1.1(react@19.1.1)
6810
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.3)
6811
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
6812
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.3)
6813
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
6814
+
react: 19.2.3
6815
+
react-dom: 19.2.3(react@19.2.3)
7010
6816
transitivePeerDependencies:
7011
6817
- '@types/react'
7012
6818
- '@types/react-dom'
7013
6819
7014
6820
co@4.6.0: {}
7015
6821
7016
-
collect-v8-coverage@1.0.2: {}
6822
+
collect-v8-coverage@1.0.3: {}
7017
6823
7018
6824
color-convert@2.0.1:
7019
6825
dependencies:
···
7021
6827
7022
6828
color-name@1.1.4: {}
7023
6829
7024
-
color-string@1.9.1:
7025
-
dependencies:
7026
-
color-name: 1.1.4
7027
-
simple-swizzle: 0.2.2
7028
-
optional: true
7029
-
7030
-
color@4.2.3:
7031
-
dependencies:
7032
-
color-convert: 2.0.1
7033
-
color-string: 1.9.1
7034
-
optional: true
7035
-
7036
6830
concat-map@0.0.1: {}
7037
6831
7038
6832
convert-source-map@2.0.0: {}
···
7050
6844
'@asamuzakjp/css-color': 3.2.0
7051
6845
rrweb-cssom: 0.8.0
7052
6846
7053
-
csstype@3.1.3: {}
6847
+
csstype@3.2.3: {}
7054
6848
7055
6849
d3-array@3.2.4:
7056
6850
dependencies:
···
7125
6919
dependencies:
7126
6920
ms: 2.1.3
7127
6921
7128
-
debug@4.4.0:
6922
+
debug@4.4.3:
7129
6923
dependencies:
7130
6924
ms: 2.1.3
7131
6925
···
7133
6927
7134
6928
decimal.js@10.6.0: {}
7135
6929
7136
-
dedent@1.6.0: {}
6930
+
dedent@1.7.0: {}
7137
6931
7138
6932
deep-is@0.1.4: {}
7139
6933
···
7155
6949
7156
6950
detect-libc@2.0.2: {}
7157
6951
7158
-
detect-libc@2.0.4: {}
6952
+
detect-libc@2.1.2: {}
7159
6953
7160
6954
detect-newline@3.1.0: {}
7161
6955
7162
6956
detect-node-es@1.1.0: {}
7163
-
7164
-
diff-match-patch@1.0.5: {}
7165
6957
7166
6958
doctrine@2.1.0:
7167
6959
dependencies:
···
7171
6963
7172
6964
dom-accessibility-api@0.6.3: {}
7173
6965
7174
-
dom-helpers@5.2.1:
7175
-
dependencies:
7176
-
'@babel/runtime': 7.27.0
7177
-
csstype: 3.1.3
7178
-
7179
6966
dunder-proto@1.0.1:
7180
6967
dependencies:
7181
6968
call-bind-apply-helpers: 1.0.2
···
7188
6975
dependencies:
7189
6976
safe-buffer: 5.2.1
7190
6977
7191
-
electron-to-chromium@1.5.197: {}
6978
+
electron-to-chromium@1.5.267: {}
7192
6979
7193
6980
emittery@0.13.1: {}
7194
6981
···
7196
6983
7197
6984
emoji-regex@9.2.2: {}
7198
6985
7199
-
enhanced-resolve@5.18.1:
6986
+
enhanced-resolve@5.18.4:
7200
6987
dependencies:
7201
6988
graceful-fs: 4.2.11
7202
-
tapable: 2.2.1
6989
+
tapable: 2.3.0
7203
6990
7204
6991
entities@6.0.1: {}
7205
6992
7206
-
error-ex@1.3.2:
6993
+
error-ex@1.3.4:
7207
6994
dependencies:
7208
6995
is-arrayish: 0.2.1
7209
6996
7210
-
es-abstract@1.23.9:
6997
+
es-abstract@1.24.1:
7211
6998
dependencies:
7212
6999
array-buffer-byte-length: 1.0.2
7213
7000
arraybuffer.prototype.slice: 1.0.4
···
7236
7023
is-array-buffer: 3.0.5
7237
7024
is-callable: 1.2.7
7238
7025
is-data-view: 1.0.2
7026
+
is-negative-zero: 2.0.3
7239
7027
is-regex: 1.2.1
7028
+
is-set: 2.0.3
7240
7029
is-shared-array-buffer: 1.0.4
7241
7030
is-string: 1.1.1
7242
7031
is-typed-array: 1.1.15
···
7251
7040
safe-push-apply: 1.0.0
7252
7041
safe-regex-test: 1.1.0
7253
7042
set-proto: 1.0.0
7043
+
stop-iteration-iterator: 1.1.0
7254
7044
string.prototype.trim: 1.2.10
7255
7045
string.prototype.trimend: 1.0.9
7256
7046
string.prototype.trimstart: 1.0.8
···
7265
7055
7266
7056
es-errors@1.3.0: {}
7267
7057
7268
-
es-iterator-helpers@1.2.1:
7058
+
es-iterator-helpers@1.2.2:
7269
7059
dependencies:
7270
7060
call-bind: 1.0.8
7271
7061
call-bound: 1.0.4
7272
7062
define-properties: 1.2.1
7273
-
es-abstract: 1.23.9
7063
+
es-abstract: 1.24.1
7274
7064
es-errors: 1.3.0
7275
7065
es-set-tostringtag: 2.1.0
7276
7066
function-bind: 1.1.2
···
7305
7095
is-date-object: 1.1.0
7306
7096
is-symbol: 1.1.1
7307
7097
7098
+
es-toolkit@1.43.0: {}
7099
+
7308
7100
escalade@3.2.0: {}
7309
7101
7310
7102
escape-string-regexp@2.0.0: {}
7311
7103
7312
7104
escape-string-regexp@4.0.0: {}
7313
7105
7314
-
eslint-config-next@15.4.6(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3):
7106
+
eslint-config-next@16.0.10(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3):
7315
7107
dependencies:
7316
-
'@next/eslint-plugin-next': 15.4.6
7317
-
'@rushstack/eslint-patch': 1.11.0
7318
-
'@typescript-eslint/eslint-plugin': 8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
7319
-
'@typescript-eslint/parser': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
7320
-
eslint: 9.25.1(jiti@2.4.2)
7108
+
'@next/eslint-plugin-next': 16.0.10
7109
+
eslint: 9.39.2(jiti@2.6.1)
7321
7110
eslint-import-resolver-node: 0.3.9
7322
-
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.4.2))
7323
-
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.4.2))
7324
-
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.25.1(jiti@2.4.2))
7325
-
eslint-plugin-react: 7.37.5(eslint@9.25.1(jiti@2.4.2))
7326
-
eslint-plugin-react-hooks: 5.2.0(eslint@9.25.1(jiti@2.4.2))
7111
+
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1))
7112
+
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1))
7113
+
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.2(jiti@2.6.1))
7114
+
eslint-plugin-react: 7.37.5(eslint@9.39.2(jiti@2.6.1))
7115
+
eslint-plugin-react-hooks: 7.0.1(eslint@9.39.2(jiti@2.6.1))
7116
+
globals: 16.4.0
7117
+
typescript-eslint: 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
7327
7118
optionalDependencies:
7328
-
typescript: 5.8.3
7119
+
typescript: 5.9.3
7329
7120
transitivePeerDependencies:
7121
+
- '@typescript-eslint/parser'
7330
7122
- eslint-import-resolver-webpack
7331
7123
- eslint-plugin-import-x
7332
7124
- supports-color
···
7335
7127
dependencies:
7336
7128
debug: 3.2.7
7337
7129
is-core-module: 2.16.1
7338
-
resolve: 1.22.10
7130
+
resolve: 1.22.11
7339
7131
transitivePeerDependencies:
7340
7132
- supports-color
7341
7133
7342
-
eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.4.2)):
7134
+
eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)):
7343
7135
dependencies:
7344
7136
'@nolyfill/is-core-module': 1.0.39
7345
-
debug: 4.4.0
7346
-
eslint: 9.25.1(jiti@2.4.2)
7347
-
get-tsconfig: 4.10.0
7137
+
debug: 4.4.3
7138
+
eslint: 9.39.2(jiti@2.6.1)
7139
+
get-tsconfig: 4.13.0
7348
7140
is-bun-module: 2.0.0
7349
7141
stable-hash: 0.0.5
7350
-
tinyglobby: 0.2.13
7142
+
tinyglobby: 0.2.15
7351
7143
unrs-resolver: 1.11.1
7352
7144
optionalDependencies:
7353
-
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.4.2))
7145
+
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1))
7354
7146
transitivePeerDependencies:
7355
7147
- supports-color
7356
7148
7357
-
eslint-module-utils@2.12.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.4.2)):
7149
+
eslint-module-utils@2.12.1(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)):
7358
7150
dependencies:
7359
7151
debug: 3.2.7
7360
7152
optionalDependencies:
7361
-
'@typescript-eslint/parser': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
7362
-
eslint: 9.25.1(jiti@2.4.2)
7153
+
'@typescript-eslint/parser': 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
7154
+
eslint: 9.39.2(jiti@2.6.1)
7363
7155
eslint-import-resolver-node: 0.3.9
7364
-
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.4.2))
7156
+
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1))
7365
7157
transitivePeerDependencies:
7366
7158
- supports-color
7367
7159
7368
-
eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.4.2)):
7160
+
eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)):
7369
7161
dependencies:
7370
7162
'@rtsao/scc': 1.1.0
7371
-
array-includes: 3.1.8
7163
+
array-includes: 3.1.9
7372
7164
array.prototype.findlastindex: 1.2.6
7373
7165
array.prototype.flat: 1.3.3
7374
7166
array.prototype.flatmap: 1.3.3
7375
7167
debug: 3.2.7
7376
7168
doctrine: 2.1.0
7377
-
eslint: 9.25.1(jiti@2.4.2)
7169
+
eslint: 9.39.2(jiti@2.6.1)
7378
7170
eslint-import-resolver-node: 0.3.9
7379
-
eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.4.2))
7171
+
eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1))
7380
7172
hasown: 2.0.2
7381
7173
is-core-module: 2.16.1
7382
7174
is-glob: 4.0.3
···
7388
7180
string.prototype.trimend: 1.0.9
7389
7181
tsconfig-paths: 3.15.0
7390
7182
optionalDependencies:
7391
-
'@typescript-eslint/parser': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
7183
+
'@typescript-eslint/parser': 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
7392
7184
transitivePeerDependencies:
7393
7185
- eslint-import-resolver-typescript
7394
7186
- eslint-import-resolver-webpack
7395
7187
- supports-color
7396
7188
7397
-
eslint-plugin-jsx-a11y@6.10.2(eslint@9.25.1(jiti@2.4.2)):
7189
+
eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.2(jiti@2.6.1)):
7398
7190
dependencies:
7399
7191
aria-query: 5.3.2
7400
-
array-includes: 3.1.8
7192
+
array-includes: 3.1.9
7401
7193
array.prototype.flatmap: 1.3.3
7402
7194
ast-types-flow: 0.0.8
7403
-
axe-core: 4.10.3
7195
+
axe-core: 4.11.0
7404
7196
axobject-query: 4.1.0
7405
7197
damerau-levenshtein: 1.0.8
7406
7198
emoji-regex: 9.2.2
7407
-
eslint: 9.25.1(jiti@2.4.2)
7199
+
eslint: 9.39.2(jiti@2.6.1)
7408
7200
hasown: 2.0.2
7409
7201
jsx-ast-utils: 3.3.5
7410
7202
language-tags: 1.0.9
···
7413
7205
safe-regex-test: 1.1.0
7414
7206
string.prototype.includes: 2.0.1
7415
7207
7416
-
eslint-plugin-react-hooks@5.2.0(eslint@9.25.1(jiti@2.4.2)):
7208
+
eslint-plugin-react-hooks@7.0.1(eslint@9.39.2(jiti@2.6.1)):
7417
7209
dependencies:
7418
-
eslint: 9.25.1(jiti@2.4.2)
7210
+
'@babel/core': 7.28.5
7211
+
'@babel/parser': 7.28.5
7212
+
eslint: 9.39.2(jiti@2.6.1)
7213
+
hermes-parser: 0.25.1
7214
+
zod: 4.2.1
7215
+
zod-validation-error: 4.0.2(zod@4.2.1)
7216
+
transitivePeerDependencies:
7217
+
- supports-color
7419
7218
7420
-
eslint-plugin-react@7.37.5(eslint@9.25.1(jiti@2.4.2)):
7219
+
eslint-plugin-react@7.37.5(eslint@9.39.2(jiti@2.6.1)):
7421
7220
dependencies:
7422
-
array-includes: 3.1.8
7221
+
array-includes: 3.1.9
7423
7222
array.prototype.findlast: 1.2.5
7424
7223
array.prototype.flatmap: 1.3.3
7425
7224
array.prototype.tosorted: 1.1.4
7426
7225
doctrine: 2.1.0
7427
-
es-iterator-helpers: 1.2.1
7428
-
eslint: 9.25.1(jiti@2.4.2)
7226
+
es-iterator-helpers: 1.2.2
7227
+
eslint: 9.39.2(jiti@2.6.1)
7429
7228
estraverse: 5.3.0
7430
7229
hasown: 2.0.2
7431
7230
jsx-ast-utils: 3.3.5
···
7439
7238
string.prototype.matchall: 4.0.12
7440
7239
string.prototype.repeat: 1.0.0
7441
7240
7442
-
eslint-scope@8.3.0:
7241
+
eslint-scope@8.4.0:
7443
7242
dependencies:
7444
7243
esrecurse: 4.3.0
7445
7244
estraverse: 5.3.0
7446
7245
7447
7246
eslint-visitor-keys@3.4.3: {}
7448
7247
7449
-
eslint-visitor-keys@4.2.0: {}
7248
+
eslint-visitor-keys@4.2.1: {}
7450
7249
7451
-
eslint@9.25.1(jiti@2.4.2):
7250
+
eslint@9.39.2(jiti@2.6.1):
7452
7251
dependencies:
7453
-
'@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@2.4.2))
7454
-
'@eslint-community/regexpp': 4.12.1
7455
-
'@eslint/config-array': 0.20.0
7456
-
'@eslint/config-helpers': 0.2.1
7457
-
'@eslint/core': 0.13.0
7458
-
'@eslint/eslintrc': 3.3.1
7459
-
'@eslint/js': 9.25.1
7460
-
'@eslint/plugin-kit': 0.2.8
7461
-
'@humanfs/node': 0.16.6
7252
+
'@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.6.1))
7253
+
'@eslint-community/regexpp': 4.12.2
7254
+
'@eslint/config-array': 0.21.1
7255
+
'@eslint/config-helpers': 0.4.2
7256
+
'@eslint/core': 0.17.0
7257
+
'@eslint/eslintrc': 3.3.3
7258
+
'@eslint/js': 9.39.2
7259
+
'@eslint/plugin-kit': 0.4.1
7260
+
'@humanfs/node': 0.16.7
7462
7261
'@humanwhocodes/module-importer': 1.0.1
7463
-
'@humanwhocodes/retry': 0.4.2
7464
-
'@types/estree': 1.0.7
7465
-
'@types/json-schema': 7.0.15
7262
+
'@humanwhocodes/retry': 0.4.3
7263
+
'@types/estree': 1.0.8
7466
7264
ajv: 6.12.6
7467
7265
chalk: 4.1.2
7468
7266
cross-spawn: 7.0.6
7469
-
debug: 4.4.0
7267
+
debug: 4.4.3
7470
7268
escape-string-regexp: 4.0.0
7471
-
eslint-scope: 8.3.0
7472
-
eslint-visitor-keys: 4.2.0
7473
-
espree: 10.3.0
7269
+
eslint-scope: 8.4.0
7270
+
eslint-visitor-keys: 4.2.1
7271
+
espree: 10.4.0
7474
7272
esquery: 1.6.0
7475
7273
esutils: 2.0.3
7476
7274
fast-deep-equal: 3.1.3
···
7486
7284
natural-compare: 1.4.0
7487
7285
optionator: 0.9.4
7488
7286
optionalDependencies:
7489
-
jiti: 2.4.2
7287
+
jiti: 2.6.1
7490
7288
transitivePeerDependencies:
7491
7289
- supports-color
7492
7290
7493
-
espree@10.3.0:
7291
+
espree@10.4.0:
7494
7292
dependencies:
7495
-
acorn: 8.14.1
7496
-
acorn-jsx: 5.3.2(acorn@8.14.1)
7497
-
eslint-visitor-keys: 4.2.0
7293
+
acorn: 8.15.0
7294
+
acorn-jsx: 5.3.2(acorn@8.15.0)
7295
+
eslint-visitor-keys: 4.2.1
7498
7296
7499
7297
esprima@4.0.1: {}
7500
7298
···
7510
7308
7511
7309
esutils@2.0.3: {}
7512
7310
7513
-
eventemitter3@4.0.7: {}
7311
+
eventemitter3@5.0.1: {}
7312
+
7313
+
eventsource-parser@3.0.6: {}
7514
7314
7515
7315
execa@5.1.1:
7516
7316
dependencies:
···
7526
7326
7527
7327
exit-x@0.2.2: {}
7528
7328
7529
-
expect@30.0.5:
7329
+
expect@30.2.0:
7530
7330
dependencies:
7531
-
'@jest/expect-utils': 30.0.5
7532
-
'@jest/get-type': 30.0.1
7533
-
jest-matcher-utils: 30.0.5
7534
-
jest-message-util: 30.0.5
7535
-
jest-mock: 30.0.5
7536
-
jest-util: 30.0.5
7331
+
'@jest/expect-utils': 30.2.0
7332
+
'@jest/get-type': 30.1.0
7333
+
jest-matcher-utils: 30.2.0
7334
+
jest-message-util: 30.2.0
7335
+
jest-mock: 30.2.0
7336
+
jest-util: 30.2.0
7537
7337
7538
-
fast-content-type-parse@2.0.1: {}
7338
+
fast-content-type-parse@3.0.0: {}
7539
7339
7540
7340
fast-deep-equal@3.1.3: {}
7541
7341
7542
-
fast-equals@5.2.2: {}
7543
-
7544
7342
fast-glob@3.3.1:
7545
-
dependencies:
7546
-
'@nodelib/fs.stat': 2.0.5
7547
-
'@nodelib/fs.walk': 1.2.8
7548
-
glob-parent: 5.1.2
7549
-
merge2: 1.4.1
7550
-
micromatch: 4.0.8
7551
-
7552
-
fast-glob@3.3.3:
7553
7343
dependencies:
7554
7344
'@nodelib/fs.stat': 2.0.5
7555
7345
'@nodelib/fs.walk': 1.2.8
···
7569
7359
dependencies:
7570
7360
bser: 2.1.1
7571
7361
7572
-
fdir@6.4.4(picomatch@4.0.2):
7362
+
fdir@6.5.0(picomatch@4.0.3):
7573
7363
optionalDependencies:
7574
-
picomatch: 4.0.2
7364
+
picomatch: 4.0.3
7575
7365
7576
7366
fetch-blob@3.2.0:
7577
7367
dependencies:
···
7616
7406
dependencies:
7617
7407
fetch-blob: 3.2.0
7618
7408
7619
-
framer-motion@12.23.12(react-dom@19.1.1(react@19.1.1))(react@19.1.1):
7409
+
framer-motion@12.23.26(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
7620
7410
dependencies:
7621
-
motion-dom: 12.23.12
7411
+
motion-dom: 12.23.23
7622
7412
motion-utils: 12.23.6
7623
7413
tslib: 2.8.1
7624
7414
optionalDependencies:
7625
-
react: 19.1.1
7626
-
react-dom: 19.1.1(react@19.1.1)
7627
-
7628
-
framer-motion@12.9.7(react-dom@19.1.1(react@19.1.1))(react@19.1.1):
7629
-
dependencies:
7630
-
motion-dom: 12.9.6
7631
-
motion-utils: 12.9.4
7632
-
tslib: 2.8.1
7633
-
optionalDependencies:
7634
-
react: 19.1.1
7635
-
react-dom: 19.1.1(react@19.1.1)
7415
+
react: 19.2.3
7416
+
react-dom: 19.2.3(react@19.2.3)
7636
7417
7637
7418
fs.realpath@1.0.0: {}
7638
7419
···
7651
7432
is-callable: 1.2.7
7652
7433
7653
7434
functions-have-names@1.2.3: {}
7435
+
7436
+
generator-function@2.0.1: {}
7654
7437
7655
7438
gensync@1.0.0-beta.2: {}
7656
7439
···
7686
7469
es-errors: 1.3.0
7687
7470
get-intrinsic: 1.3.0
7688
7471
7689
-
get-tsconfig@4.10.0:
7472
+
get-tsconfig@4.13.0:
7690
7473
dependencies:
7691
7474
resolve-pkg-maps: 1.0.0
7692
7475
···
7698
7481
dependencies:
7699
7482
is-glob: 4.0.3
7700
7483
7701
-
glob@10.4.5:
7484
+
glob@10.5.0:
7702
7485
dependencies:
7703
7486
foreground-child: 3.3.1
7704
7487
jackspeak: 3.4.3
···
7718
7501
7719
7502
globals@14.0.0: {}
7720
7503
7504
+
globals@16.4.0: {}
7505
+
7721
7506
globalthis@1.0.4:
7722
7507
dependencies:
7723
7508
define-properties: 1.2.1
···
7726
7511
gopd@1.2.0: {}
7727
7512
7728
7513
graceful-fs@4.2.11: {}
7729
-
7730
-
graphemer@1.4.0: {}
7731
7514
7732
7515
handlebars@4.7.8:
7733
7516
dependencies:
···
7760
7543
dependencies:
7761
7544
function-bind: 1.1.2
7762
7545
7546
+
hermes-estree@0.25.1: {}
7547
+
7548
+
hermes-parser@0.25.1:
7549
+
dependencies:
7550
+
hermes-estree: 0.25.1
7551
+
7763
7552
html-encoding-sniffer@4.0.0:
7764
7553
dependencies:
7765
7554
whatwg-encoding: 3.1.1
···
7769
7558
http-proxy-agent@7.0.2:
7770
7559
dependencies:
7771
7560
agent-base: 7.1.4
7772
-
debug: 4.4.0
7561
+
debug: 4.4.3
7773
7562
transitivePeerDependencies:
7774
7563
- supports-color
7775
7564
7776
7565
https-proxy-agent@7.0.6:
7777
7566
dependencies:
7778
7567
agent-base: 7.1.4
7779
-
debug: 4.4.0
7568
+
debug: 4.4.3
7780
7569
transitivePeerDependencies:
7781
7570
- supports-color
7782
7571
···
7787
7576
safer-buffer: 2.1.2
7788
7577
7789
7578
ignore@5.3.2: {}
7579
+
7580
+
ignore@7.0.5: {}
7581
+
7582
+
immer@10.2.0: {}
7583
+
7584
+
immer@11.0.1: {}
7790
7585
7791
7586
import-fresh@3.3.1:
7792
7587
dependencies:
···
7825
7620
7826
7621
is-arrayish@0.2.1: {}
7827
7622
7828
-
is-arrayish@0.3.2:
7829
-
optional: true
7830
-
7831
7623
is-async-function@2.1.1:
7832
7624
dependencies:
7833
7625
async-function: 1.0.0
···
7847
7639
7848
7640
is-bun-module@2.0.0:
7849
7641
dependencies:
7850
-
semver: 7.7.2
7642
+
semver: 7.7.3
7851
7643
7852
7644
is-callable@1.2.7: {}
7853
7645
···
7876
7668
7877
7669
is-generator-fn@2.1.0: {}
7878
7670
7879
-
is-generator-function@1.1.0:
7671
+
is-generator-function@1.1.2:
7880
7672
dependencies:
7881
7673
call-bound: 1.0.4
7674
+
generator-function: 2.0.1
7882
7675
get-proto: 1.0.1
7883
7676
has-tostringtag: 1.0.2
7884
7677
safe-regex-test: 1.1.0
···
7888
7681
is-extglob: 2.1.1
7889
7682
7890
7683
is-map@2.0.3: {}
7684
+
7685
+
is-negative-zero@2.0.3: {}
7891
7686
7892
7687
is-number-object@1.1.1:
7893
7688
dependencies:
···
7947
7742
7948
7743
istanbul-lib-instrument@6.0.3:
7949
7744
dependencies:
7950
-
'@babel/core': 7.28.0
7951
-
'@babel/parser': 7.28.0
7745
+
'@babel/core': 7.28.5
7746
+
'@babel/parser': 7.28.5
7952
7747
'@istanbuljs/schema': 0.1.3
7953
7748
istanbul-lib-coverage: 3.2.2
7954
-
semver: 7.7.1
7749
+
semver: 7.7.3
7955
7750
transitivePeerDependencies:
7956
7751
- supports-color
7957
7752
···
7963
7758
7964
7759
istanbul-lib-source-maps@5.0.6:
7965
7760
dependencies:
7966
-
'@jridgewell/trace-mapping': 0.3.29
7967
-
debug: 4.4.0
7761
+
'@jridgewell/trace-mapping': 0.3.31
7762
+
debug: 4.4.3
7968
7763
istanbul-lib-coverage: 3.2.2
7969
7764
transitivePeerDependencies:
7970
7765
- supports-color
7971
7766
7972
-
istanbul-reports@3.1.7:
7767
+
istanbul-reports@3.2.0:
7973
7768
dependencies:
7974
7769
html-escaper: 2.0.2
7975
7770
istanbul-lib-report: 3.0.1
···
7989
7784
optionalDependencies:
7990
7785
'@pkgjs/parseargs': 0.11.0
7991
7786
7992
-
jest-changed-files@30.0.5:
7787
+
jest-changed-files@30.2.0:
7993
7788
dependencies:
7994
7789
execa: 5.1.1
7995
-
jest-util: 30.0.5
7790
+
jest-util: 30.2.0
7996
7791
p-limit: 3.1.0
7997
7792
7998
-
jest-circus@30.0.5:
7793
+
jest-circus@30.2.0:
7999
7794
dependencies:
8000
-
'@jest/environment': 30.0.5
8001
-
'@jest/expect': 30.0.5
8002
-
'@jest/test-result': 30.0.5
8003
-
'@jest/types': 30.0.5
8004
-
'@types/node': 20.17.31
7795
+
'@jest/environment': 30.2.0
7796
+
'@jest/expect': 30.2.0
7797
+
'@jest/test-result': 30.2.0
7798
+
'@jest/types': 30.2.0
7799
+
'@types/node': 25.0.2
8005
7800
chalk: 4.1.2
8006
7801
co: 4.6.0
8007
-
dedent: 1.6.0
7802
+
dedent: 1.7.0
8008
7803
is-generator-fn: 2.1.0
8009
-
jest-each: 30.0.5
8010
-
jest-matcher-utils: 30.0.5
8011
-
jest-message-util: 30.0.5
8012
-
jest-runtime: 30.0.5
8013
-
jest-snapshot: 30.0.5
8014
-
jest-util: 30.0.5
7804
+
jest-each: 30.2.0
7805
+
jest-matcher-utils: 30.2.0
7806
+
jest-message-util: 30.2.0
7807
+
jest-runtime: 30.2.0
7808
+
jest-snapshot: 30.2.0
7809
+
jest-util: 30.2.0
8015
7810
p-limit: 3.1.0
8016
-
pretty-format: 30.0.5
7811
+
pretty-format: 30.2.0
8017
7812
pure-rand: 7.0.1
8018
7813
slash: 3.0.0
8019
7814
stack-utils: 2.0.6
···
8021
7816
- babel-plugin-macros
8022
7817
- supports-color
8023
7818
8024
-
jest-cli@30.0.5(@types/node@20.17.31):
7819
+
jest-cli@30.2.0(@types/node@25.0.2):
8025
7820
dependencies:
8026
-
'@jest/core': 30.0.5
8027
-
'@jest/test-result': 30.0.5
8028
-
'@jest/types': 30.0.5
7821
+
'@jest/core': 30.2.0
7822
+
'@jest/test-result': 30.2.0
7823
+
'@jest/types': 30.2.0
8029
7824
chalk: 4.1.2
8030
7825
exit-x: 0.2.2
8031
7826
import-local: 3.2.0
8032
-
jest-config: 30.0.5(@types/node@20.17.31)
8033
-
jest-util: 30.0.5
8034
-
jest-validate: 30.0.5
7827
+
jest-config: 30.2.0(@types/node@25.0.2)
7828
+
jest-util: 30.2.0
7829
+
jest-validate: 30.2.0
8035
7830
yargs: 17.7.2
8036
7831
transitivePeerDependencies:
8037
7832
- '@types/node'
···
8040
7835
- supports-color
8041
7836
- ts-node
8042
7837
8043
-
jest-config@30.0.5(@types/node@20.17.31):
7838
+
jest-config@30.2.0(@types/node@25.0.2):
8044
7839
dependencies:
8045
-
'@babel/core': 7.28.0
8046
-
'@jest/get-type': 30.0.1
7840
+
'@babel/core': 7.28.5
7841
+
'@jest/get-type': 30.1.0
8047
7842
'@jest/pattern': 30.0.1
8048
-
'@jest/test-sequencer': 30.0.5
8049
-
'@jest/types': 30.0.5
8050
-
babel-jest: 30.0.5(@babel/core@7.28.0)
7843
+
'@jest/test-sequencer': 30.2.0
7844
+
'@jest/types': 30.2.0
7845
+
babel-jest: 30.2.0(@babel/core@7.28.5)
8051
7846
chalk: 4.1.2
8052
-
ci-info: 4.3.0
7847
+
ci-info: 4.3.1
8053
7848
deepmerge: 4.3.1
8054
-
glob: 10.4.5
7849
+
glob: 10.5.0
8055
7850
graceful-fs: 4.2.11
8056
-
jest-circus: 30.0.5
8057
-
jest-docblock: 30.0.1
8058
-
jest-environment-node: 30.0.5
7851
+
jest-circus: 30.2.0
7852
+
jest-docblock: 30.2.0
7853
+
jest-environment-node: 30.2.0
8059
7854
jest-regex-util: 30.0.1
8060
-
jest-resolve: 30.0.5
8061
-
jest-runner: 30.0.5
8062
-
jest-util: 30.0.5
8063
-
jest-validate: 30.0.5
7855
+
jest-resolve: 30.2.0
7856
+
jest-runner: 30.2.0
7857
+
jest-util: 30.2.0
7858
+
jest-validate: 30.2.0
8064
7859
micromatch: 4.0.8
8065
7860
parse-json: 5.2.0
8066
-
pretty-format: 30.0.5
7861
+
pretty-format: 30.2.0
8067
7862
slash: 3.0.0
8068
7863
strip-json-comments: 3.1.1
8069
7864
optionalDependencies:
8070
-
'@types/node': 20.17.31
7865
+
'@types/node': 25.0.2
8071
7866
transitivePeerDependencies:
8072
7867
- babel-plugin-macros
8073
7868
- supports-color
8074
7869
8075
-
jest-diff@30.0.5:
7870
+
jest-diff@30.2.0:
8076
7871
dependencies:
8077
7872
'@jest/diff-sequences': 30.0.1
8078
-
'@jest/get-type': 30.0.1
7873
+
'@jest/get-type': 30.1.0
8079
7874
chalk: 4.1.2
8080
-
pretty-format: 30.0.5
7875
+
pretty-format: 30.2.0
8081
7876
8082
-
jest-docblock@30.0.1:
7877
+
jest-docblock@30.2.0:
8083
7878
dependencies:
8084
7879
detect-newline: 3.1.0
8085
7880
8086
-
jest-each@30.0.5:
7881
+
jest-each@30.2.0:
8087
7882
dependencies:
8088
-
'@jest/get-type': 30.0.1
8089
-
'@jest/types': 30.0.5
7883
+
'@jest/get-type': 30.1.0
7884
+
'@jest/types': 30.2.0
8090
7885
chalk: 4.1.2
8091
-
jest-util: 30.0.5
8092
-
pretty-format: 30.0.5
7886
+
jest-util: 30.2.0
7887
+
pretty-format: 30.2.0
8093
7888
8094
-
jest-environment-jsdom@30.0.5:
7889
+
jest-environment-jsdom@30.2.0:
8095
7890
dependencies:
8096
-
'@jest/environment': 30.0.5
8097
-
'@jest/environment-jsdom-abstract': 30.0.5(jsdom@26.1.0)
7891
+
'@jest/environment': 30.2.0
7892
+
'@jest/environment-jsdom-abstract': 30.2.0(jsdom@26.1.0)
8098
7893
'@types/jsdom': 21.1.7
8099
-
'@types/node': 20.17.31
7894
+
'@types/node': 25.0.2
8100
7895
jsdom: 26.1.0
8101
7896
transitivePeerDependencies:
8102
7897
- bufferutil
8103
7898
- supports-color
8104
7899
- utf-8-validate
8105
7900
8106
-
jest-environment-node@30.0.5:
7901
+
jest-environment-node@30.2.0:
8107
7902
dependencies:
8108
-
'@jest/environment': 30.0.5
8109
-
'@jest/fake-timers': 30.0.5
8110
-
'@jest/types': 30.0.5
8111
-
'@types/node': 20.17.31
8112
-
jest-mock: 30.0.5
8113
-
jest-util: 30.0.5
8114
-
jest-validate: 30.0.5
7903
+
'@jest/environment': 30.2.0
7904
+
'@jest/fake-timers': 30.2.0
7905
+
'@jest/types': 30.2.0
7906
+
'@types/node': 25.0.2
7907
+
jest-mock: 30.2.0
7908
+
jest-util: 30.2.0
7909
+
jest-validate: 30.2.0
8115
7910
8116
-
jest-haste-map@30.0.5:
7911
+
jest-haste-map@30.2.0:
8117
7912
dependencies:
8118
-
'@jest/types': 30.0.5
8119
-
'@types/node': 20.17.31
7913
+
'@jest/types': 30.2.0
7914
+
'@types/node': 25.0.2
8120
7915
anymatch: 3.1.3
8121
7916
fb-watchman: 2.0.2
8122
7917
graceful-fs: 4.2.11
8123
7918
jest-regex-util: 30.0.1
8124
-
jest-util: 30.0.5
8125
-
jest-worker: 30.0.5
7919
+
jest-util: 30.2.0
7920
+
jest-worker: 30.2.0
8126
7921
micromatch: 4.0.8
8127
7922
walker: 1.0.8
8128
7923
optionalDependencies:
8129
7924
fsevents: 2.3.3
8130
7925
8131
-
jest-leak-detector@30.0.5:
7926
+
jest-leak-detector@30.2.0:
8132
7927
dependencies:
8133
-
'@jest/get-type': 30.0.1
8134
-
pretty-format: 30.0.5
7928
+
'@jest/get-type': 30.1.0
7929
+
pretty-format: 30.2.0
8135
7930
8136
-
jest-matcher-utils@30.0.5:
7931
+
jest-matcher-utils@30.2.0:
8137
7932
dependencies:
8138
-
'@jest/get-type': 30.0.1
7933
+
'@jest/get-type': 30.1.0
8139
7934
chalk: 4.1.2
8140
-
jest-diff: 30.0.5
8141
-
pretty-format: 30.0.5
7935
+
jest-diff: 30.2.0
7936
+
pretty-format: 30.2.0
8142
7937
8143
-
jest-message-util@30.0.5:
7938
+
jest-message-util@30.2.0:
8144
7939
dependencies:
8145
7940
'@babel/code-frame': 7.27.1
8146
-
'@jest/types': 30.0.5
7941
+
'@jest/types': 30.2.0
8147
7942
'@types/stack-utils': 2.0.3
8148
7943
chalk: 4.1.2
8149
7944
graceful-fs: 4.2.11
8150
7945
micromatch: 4.0.8
8151
-
pretty-format: 30.0.5
7946
+
pretty-format: 30.2.0
8152
7947
slash: 3.0.0
8153
7948
stack-utils: 2.0.6
8154
7949
8155
-
jest-mock-extended@4.0.0(@jest/globals@30.0.5)(jest@30.0.5(@types/node@20.17.31))(typescript@5.8.3):
7950
+
jest-mock-extended@4.0.0(@jest/globals@30.2.0)(jest@30.2.0(@types/node@25.0.2))(typescript@5.9.3):
8156
7951
dependencies:
8157
-
'@jest/globals': 30.0.5
8158
-
jest: 30.0.5(@types/node@20.17.31)
8159
-
ts-essentials: 10.1.1(typescript@5.8.3)
8160
-
typescript: 5.8.3
7952
+
'@jest/globals': 30.2.0
7953
+
jest: 30.2.0(@types/node@25.0.2)
7954
+
ts-essentials: 10.1.1(typescript@5.9.3)
7955
+
typescript: 5.9.3
8161
7956
8162
-
jest-mock@30.0.5:
7957
+
jest-mock@30.2.0:
8163
7958
dependencies:
8164
-
'@jest/types': 30.0.5
8165
-
'@types/node': 20.17.31
8166
-
jest-util: 30.0.5
7959
+
'@jest/types': 30.2.0
7960
+
'@types/node': 25.0.2
7961
+
jest-util: 30.2.0
8167
7962
8168
-
jest-pnp-resolver@1.2.3(jest-resolve@30.0.5):
7963
+
jest-pnp-resolver@1.2.3(jest-resolve@30.2.0):
8169
7964
optionalDependencies:
8170
-
jest-resolve: 30.0.5
7965
+
jest-resolve: 30.2.0
8171
7966
8172
7967
jest-regex-util@30.0.1: {}
8173
7968
8174
-
jest-resolve-dependencies@30.0.5:
7969
+
jest-resolve-dependencies@30.2.0:
8175
7970
dependencies:
8176
7971
jest-regex-util: 30.0.1
8177
-
jest-snapshot: 30.0.5
7972
+
jest-snapshot: 30.2.0
8178
7973
transitivePeerDependencies:
8179
7974
- supports-color
8180
7975
8181
-
jest-resolve@30.0.5:
7976
+
jest-resolve@30.2.0:
8182
7977
dependencies:
8183
7978
chalk: 4.1.2
8184
7979
graceful-fs: 4.2.11
8185
-
jest-haste-map: 30.0.5
8186
-
jest-pnp-resolver: 1.2.3(jest-resolve@30.0.5)
8187
-
jest-util: 30.0.5
8188
-
jest-validate: 30.0.5
7980
+
jest-haste-map: 30.2.0
7981
+
jest-pnp-resolver: 1.2.3(jest-resolve@30.2.0)
7982
+
jest-util: 30.2.0
7983
+
jest-validate: 30.2.0
8189
7984
slash: 3.0.0
8190
7985
unrs-resolver: 1.11.1
8191
7986
8192
-
jest-runner@30.0.5:
7987
+
jest-runner@30.2.0:
8193
7988
dependencies:
8194
-
'@jest/console': 30.0.5
8195
-
'@jest/environment': 30.0.5
8196
-
'@jest/test-result': 30.0.5
8197
-
'@jest/transform': 30.0.5
8198
-
'@jest/types': 30.0.5
8199
-
'@types/node': 20.17.31
7989
+
'@jest/console': 30.2.0
7990
+
'@jest/environment': 30.2.0
7991
+
'@jest/test-result': 30.2.0
7992
+
'@jest/transform': 30.2.0
7993
+
'@jest/types': 30.2.0
7994
+
'@types/node': 25.0.2
8200
7995
chalk: 4.1.2
8201
7996
emittery: 0.13.1
8202
7997
exit-x: 0.2.2
8203
7998
graceful-fs: 4.2.11
8204
-
jest-docblock: 30.0.1
8205
-
jest-environment-node: 30.0.5
8206
-
jest-haste-map: 30.0.5
8207
-
jest-leak-detector: 30.0.5
8208
-
jest-message-util: 30.0.5
8209
-
jest-resolve: 30.0.5
8210
-
jest-runtime: 30.0.5
8211
-
jest-util: 30.0.5
8212
-
jest-watcher: 30.0.5
8213
-
jest-worker: 30.0.5
7999
+
jest-docblock: 30.2.0
8000
+
jest-environment-node: 30.2.0
8001
+
jest-haste-map: 30.2.0
8002
+
jest-leak-detector: 30.2.0
8003
+
jest-message-util: 30.2.0
8004
+
jest-resolve: 30.2.0
8005
+
jest-runtime: 30.2.0
8006
+
jest-util: 30.2.0
8007
+
jest-watcher: 30.2.0
8008
+
jest-worker: 30.2.0
8214
8009
p-limit: 3.1.0
8215
8010
source-map-support: 0.5.13
8216
8011
transitivePeerDependencies:
8217
8012
- supports-color
8218
8013
8219
-
jest-runtime@30.0.5:
8014
+
jest-runtime@30.2.0:
8220
8015
dependencies:
8221
-
'@jest/environment': 30.0.5
8222
-
'@jest/fake-timers': 30.0.5
8223
-
'@jest/globals': 30.0.5
8016
+
'@jest/environment': 30.2.0
8017
+
'@jest/fake-timers': 30.2.0
8018
+
'@jest/globals': 30.2.0
8224
8019
'@jest/source-map': 30.0.1
8225
-
'@jest/test-result': 30.0.5
8226
-
'@jest/transform': 30.0.5
8227
-
'@jest/types': 30.0.5
8228
-
'@types/node': 20.17.31
8020
+
'@jest/test-result': 30.2.0
8021
+
'@jest/transform': 30.2.0
8022
+
'@jest/types': 30.2.0
8023
+
'@types/node': 25.0.2
8229
8024
chalk: 4.1.2
8230
-
cjs-module-lexer: 2.1.0
8231
-
collect-v8-coverage: 1.0.2
8232
-
glob: 10.4.5
8025
+
cjs-module-lexer: 2.1.1
8026
+
collect-v8-coverage: 1.0.3
8027
+
glob: 10.5.0
8233
8028
graceful-fs: 4.2.11
8234
-
jest-haste-map: 30.0.5
8235
-
jest-message-util: 30.0.5
8236
-
jest-mock: 30.0.5
8029
+
jest-haste-map: 30.2.0
8030
+
jest-message-util: 30.2.0
8031
+
jest-mock: 30.2.0
8237
8032
jest-regex-util: 30.0.1
8238
-
jest-resolve: 30.0.5
8239
-
jest-snapshot: 30.0.5
8240
-
jest-util: 30.0.5
8033
+
jest-resolve: 30.2.0
8034
+
jest-snapshot: 30.2.0
8035
+
jest-util: 30.2.0
8241
8036
slash: 3.0.0
8242
8037
strip-bom: 4.0.0
8243
8038
transitivePeerDependencies:
8244
8039
- supports-color
8245
8040
8246
-
jest-snapshot@30.0.5:
8041
+
jest-snapshot@30.2.0:
8247
8042
dependencies:
8248
-
'@babel/core': 7.28.0
8249
-
'@babel/generator': 7.28.0
8250
-
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0)
8251
-
'@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.0)
8252
-
'@babel/types': 7.28.2
8253
-
'@jest/expect-utils': 30.0.5
8254
-
'@jest/get-type': 30.0.1
8255
-
'@jest/snapshot-utils': 30.0.5
8256
-
'@jest/transform': 30.0.5
8257
-
'@jest/types': 30.0.5
8258
-
babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.0)
8043
+
'@babel/core': 7.28.5
8044
+
'@babel/generator': 7.28.5
8045
+
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5)
8046
+
'@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5)
8047
+
'@babel/types': 7.28.5
8048
+
'@jest/expect-utils': 30.2.0
8049
+
'@jest/get-type': 30.1.0
8050
+
'@jest/snapshot-utils': 30.2.0
8051
+
'@jest/transform': 30.2.0
8052
+
'@jest/types': 30.2.0
8053
+
babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5)
8259
8054
chalk: 4.1.2
8260
-
expect: 30.0.5
8055
+
expect: 30.2.0
8261
8056
graceful-fs: 4.2.11
8262
-
jest-diff: 30.0.5
8263
-
jest-matcher-utils: 30.0.5
8264
-
jest-message-util: 30.0.5
8265
-
jest-util: 30.0.5
8266
-
pretty-format: 30.0.5
8267
-
semver: 7.7.2
8057
+
jest-diff: 30.2.0
8058
+
jest-matcher-utils: 30.2.0
8059
+
jest-message-util: 30.2.0
8060
+
jest-util: 30.2.0
8061
+
pretty-format: 30.2.0
8062
+
semver: 7.7.3
8268
8063
synckit: 0.11.11
8269
8064
transitivePeerDependencies:
8270
8065
- supports-color
8271
8066
8272
-
jest-util@30.0.5:
8067
+
jest-util@30.2.0:
8273
8068
dependencies:
8274
-
'@jest/types': 30.0.5
8275
-
'@types/node': 20.17.31
8069
+
'@jest/types': 30.2.0
8070
+
'@types/node': 25.0.2
8276
8071
chalk: 4.1.2
8277
-
ci-info: 4.3.0
8072
+
ci-info: 4.3.1
8278
8073
graceful-fs: 4.2.11
8279
-
picomatch: 4.0.2
8074
+
picomatch: 4.0.3
8280
8075
8281
-
jest-validate@30.0.5:
8076
+
jest-validate@30.2.0:
8282
8077
dependencies:
8283
-
'@jest/get-type': 30.0.1
8284
-
'@jest/types': 30.0.5
8078
+
'@jest/get-type': 30.1.0
8079
+
'@jest/types': 30.2.0
8285
8080
camelcase: 6.3.0
8286
8081
chalk: 4.1.2
8287
8082
leven: 3.1.0
8288
-
pretty-format: 30.0.5
8083
+
pretty-format: 30.2.0
8289
8084
8290
-
jest-watcher@30.0.5:
8085
+
jest-watcher@30.2.0:
8291
8086
dependencies:
8292
-
'@jest/test-result': 30.0.5
8293
-
'@jest/types': 30.0.5
8294
-
'@types/node': 20.17.31
8087
+
'@jest/test-result': 30.2.0
8088
+
'@jest/types': 30.2.0
8089
+
'@types/node': 25.0.2
8295
8090
ansi-escapes: 4.3.2
8296
8091
chalk: 4.1.2
8297
8092
emittery: 0.13.1
8298
-
jest-util: 30.0.5
8093
+
jest-util: 30.2.0
8299
8094
string-length: 4.0.2
8300
8095
8301
-
jest-worker@30.0.5:
8096
+
jest-worker@30.2.0:
8302
8097
dependencies:
8303
-
'@types/node': 20.17.31
8098
+
'@types/node': 25.0.2
8304
8099
'@ungap/structured-clone': 1.3.0
8305
-
jest-util: 30.0.5
8100
+
jest-util: 30.2.0
8306
8101
merge-stream: 2.0.0
8307
8102
supports-color: 8.1.1
8308
8103
8309
-
jest@30.0.5(@types/node@20.17.31):
8104
+
jest@30.2.0(@types/node@25.0.2):
8310
8105
dependencies:
8311
-
'@jest/core': 30.0.5
8312
-
'@jest/types': 30.0.5
8106
+
'@jest/core': 30.2.0
8107
+
'@jest/types': 30.2.0
8313
8108
import-local: 3.2.0
8314
-
jest-cli: 30.0.5(@types/node@20.17.31)
8109
+
jest-cli: 30.2.0(@types/node@25.0.2)
8315
8110
transitivePeerDependencies:
8316
8111
- '@types/node'
8317
8112
- babel-plugin-macros
···
8319
8114
- supports-color
8320
8115
- ts-node
8321
8116
8322
-
jiti@2.4.2: {}
8117
+
jiti@2.6.1: {}
8323
8118
8324
-
jose@6.0.11: {}
8119
+
jose@6.1.3: {}
8325
8120
8326
-
js-base64@3.7.7: {}
8121
+
js-base64@3.7.8: {}
8327
8122
8328
8123
js-tokens@4.0.0: {}
8329
8124
8330
-
js-yaml@3.14.1:
8125
+
js-yaml@3.14.2:
8331
8126
dependencies:
8332
8127
argparse: 1.0.10
8333
8128
esprima: 4.0.1
8334
8129
8335
-
js-yaml@4.1.0:
8130
+
js-yaml@4.1.1:
8336
8131
dependencies:
8337
8132
argparse: 2.0.1
8338
8133
···
8345
8140
http-proxy-agent: 7.0.2
8346
8141
https-proxy-agent: 7.0.6
8347
8142
is-potential-custom-element-name: 1.0.1
8348
-
nwsapi: 2.2.21
8143
+
nwsapi: 2.2.23
8349
8144
parse5: 7.3.0
8350
8145
rrweb-cssom: 0.8.0
8351
8146
saxes: 6.0.0
···
8356
8151
whatwg-encoding: 3.1.1
8357
8152
whatwg-mimetype: 4.0.0
8358
8153
whatwg-url: 14.2.0
8359
-
ws: 8.18.2
8154
+
ws: 8.18.3
8360
8155
xml-name-validator: 5.0.0
8361
8156
transitivePeerDependencies:
8362
8157
- bufferutil
···
8383
8178
8384
8179
jsonc-parser@3.3.1: {}
8385
8180
8386
-
jsondiffpatch@0.6.0:
8387
-
dependencies:
8388
-
'@types/diff-match-patch': 1.0.36
8389
-
chalk: 5.4.1
8390
-
diff-match-patch: 1.0.5
8391
-
8392
-
jsonwebtoken@9.0.2:
8181
+
jsonwebtoken@9.0.3:
8393
8182
dependencies:
8394
-
jws: 3.2.2
8183
+
jws: 4.0.1
8395
8184
lodash.includes: 4.3.0
8396
8185
lodash.isboolean: 3.0.3
8397
8186
lodash.isinteger: 4.0.4
···
8400
8189
lodash.isstring: 4.0.1
8401
8190
lodash.once: 4.1.1
8402
8191
ms: 2.1.3
8403
-
semver: 7.7.1
8192
+
semver: 7.7.3
8404
8193
8405
8194
jsx-ast-utils@3.3.5:
8406
8195
dependencies:
8407
-
array-includes: 3.1.8
8196
+
array-includes: 3.1.9
8408
8197
array.prototype.flat: 1.3.3
8409
8198
object.assign: 4.1.7
8410
8199
object.values: 1.2.1
8411
8200
8412
-
jwa@1.4.2:
8201
+
jwa@2.0.1:
8413
8202
dependencies:
8414
8203
buffer-equal-constant-time: 1.0.1
8415
8204
ecdsa-sig-formatter: 1.0.11
8416
8205
safe-buffer: 5.2.1
8417
8206
8418
-
jws@3.2.2:
8207
+
jws@4.0.1:
8419
8208
dependencies:
8420
-
jwa: 1.4.2
8209
+
jwa: 2.0.1
8421
8210
safe-buffer: 5.2.1
8422
8211
8423
8212
keyv@4.5.4:
···
8437
8226
prelude-ls: 1.2.1
8438
8227
type-check: 0.4.0
8439
8228
8440
-
libsql@0.5.9:
8229
+
libsql@0.5.22:
8441
8230
dependencies:
8442
8231
'@neon-rs/load': 0.0.4
8443
8232
detect-libc: 2.0.2
8444
8233
optionalDependencies:
8445
-
'@libsql/darwin-arm64': 0.5.9
8446
-
'@libsql/darwin-x64': 0.5.9
8447
-
'@libsql/linux-arm-gnueabihf': 0.5.9
8448
-
'@libsql/linux-arm-musleabihf': 0.5.9
8449
-
'@libsql/linux-arm64-gnu': 0.5.9
8450
-
'@libsql/linux-arm64-musl': 0.5.9
8451
-
'@libsql/linux-x64-gnu': 0.5.9
8452
-
'@libsql/linux-x64-musl': 0.5.9
8453
-
'@libsql/win32-x64-msvc': 0.5.9
8234
+
'@libsql/darwin-arm64': 0.5.22
8235
+
'@libsql/darwin-x64': 0.5.22
8236
+
'@libsql/linux-arm-gnueabihf': 0.5.22
8237
+
'@libsql/linux-arm-musleabihf': 0.5.22
8238
+
'@libsql/linux-arm64-gnu': 0.5.22
8239
+
'@libsql/linux-arm64-musl': 0.5.22
8240
+
'@libsql/linux-x64-gnu': 0.5.22
8241
+
'@libsql/linux-x64-musl': 0.5.22
8242
+
'@libsql/win32-x64-msvc': 0.5.22
8243
+
8244
+
lightningcss-android-arm64@1.30.2:
8245
+
optional: true
8454
8246
8455
-
lightningcss-darwin-arm64@1.30.1:
8247
+
lightningcss-darwin-arm64@1.30.2:
8456
8248
optional: true
8457
8249
8458
-
lightningcss-darwin-x64@1.30.1:
8250
+
lightningcss-darwin-x64@1.30.2:
8459
8251
optional: true
8460
8252
8461
-
lightningcss-freebsd-x64@1.30.1:
8253
+
lightningcss-freebsd-x64@1.30.2:
8462
8254
optional: true
8463
8255
8464
-
lightningcss-linux-arm-gnueabihf@1.30.1:
8256
+
lightningcss-linux-arm-gnueabihf@1.30.2:
8465
8257
optional: true
8466
8258
8467
-
lightningcss-linux-arm64-gnu@1.30.1:
8259
+
lightningcss-linux-arm64-gnu@1.30.2:
8468
8260
optional: true
8469
8261
8470
-
lightningcss-linux-arm64-musl@1.30.1:
8262
+
lightningcss-linux-arm64-musl@1.30.2:
8471
8263
optional: true
8472
8264
8473
-
lightningcss-linux-x64-gnu@1.30.1:
8265
+
lightningcss-linux-x64-gnu@1.30.2:
8474
8266
optional: true
8475
8267
8476
-
lightningcss-linux-x64-musl@1.30.1:
8268
+
lightningcss-linux-x64-musl@1.30.2:
8477
8269
optional: true
8478
8270
8479
-
lightningcss-win32-arm64-msvc@1.30.1:
8271
+
lightningcss-win32-arm64-msvc@1.30.2:
8480
8272
optional: true
8481
8273
8482
-
lightningcss-win32-x64-msvc@1.30.1:
8274
+
lightningcss-win32-x64-msvc@1.30.2:
8483
8275
optional: true
8484
8276
8485
-
lightningcss@1.30.1:
8277
+
lightningcss@1.30.2:
8486
8278
dependencies:
8487
-
detect-libc: 2.0.4
8279
+
detect-libc: 2.1.2
8488
8280
optionalDependencies:
8489
-
lightningcss-darwin-arm64: 1.30.1
8490
-
lightningcss-darwin-x64: 1.30.1
8491
-
lightningcss-freebsd-x64: 1.30.1
8492
-
lightningcss-linux-arm-gnueabihf: 1.30.1
8493
-
lightningcss-linux-arm64-gnu: 1.30.1
8494
-
lightningcss-linux-arm64-musl: 1.30.1
8495
-
lightningcss-linux-x64-gnu: 1.30.1
8496
-
lightningcss-linux-x64-musl: 1.30.1
8497
-
lightningcss-win32-arm64-msvc: 1.30.1
8498
-
lightningcss-win32-x64-msvc: 1.30.1
8281
+
lightningcss-android-arm64: 1.30.2
8282
+
lightningcss-darwin-arm64: 1.30.2
8283
+
lightningcss-darwin-x64: 1.30.2
8284
+
lightningcss-freebsd-x64: 1.30.2
8285
+
lightningcss-linux-arm-gnueabihf: 1.30.2
8286
+
lightningcss-linux-arm64-gnu: 1.30.2
8287
+
lightningcss-linux-arm64-musl: 1.30.2
8288
+
lightningcss-linux-x64-gnu: 1.30.2
8289
+
lightningcss-linux-x64-musl: 1.30.2
8290
+
lightningcss-win32-arm64-msvc: 1.30.2
8291
+
lightningcss-win32-x64-msvc: 1.30.2
8499
8292
8500
8293
lines-and-columns@1.2.4: {}
8501
8294
···
8525
8318
8526
8319
lodash.once@4.1.1: {}
8527
8320
8528
-
lodash@4.17.21: {}
8529
-
8530
8321
loose-envify@1.4.0:
8531
8322
dependencies:
8532
8323
js-tokens: 4.0.0
···
8537
8328
dependencies:
8538
8329
yallist: 3.1.1
8539
8330
8540
-
lucide-react@0.503.0(react@19.1.1):
8331
+
lucide-react@0.561.0(react@19.2.3):
8541
8332
dependencies:
8542
-
react: 19.1.1
8333
+
react: 19.2.3
8543
8334
8544
8335
lz-string@1.5.0: {}
8545
8336
8546
-
magic-string@0.30.17:
8337
+
magic-string@0.30.21:
8547
8338
dependencies:
8548
-
'@jridgewell/sourcemap-codec': 1.5.4
8339
+
'@jridgewell/sourcemap-codec': 1.5.5
8549
8340
8550
8341
make-dir@4.0.0:
8551
8342
dependencies:
8552
-
semver: 7.7.1
8343
+
semver: 7.7.3
8553
8344
8554
8345
make-error@1.3.6: {}
8555
8346
···
8574
8365
8575
8366
minimatch@3.1.2:
8576
8367
dependencies:
8577
-
brace-expansion: 1.1.11
8368
+
brace-expansion: 1.1.12
8578
8369
8579
8370
minimatch@9.0.5:
8580
8371
dependencies:
8581
-
brace-expansion: 2.0.1
8372
+
brace-expansion: 2.0.2
8582
8373
8583
8374
minimist@1.2.8: {}
8584
8375
8585
8376
minipass@7.1.2: {}
8586
8377
8587
-
minizlib@3.0.2:
8588
-
dependencies:
8589
-
minipass: 7.1.2
8590
-
8591
-
mkdirp@3.0.1: {}
8592
-
8593
-
motion-dom@12.23.12:
8378
+
motion-dom@12.23.23:
8594
8379
dependencies:
8595
8380
motion-utils: 12.23.6
8596
8381
8597
-
motion-dom@12.9.6:
8598
-
dependencies:
8599
-
motion-utils: 12.9.4
8600
-
8601
8382
motion-utils@12.23.6: {}
8602
8383
8603
-
motion-utils@12.9.4: {}
8604
-
8605
-
motion@12.23.12(react-dom@19.1.1(react@19.1.1))(react@19.1.1):
8384
+
motion@12.23.26(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
8606
8385
dependencies:
8607
-
framer-motion: 12.23.12(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
8386
+
framer-motion: 12.23.26(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
8608
8387
tslib: 2.8.1
8609
8388
optionalDependencies:
8610
-
react: 19.1.1
8611
-
react-dom: 19.1.1(react@19.1.1)
8389
+
react: 19.2.3
8390
+
react-dom: 19.2.3(react@19.2.3)
8612
8391
8613
8392
ms@2.1.3: {}
8614
8393
8615
8394
nanoid@3.3.11: {}
8616
8395
8617
-
napi-postinstall@0.3.2: {}
8396
+
napi-postinstall@0.3.4: {}
8618
8397
8619
8398
natural-compare@1.4.0: {}
8620
8399
8621
8400
neo-async@2.6.2: {}
8622
8401
8623
-
next-auth@5.0.0-beta.29(next@15.4.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1):
8402
+
next-auth@5.0.0-beta.29(next@16.0.10(@babel/core@7.28.5)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(react@19.2.3):
8624
8403
dependencies:
8625
8404
'@auth/core': 0.40.0
8626
-
next: 15.4.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
8627
-
react: 19.1.1
8405
+
next: 16.0.10(@babel/core@7.28.5)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
8406
+
react: 19.2.3
8628
8407
8629
-
next-themes@0.4.6(react-dom@19.1.1(react@19.1.1))(react@19.1.1):
8408
+
next-themes@0.4.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
8630
8409
dependencies:
8631
-
react: 19.1.1
8632
-
react-dom: 19.1.1(react@19.1.1)
8410
+
react: 19.2.3
8411
+
react-dom: 19.2.3(react@19.2.3)
8633
8412
8634
-
next@15.4.6(@babel/core@7.28.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1):
8413
+
next@16.0.10(@babel/core@7.28.5)(@opentelemetry/api@1.9.0)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
8635
8414
dependencies:
8636
-
'@next/env': 15.4.6
8415
+
'@next/env': 16.0.10
8637
8416
'@swc/helpers': 0.5.15
8638
-
caniuse-lite: 1.0.30001731
8417
+
caniuse-lite: 1.0.30001760
8639
8418
postcss: 8.4.31
8640
-
react: 19.1.1
8641
-
react-dom: 19.1.1(react@19.1.1)
8642
-
styled-jsx: 5.1.6(@babel/core@7.28.0)(react@19.1.1)
8419
+
react: 19.2.3
8420
+
react-dom: 19.2.3(react@19.2.3)
8421
+
styled-jsx: 5.1.6(@babel/core@7.28.5)(react@19.2.3)
8643
8422
optionalDependencies:
8644
-
'@next/swc-darwin-arm64': 15.4.6
8645
-
'@next/swc-darwin-x64': 15.4.6
8646
-
'@next/swc-linux-arm64-gnu': 15.4.6
8647
-
'@next/swc-linux-arm64-musl': 15.4.6
8648
-
'@next/swc-linux-x64-gnu': 15.4.6
8649
-
'@next/swc-linux-x64-musl': 15.4.6
8650
-
'@next/swc-win32-arm64-msvc': 15.4.6
8651
-
'@next/swc-win32-x64-msvc': 15.4.6
8423
+
'@next/swc-darwin-arm64': 16.0.10
8424
+
'@next/swc-darwin-x64': 16.0.10
8425
+
'@next/swc-linux-arm64-gnu': 16.0.10
8426
+
'@next/swc-linux-arm64-musl': 16.0.10
8427
+
'@next/swc-linux-x64-gnu': 16.0.10
8428
+
'@next/swc-linux-x64-musl': 16.0.10
8429
+
'@next/swc-win32-arm64-msvc': 16.0.10
8430
+
'@next/swc-win32-x64-msvc': 16.0.10
8652
8431
'@opentelemetry/api': 1.9.0
8653
-
sharp: 0.34.3
8432
+
sharp: 0.34.5
8654
8433
transitivePeerDependencies:
8655
8434
- '@babel/core'
8656
8435
- babel-plugin-macros
···
8665
8444
8666
8445
node-int64@0.4.0: {}
8667
8446
8668
-
node-releases@2.0.19: {}
8447
+
node-releases@2.0.27: {}
8669
8448
8670
8449
normalize-path@3.0.0: {}
8671
8450
···
8673
8452
dependencies:
8674
8453
path-key: 3.1.1
8675
8454
8676
-
nwsapi@2.2.21: {}
8455
+
nwsapi@2.2.23: {}
8677
8456
8678
-
oauth4webapi@3.5.5: {}
8457
+
oauth4webapi@3.8.3: {}
8679
8458
8680
8459
object-assign@4.1.1: {}
8681
8460
···
8703
8482
dependencies:
8704
8483
call-bind: 1.0.8
8705
8484
define-properties: 1.2.1
8706
-
es-abstract: 1.23.9
8485
+
es-abstract: 1.24.1
8707
8486
es-object-atoms: 1.1.1
8708
8487
8709
8488
object.groupby@1.0.3:
8710
8489
dependencies:
8711
8490
call-bind: 1.0.8
8712
8491
define-properties: 1.2.1
8713
-
es-abstract: 1.23.9
8492
+
es-abstract: 1.24.1
8714
8493
8715
8494
object.values@1.2.1:
8716
8495
dependencies:
···
8769
8548
parse-json@5.2.0:
8770
8549
dependencies:
8771
8550
'@babel/code-frame': 7.27.1
8772
-
error-ex: 1.3.2
8551
+
error-ex: 1.3.4
8773
8552
json-parse-even-better-errors: 2.3.1
8774
8553
lines-and-columns: 1.2.4
8775
8554
···
8794
8573
8795
8574
picomatch@2.3.1: {}
8796
8575
8797
-
picomatch@4.0.2: {}
8576
+
picomatch@4.0.3: {}
8798
8577
8799
8578
pirates@4.0.7: {}
8800
8579
···
8810
8589
picocolors: 1.1.1
8811
8590
source-map-js: 1.2.1
8812
8591
8813
-
postcss@8.5.3:
8592
+
postcss@8.5.6:
8814
8593
dependencies:
8815
8594
nanoid: 3.3.11
8816
8595
picocolors: 1.1.1
···
8830
8609
ansi-styles: 5.2.0
8831
8610
react-is: 17.0.2
8832
8611
8833
-
pretty-format@30.0.5:
8612
+
pretty-format@30.2.0:
8834
8613
dependencies:
8835
8614
'@jest/schemas': 30.0.5
8836
8615
ansi-styles: 5.2.0
···
8850
8629
8851
8630
queue-microtask@1.2.3: {}
8852
8631
8853
-
react-day-picker@9.9.0(react@19.1.1):
8632
+
react-day-picker@9.12.0(react@19.2.3):
8854
8633
dependencies:
8855
8634
'@date-fns/tz': 1.4.1
8856
8635
date-fns: 4.1.0
8857
8636
date-fns-jalali: 4.1.0-0
8858
-
react: 19.1.1
8637
+
react: 19.2.3
8859
8638
8860
-
react-dom@19.1.1(react@19.1.1):
8639
+
react-dom@19.2.3(react@19.2.3):
8861
8640
dependencies:
8862
-
react: 19.1.1
8863
-
scheduler: 0.26.0
8641
+
react: 19.2.3
8642
+
scheduler: 0.27.0
8864
8643
8865
8644
react-is@16.13.1: {}
8866
8645
···
8868
8647
8869
8648
react-is@18.3.1: {}
8870
8649
8871
-
react-remove-scroll-bar@2.3.8(@types/react@19.1.10)(react@19.1.1):
8650
+
react-redux@9.2.0(@types/react@19.2.7)(react@19.2.3)(redux@5.0.1):
8872
8651
dependencies:
8873
-
react: 19.1.1
8874
-
react-style-singleton: 2.2.3(@types/react@19.1.10)(react@19.1.1)
8875
-
tslib: 2.8.1
8652
+
'@types/use-sync-external-store': 0.0.6
8653
+
react: 19.2.3
8654
+
use-sync-external-store: 1.6.0(react@19.2.3)
8876
8655
optionalDependencies:
8877
-
'@types/react': 19.1.10
8656
+
'@types/react': 19.2.7
8657
+
redux: 5.0.1
8878
8658
8879
-
react-remove-scroll@2.6.3(@types/react@19.1.10)(react@19.1.1):
8659
+
react-remove-scroll-bar@2.3.8(@types/react@19.2.7)(react@19.2.3):
8880
8660
dependencies:
8881
-
react: 19.1.1
8882
-
react-remove-scroll-bar: 2.3.8(@types/react@19.1.10)(react@19.1.1)
8883
-
react-style-singleton: 2.2.3(@types/react@19.1.10)(react@19.1.1)
8661
+
react: 19.2.3
8662
+
react-style-singleton: 2.2.3(@types/react@19.2.7)(react@19.2.3)
8884
8663
tslib: 2.8.1
8885
-
use-callback-ref: 1.3.3(@types/react@19.1.10)(react@19.1.1)
8886
-
use-sidecar: 1.1.3(@types/react@19.1.10)(react@19.1.1)
8887
8664
optionalDependencies:
8888
-
'@types/react': 19.1.10
8665
+
'@types/react': 19.2.7
8889
8666
8890
-
react-smooth@4.0.4(react-dom@19.1.1(react@19.1.1))(react@19.1.1):
8667
+
react-remove-scroll@2.7.2(@types/react@19.2.7)(react@19.2.3):
8891
8668
dependencies:
8892
-
fast-equals: 5.2.2
8893
-
prop-types: 15.8.1
8894
-
react: 19.1.1
8895
-
react-dom: 19.1.1(react@19.1.1)
8896
-
react-transition-group: 4.4.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
8669
+
react: 19.2.3
8670
+
react-remove-scroll-bar: 2.3.8(@types/react@19.2.7)(react@19.2.3)
8671
+
react-style-singleton: 2.2.3(@types/react@19.2.7)(react@19.2.3)
8672
+
tslib: 2.8.1
8673
+
use-callback-ref: 1.3.3(@types/react@19.2.7)(react@19.2.3)
8674
+
use-sidecar: 1.1.3(@types/react@19.2.7)(react@19.2.3)
8675
+
optionalDependencies:
8676
+
'@types/react': 19.2.7
8897
8677
8898
-
react-style-singleton@2.2.3(@types/react@19.1.10)(react@19.1.1):
8678
+
react-style-singleton@2.2.3(@types/react@19.2.7)(react@19.2.3):
8899
8679
dependencies:
8900
8680
get-nonce: 1.0.1
8901
-
react: 19.1.1
8681
+
react: 19.2.3
8902
8682
tslib: 2.8.1
8903
8683
optionalDependencies:
8904
-
'@types/react': 19.1.10
8905
-
8906
-
react-transition-group@4.4.5(react-dom@19.1.1(react@19.1.1))(react@19.1.1):
8907
-
dependencies:
8908
-
'@babel/runtime': 7.27.0
8909
-
dom-helpers: 5.2.1
8910
-
loose-envify: 1.4.0
8911
-
prop-types: 15.8.1
8912
-
react: 19.1.1
8913
-
react-dom: 19.1.1(react@19.1.1)
8914
-
8915
-
react@19.1.1: {}
8684
+
'@types/react': 19.2.7
8916
8685
8917
-
recharts-scale@0.4.5:
8918
-
dependencies:
8919
-
decimal.js-light: 2.5.1
8686
+
react@19.2.3: {}
8920
8687
8921
-
recharts@2.15.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1):
8688
+
recharts@3.6.0(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react-is@18.3.1)(react@19.2.3)(redux@5.0.1):
8922
8689
dependencies:
8690
+
'@reduxjs/toolkit': 2.11.2(react-redux@9.2.0(@types/react@19.2.7)(react@19.2.3)(redux@5.0.1))(react@19.2.3)
8923
8691
clsx: 2.1.1
8924
-
eventemitter3: 4.0.7
8925
-
lodash: 4.17.21
8926
-
react: 19.1.1
8927
-
react-dom: 19.1.1(react@19.1.1)
8692
+
decimal.js-light: 2.5.1
8693
+
es-toolkit: 1.43.0
8694
+
eventemitter3: 5.0.1
8695
+
immer: 10.2.0
8696
+
react: 19.2.3
8697
+
react-dom: 19.2.3(react@19.2.3)
8928
8698
react-is: 18.3.1
8929
-
react-smooth: 4.0.4(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
8930
-
recharts-scale: 0.4.5
8699
+
react-redux: 9.2.0(@types/react@19.2.7)(react@19.2.3)(redux@5.0.1)
8700
+
reselect: 5.1.1
8931
8701
tiny-invariant: 1.3.3
8932
-
victory-vendor: 36.9.2
8702
+
use-sync-external-store: 1.6.0(react@19.2.3)
8703
+
victory-vendor: 37.3.6
8704
+
transitivePeerDependencies:
8705
+
- '@types/react'
8706
+
- redux
8933
8707
8934
8708
redent@3.0.0:
8935
8709
dependencies:
8936
8710
indent-string: 4.0.0
8937
8711
strip-indent: 3.0.0
8938
8712
8713
+
redux-thunk@3.1.0(redux@5.0.1):
8714
+
dependencies:
8715
+
redux: 5.0.1
8716
+
8717
+
redux@5.0.1: {}
8718
+
8939
8719
reflect.getprototypeof@1.0.10:
8940
8720
dependencies:
8941
8721
call-bind: 1.0.8
8942
8722
define-properties: 1.2.1
8943
-
es-abstract: 1.23.9
8723
+
es-abstract: 1.24.1
8944
8724
es-errors: 1.3.0
8945
8725
es-object-atoms: 1.1.1
8946
8726
get-intrinsic: 1.3.0
8947
8727
get-proto: 1.0.1
8948
8728
which-builtin-type: 1.2.1
8949
-
8950
-
regenerator-runtime@0.14.1: {}
8951
8729
8952
8730
regexp.prototype.flags@1.5.4:
8953
8731
dependencies:
···
8960
8738
8961
8739
require-directory@2.1.1: {}
8962
8740
8741
+
reselect@5.1.1: {}
8742
+
8963
8743
resolve-cwd@3.0.0:
8964
8744
dependencies:
8965
8745
resolve-from: 5.0.0
···
8970
8750
8971
8751
resolve-pkg-maps@1.0.0: {}
8972
8752
8973
-
resolve@1.22.10:
8753
+
resolve@1.22.11:
8974
8754
dependencies:
8975
8755
is-core-module: 2.16.1
8976
8756
path-parse: 1.0.7
···
9017
8797
dependencies:
9018
8798
xmlchars: 2.2.0
9019
8799
9020
-
scheduler@0.26.0: {}
9021
-
9022
-
secure-json-parse@2.7.0: {}
8800
+
scheduler@0.27.0: {}
9023
8801
9024
8802
semver@6.3.1: {}
9025
8803
9026
-
semver@7.7.1: {}
9027
-
9028
-
semver@7.7.2: {}
8804
+
semver@7.7.3: {}
9029
8805
9030
8806
set-function-length@1.2.2:
9031
8807
dependencies:
···
9049
8825
es-errors: 1.3.0
9050
8826
es-object-atoms: 1.1.1
9051
8827
9052
-
sharp@0.34.3:
8828
+
sharp@0.34.5:
9053
8829
dependencies:
9054
-
color: 4.2.3
9055
-
detect-libc: 2.0.4
9056
-
semver: 7.7.2
8830
+
'@img/colour': 1.0.0
8831
+
detect-libc: 2.1.2
8832
+
semver: 7.7.3
9057
8833
optionalDependencies:
9058
-
'@img/sharp-darwin-arm64': 0.34.3
9059
-
'@img/sharp-darwin-x64': 0.34.3
9060
-
'@img/sharp-libvips-darwin-arm64': 1.2.0
9061
-
'@img/sharp-libvips-darwin-x64': 1.2.0
9062
-
'@img/sharp-libvips-linux-arm': 1.2.0
9063
-
'@img/sharp-libvips-linux-arm64': 1.2.0
9064
-
'@img/sharp-libvips-linux-ppc64': 1.2.0
9065
-
'@img/sharp-libvips-linux-s390x': 1.2.0
9066
-
'@img/sharp-libvips-linux-x64': 1.2.0
9067
-
'@img/sharp-libvips-linuxmusl-arm64': 1.2.0
9068
-
'@img/sharp-libvips-linuxmusl-x64': 1.2.0
9069
-
'@img/sharp-linux-arm': 0.34.3
9070
-
'@img/sharp-linux-arm64': 0.34.3
9071
-
'@img/sharp-linux-ppc64': 0.34.3
9072
-
'@img/sharp-linux-s390x': 0.34.3
9073
-
'@img/sharp-linux-x64': 0.34.3
9074
-
'@img/sharp-linuxmusl-arm64': 0.34.3
9075
-
'@img/sharp-linuxmusl-x64': 0.34.3
9076
-
'@img/sharp-wasm32': 0.34.3
9077
-
'@img/sharp-win32-arm64': 0.34.3
9078
-
'@img/sharp-win32-ia32': 0.34.3
9079
-
'@img/sharp-win32-x64': 0.34.3
8834
+
'@img/sharp-darwin-arm64': 0.34.5
8835
+
'@img/sharp-darwin-x64': 0.34.5
8836
+
'@img/sharp-libvips-darwin-arm64': 1.2.4
8837
+
'@img/sharp-libvips-darwin-x64': 1.2.4
8838
+
'@img/sharp-libvips-linux-arm': 1.2.4
8839
+
'@img/sharp-libvips-linux-arm64': 1.2.4
8840
+
'@img/sharp-libvips-linux-ppc64': 1.2.4
8841
+
'@img/sharp-libvips-linux-riscv64': 1.2.4
8842
+
'@img/sharp-libvips-linux-s390x': 1.2.4
8843
+
'@img/sharp-libvips-linux-x64': 1.2.4
8844
+
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
8845
+
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
8846
+
'@img/sharp-linux-arm': 0.34.5
8847
+
'@img/sharp-linux-arm64': 0.34.5
8848
+
'@img/sharp-linux-ppc64': 0.34.5
8849
+
'@img/sharp-linux-riscv64': 0.34.5
8850
+
'@img/sharp-linux-s390x': 0.34.5
8851
+
'@img/sharp-linux-x64': 0.34.5
8852
+
'@img/sharp-linuxmusl-arm64': 0.34.5
8853
+
'@img/sharp-linuxmusl-x64': 0.34.5
8854
+
'@img/sharp-wasm32': 0.34.5
8855
+
'@img/sharp-win32-arm64': 0.34.5
8856
+
'@img/sharp-win32-ia32': 0.34.5
8857
+
'@img/sharp-win32-x64': 0.34.5
9080
8858
optional: true
9081
8859
9082
8860
shebang-command@2.0.0:
···
9117
8895
9118
8896
signal-exit@4.1.0: {}
9119
8897
9120
-
simple-swizzle@0.2.2:
9121
-
dependencies:
9122
-
is-arrayish: 0.3.2
9123
-
optional: true
9124
-
9125
8898
slash@3.0.0: {}
9126
8899
9127
-
sonner@2.0.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1):
8900
+
sonner@2.0.7(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
9128
8901
dependencies:
9129
-
react: 19.1.1
9130
-
react-dom: 19.1.1(react@19.1.1)
8902
+
react: 19.2.3
8903
+
react-dom: 19.2.3(react@19.2.3)
9131
8904
9132
8905
source-map-js@1.2.1: {}
9133
8906
···
9146
8919
dependencies:
9147
8920
escape-string-regexp: 2.0.0
9148
8921
8922
+
stop-iteration-iterator@1.1.0:
8923
+
dependencies:
8924
+
es-errors: 1.3.0
8925
+
internal-slot: 1.1.0
8926
+
9149
8927
string-length@4.0.2:
9150
8928
dependencies:
9151
8929
char-regex: 1.0.2
···
9161
8939
dependencies:
9162
8940
eastasianwidth: 0.2.0
9163
8941
emoji-regex: 9.2.2
9164
-
strip-ansi: 7.1.0
8942
+
strip-ansi: 7.1.2
9165
8943
9166
8944
string.prototype.includes@2.0.1:
9167
8945
dependencies:
9168
8946
call-bind: 1.0.8
9169
8947
define-properties: 1.2.1
9170
-
es-abstract: 1.23.9
8948
+
es-abstract: 1.24.1
9171
8949
9172
8950
string.prototype.matchall@4.0.12:
9173
8951
dependencies:
9174
8952
call-bind: 1.0.8
9175
8953
call-bound: 1.0.4
9176
8954
define-properties: 1.2.1
9177
-
es-abstract: 1.23.9
8955
+
es-abstract: 1.24.1
9178
8956
es-errors: 1.3.0
9179
8957
es-object-atoms: 1.1.1
9180
8958
get-intrinsic: 1.3.0
···
9188
8966
string.prototype.repeat@1.0.0:
9189
8967
dependencies:
9190
8968
define-properties: 1.2.1
9191
-
es-abstract: 1.23.9
8969
+
es-abstract: 1.24.1
9192
8970
9193
8971
string.prototype.trim@1.2.10:
9194
8972
dependencies:
···
9196
8974
call-bound: 1.0.4
9197
8975
define-data-property: 1.1.4
9198
8976
define-properties: 1.2.1
9199
-
es-abstract: 1.23.9
8977
+
es-abstract: 1.24.1
9200
8978
es-object-atoms: 1.1.1
9201
8979
has-property-descriptors: 1.0.2
9202
8980
···
9217
8995
dependencies:
9218
8996
ansi-regex: 5.0.1
9219
8997
9220
-
strip-ansi@7.1.0:
8998
+
strip-ansi@7.1.2:
9221
8999
dependencies:
9222
-
ansi-regex: 6.1.0
9000
+
ansi-regex: 6.2.2
9223
9001
9224
9002
strip-bom@3.0.0: {}
9225
9003
···
9233
9011
9234
9012
strip-json-comments@3.1.1: {}
9235
9013
9236
-
styled-jsx@5.1.6(@babel/core@7.28.0)(react@19.1.1):
9014
+
styled-jsx@5.1.6(@babel/core@7.28.5)(react@19.2.3):
9237
9015
dependencies:
9238
9016
client-only: 0.0.1
9239
-
react: 19.1.1
9017
+
react: 19.2.3
9240
9018
optionalDependencies:
9241
-
'@babel/core': 7.28.0
9019
+
'@babel/core': 7.28.5
9242
9020
9243
9021
supports-color@7.2.0:
9244
9022
dependencies:
···
9250
9028
9251
9029
supports-preserve-symlinks-flag@1.0.0: {}
9252
9030
9253
-
swr@2.3.3(react@19.1.1):
9031
+
swr@2.3.8(react@19.2.3):
9254
9032
dependencies:
9255
9033
dequal: 2.0.3
9256
-
react: 19.1.1
9257
-
use-sync-external-store: 1.5.0(react@19.1.1)
9034
+
react: 19.2.3
9035
+
use-sync-external-store: 1.6.0(react@19.2.3)
9258
9036
9259
9037
symbol-tree@3.2.4: {}
9260
9038
···
9262
9040
dependencies:
9263
9041
'@pkgr/core': 0.2.9
9264
9042
9265
-
tailwind-merge@3.2.0: {}
9043
+
tailwind-merge@3.4.0: {}
9266
9044
9267
-
tailwindcss@4.1.11: {}
9268
-
9269
-
tapable@2.2.1: {}
9045
+
tailwindcss@4.1.18: {}
9270
9046
9271
-
tar@7.4.3:
9272
-
dependencies:
9273
-
'@isaacs/fs-minipass': 4.0.1
9274
-
chownr: 3.0.0
9275
-
minipass: 7.1.2
9276
-
minizlib: 3.0.2
9277
-
mkdirp: 3.0.1
9278
-
yallist: 5.0.0
9047
+
tapable@2.3.0: {}
9279
9048
9280
9049
test-exclude@6.0.0:
9281
9050
dependencies:
···
9283
9052
glob: 7.2.3
9284
9053
minimatch: 3.1.2
9285
9054
9286
-
throttleit@2.1.0: {}
9287
-
9288
9055
tiny-invariant@1.3.3: {}
9289
9056
9290
-
tinyglobby@0.2.13:
9057
+
tinyglobby@0.2.15:
9291
9058
dependencies:
9292
-
fdir: 6.4.4(picomatch@4.0.2)
9293
-
picomatch: 4.0.2
9059
+
fdir: 6.5.0(picomatch@4.0.3)
9060
+
picomatch: 4.0.3
9294
9061
9295
9062
tldts-core@6.1.86: {}
9296
9063
···
9312
9079
dependencies:
9313
9080
punycode: 2.3.1
9314
9081
9315
-
ts-api-utils@2.1.0(typescript@5.8.3):
9082
+
ts-api-utils@2.1.0(typescript@5.9.3):
9316
9083
dependencies:
9317
-
typescript: 5.8.3
9084
+
typescript: 5.9.3
9318
9085
9319
-
ts-essentials@10.1.1(typescript@5.8.3):
9086
+
ts-essentials@10.1.1(typescript@5.9.3):
9320
9087
optionalDependencies:
9321
-
typescript: 5.8.3
9088
+
typescript: 5.9.3
9322
9089
9323
-
ts-jest@29.4.1(@babel/core@7.28.0)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.28.0))(jest-util@30.0.5)(jest@30.0.5(@types/node@20.17.31))(typescript@5.8.3):
9090
+
ts-jest@29.4.6(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(jest-util@30.2.0)(jest@30.2.0(@types/node@25.0.2))(typescript@5.9.3):
9324
9091
dependencies:
9325
9092
bs-logger: 0.2.6
9326
9093
fast-json-stable-stringify: 2.1.0
9327
9094
handlebars: 4.7.8
9328
-
jest: 30.0.5(@types/node@20.17.31)
9095
+
jest: 30.2.0(@types/node@25.0.2)
9329
9096
json5: 2.2.3
9330
9097
lodash.memoize: 4.1.2
9331
9098
make-error: 1.3.6
9332
-
semver: 7.7.2
9099
+
semver: 7.7.3
9333
9100
type-fest: 4.41.0
9334
-
typescript: 5.8.3
9101
+
typescript: 5.9.3
9335
9102
yargs-parser: 21.1.1
9336
9103
optionalDependencies:
9337
-
'@babel/core': 7.28.0
9338
-
'@jest/transform': 30.0.5
9339
-
'@jest/types': 30.0.5
9340
-
babel-jest: 30.0.5(@babel/core@7.28.0)
9341
-
jest-util: 30.0.5
9104
+
'@babel/core': 7.28.5
9105
+
'@jest/transform': 30.2.0
9106
+
'@jest/types': 30.2.0
9107
+
babel-jest: 30.2.0(@babel/core@7.28.5)
9108
+
jest-util: 30.2.0
9342
9109
9343
9110
tsconfig-paths@3.15.0:
9344
9111
dependencies:
···
9349
9116
9350
9117
tslib@2.8.1: {}
9351
9118
9352
-
tw-animate-css@1.2.8: {}
9119
+
tw-animate-css@1.4.0: {}
9353
9120
9354
9121
type-check@0.4.0:
9355
9122
dependencies:
···
9394
9161
possible-typed-array-names: 1.1.0
9395
9162
reflect.getprototypeof: 1.0.10
9396
9163
9397
-
typescript@5.8.3: {}
9164
+
typescript-eslint@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3):
9165
+
dependencies:
9166
+
'@typescript-eslint/eslint-plugin': 8.50.0(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
9167
+
'@typescript-eslint/parser': 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
9168
+
'@typescript-eslint/typescript-estree': 8.50.0(typescript@5.9.3)
9169
+
'@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
9170
+
eslint: 9.39.2(jiti@2.6.1)
9171
+
typescript: 5.9.3
9172
+
transitivePeerDependencies:
9173
+
- supports-color
9174
+
9175
+
typescript@5.9.3: {}
9398
9176
9399
9177
uglify-js@3.19.3:
9400
9178
optional: true
···
9406
9184
has-symbols: 1.1.0
9407
9185
which-boxed-primitive: 1.1.1
9408
9186
9409
-
undici-types@6.19.8: {}
9187
+
undici-types@7.16.0: {}
9410
9188
9411
-
universal-user-agent@7.0.2: {}
9189
+
universal-user-agent@7.0.3: {}
9412
9190
9413
9191
unrs-resolver@1.11.1:
9414
9192
dependencies:
9415
-
napi-postinstall: 0.3.2
9193
+
napi-postinstall: 0.3.4
9416
9194
optionalDependencies:
9417
9195
'@unrs/resolver-binding-android-arm-eabi': 1.11.1
9418
9196
'@unrs/resolver-binding-android-arm64': 1.11.1
···
9434
9212
'@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
9435
9213
'@unrs/resolver-binding-win32-x64-msvc': 1.11.1
9436
9214
9437
-
update-browserslist-db@1.1.3(browserslist@4.25.1):
9215
+
update-browserslist-db@1.2.2(browserslist@4.28.1):
9438
9216
dependencies:
9439
-
browserslist: 4.25.1
9217
+
browserslist: 4.28.1
9440
9218
escalade: 3.2.0
9441
9219
picocolors: 1.1.1
9442
9220
···
9444
9222
dependencies:
9445
9223
punycode: 2.3.1
9446
9224
9447
-
use-callback-ref@1.3.3(@types/react@19.1.10)(react@19.1.1):
9225
+
use-callback-ref@1.3.3(@types/react@19.2.7)(react@19.2.3):
9448
9226
dependencies:
9449
-
react: 19.1.1
9227
+
react: 19.2.3
9450
9228
tslib: 2.8.1
9451
9229
optionalDependencies:
9452
-
'@types/react': 19.1.10
9230
+
'@types/react': 19.2.7
9453
9231
9454
-
use-sidecar@1.1.3(@types/react@19.1.10)(react@19.1.1):
9232
+
use-sidecar@1.1.3(@types/react@19.2.7)(react@19.2.3):
9455
9233
dependencies:
9456
9234
detect-node-es: 1.1.0
9457
-
react: 19.1.1
9235
+
react: 19.2.3
9458
9236
tslib: 2.8.1
9459
9237
optionalDependencies:
9460
-
'@types/react': 19.1.10
9238
+
'@types/react': 19.2.7
9461
9239
9462
-
use-sync-external-store@1.5.0(react@19.1.1):
9240
+
use-sync-external-store@1.6.0(react@19.2.3):
9463
9241
dependencies:
9464
-
react: 19.1.1
9242
+
react: 19.2.3
9465
9243
9466
9244
v8-to-istanbul@9.3.0:
9467
9245
dependencies:
9468
-
'@jridgewell/trace-mapping': 0.3.29
9246
+
'@jridgewell/trace-mapping': 0.3.31
9469
9247
'@types/istanbul-lib-coverage': 2.0.6
9470
9248
convert-source-map: 2.0.0
9471
9249
9472
-
vaul@1.1.2(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1):
9250
+
vaul@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
9473
9251
dependencies:
9474
-
'@radix-ui/react-dialog': 1.1.11(@types/react-dom@19.1.7(@types/react@19.1.10))(@types/react@19.1.10)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
9475
-
react: 19.1.1
9476
-
react-dom: 19.1.1(react@19.1.1)
9252
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
9253
+
react: 19.2.3
9254
+
react-dom: 19.2.3(react@19.2.3)
9477
9255
transitivePeerDependencies:
9478
9256
- '@types/react'
9479
9257
- '@types/react-dom'
9480
9258
9481
-
victory-vendor@36.9.2:
9259
+
victory-vendor@37.3.6:
9482
9260
dependencies:
9483
-
'@types/d3-array': 3.2.1
9261
+
'@types/d3-array': 3.2.2
9484
9262
'@types/d3-ease': 3.0.2
9485
9263
'@types/d3-interpolate': 3.0.4
9486
9264
'@types/d3-scale': 4.0.9
···
9536
9314
is-async-function: 2.1.1
9537
9315
is-date-object: 1.1.0
9538
9316
is-finalizationregistry: 1.1.1
9539
-
is-generator-function: 1.1.0
9317
+
is-generator-function: 1.1.2
9540
9318
is-regex: 1.2.1
9541
9319
is-weakref: 1.1.1
9542
9320
isarray: 2.0.5
···
9577
9355
9578
9356
wrap-ansi@8.1.0:
9579
9357
dependencies:
9580
-
ansi-styles: 6.2.1
9358
+
ansi-styles: 6.2.3
9581
9359
string-width: 5.1.2
9582
-
strip-ansi: 7.1.0
9360
+
strip-ansi: 7.1.2
9583
9361
9584
9362
wrappy@1.0.2: {}
9585
9363
···
9588
9366
imurmurhash: 0.1.4
9589
9367
signal-exit: 4.1.0
9590
9368
9591
-
ws@8.18.2: {}
9369
+
ws@8.18.3: {}
9592
9370
9593
9371
xml-name-validator@5.0.0: {}
9594
9372
···
9597
9375
y18n@5.0.8: {}
9598
9376
9599
9377
yallist@3.1.1: {}
9600
-
9601
-
yallist@5.0.0: {}
9602
9378
9603
9379
yargs-parser@21.1.1: {}
9604
9380
···
9614
9390
9615
9391
yocto-queue@0.1.0: {}
9616
9392
9617
-
zod-to-json-schema@3.24.5(zod@3.24.3):
9393
+
zod-validation-error@4.0.2(zod@4.2.1):
9618
9394
dependencies:
9619
-
zod: 3.24.3
9395
+
zod: 4.2.1
9620
9396
9621
-
zod@3.24.3: {}
9397
+
zod@4.2.1: {}
+19
-5
tsconfig.json
+19
-5
tsconfig.json
···
1
1
{
2
2
"compilerOptions": {
3
3
"target": "ES2017",
4
-
"lib": ["dom", "dom.iterable", "esnext"],
4
+
"lib": [
5
+
"dom",
6
+
"dom.iterable",
7
+
"esnext"
8
+
],
5
9
"allowJs": true,
6
10
"skipLibCheck": true,
7
11
"strict": true,
···
11
15
"moduleResolution": "bundler",
12
16
"resolveJsonModule": true,
13
17
"isolatedModules": true,
14
-
"jsx": "preserve",
18
+
"jsx": "react-jsx",
15
19
"incremental": true,
16
20
"plugins": [
17
21
{
···
19
23
}
20
24
],
21
25
"paths": {
22
-
"@/*": ["./*"]
26
+
"@/*": [
27
+
"./*"
28
+
]
23
29
}
24
30
},
25
-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
26
-
"exclude": ["node_modules"]
31
+
"include": [
32
+
"next-env.d.ts",
33
+
"**/*.ts",
34
+
"**/*.tsx",
35
+
".next/types/**/*.ts",
36
+
".next/dev/types/**/*.ts"
37
+
],
38
+
"exclude": [
39
+
"node_modules"
40
+
]
27
41
}