diff --git a/eslint.config.js b/eslint.config.js
index 1112254..3248554 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -1,10 +1,12 @@
import { config } from "@ryanccn/eslint-config";
export default config({
- globals: ["es2021", "node"],
+ globals: ["es2024", "node"],
reactHooks: true,
- next: false /* this currently doesn't work */,
+ next: true,
rules: {
"unicorn/import-style": "off",
+ "unicorn/prefer-global-this": "off",
+ "@next/next/no-img-element": "off",
},
});
diff --git a/next.config.js b/next.config.ts
similarity index 91%
rename from next.config.js
rename to next.config.ts
index 7a7645a..26a3290 100644
--- a/next.config.js
+++ b/next.config.ts
@@ -1,5 +1,6 @@
import { withPlausibleProxy } from "next-plausible";
import makeBundleAnalyzer from "@next/bundle-analyzer";
+import type { NextConfig } from "next";
const withBundleAnalyzer = makeBundleAnalyzer({
enabled: process.env.ANALYZE === "true",
@@ -52,8 +53,7 @@ const securityHeaders = [
},
];
-/** @type {import('next').NextConfig} */
-const nextConfig = withPlausibleProxy()(
+const nextConfig: NextConfig = withPlausibleProxy()(
withBundleAnalyzer({
reactStrictMode: true,
images: {
@@ -64,6 +64,7 @@ const nextConfig = withPlausibleProxy()(
optimizePackageImports: ["lucide-react", "@tremor/react", "date-fns"],
},
+ // eslint-disable-next-line @typescript-eslint/require-await
async headers() {
return [
...(process.env.NODE_ENV === "production"
@@ -94,6 +95,7 @@ const nextConfig = withPlausibleProxy()(
];
},
+ // eslint-disable-next-line @typescript-eslint/require-await
async redirects() {
return [
{
@@ -124,6 +126,7 @@ const nextConfig = withPlausibleProxy()(
];
},
+ // eslint-disable-next-line @typescript-eslint/require-await
async rewrites() {
return [
{
diff --git a/package.json b/package.json
index 1378046..99ef27f 100644
--- a/package.json
+++ b/package.json
@@ -22,10 +22,10 @@
"fast-xml-parser": "^4.5.0",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
- "lucide-react": "^0.447.0",
- "nanoid": "^5.0.7",
- "next": "^14.2.14",
- "next-auth": "^4.24.8",
+ "lucide-react": "^0.454.0",
+ "nanoid": "^5.0.8",
+ "next": "^15.0.2",
+ "next-auth": "^4.24.10",
"next-mdx-remote": "^5.0.0",
"next-plausible": "^3.12.2",
"next-themes": "^0.3.0",
@@ -34,39 +34,39 @@
"react-dom": "18.3.1",
"react-hot-toast": "^2.4.1",
"react-markdown": "^9.0.1",
- "tailwind-merge": "^2.5.3",
+ "tailwind-merge": "^2.5.4",
"valibot": "1.0.0-beta.0"
},
"devDependencies": {
- "@aws-sdk/credential-provider-web-identity": "^3.664.0",
+ "@aws-sdk/credential-provider-web-identity": "^3.679.0",
"@eslint/eslintrc": "^3.1.0",
- "@eslint/js": "^9.11.1",
+ "@eslint/js": "^9.13.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
- "@next/bundle-analyzer": "^14.2.14",
- "@next/eslint-plugin-next": "^14.2.14",
+ "@next/bundle-analyzer": "^15.0.2",
+ "@next/eslint-plugin-next": "^15.0.2",
"@ryanccn/eslint-config": "^0.4.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/file-saver": "^2.0.7",
- "@types/node": "22.7.4",
- "@types/react": "18.3.11",
- "@types/react-dom": "18.3.0",
- "@upstash/ratelimit": "^2.0.3",
- "@vercel/functions": "^1.4.1",
+ "@types/node": "22.8.4",
+ "@types/react": "18.3.12",
+ "@types/react-dom": "18.3.1",
+ "@upstash/ratelimit": "^2.0.4",
+ "@vercel/functions": "^1.5.0",
"@vercel/kv": "^3.0.0",
"autoprefixer": "^10.4.20",
- "discord-api-types": "^0.37.101",
- "eslint": "^9.11.1",
- "eslint-config-next": "14.2.14",
+ "discord-api-types": "^0.37.103",
+ "eslint": "^9.13.0",
+ "eslint-config-next": "15.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unicorn": "^56.0.0",
- "globals": "^15.10.0",
+ "globals": "^15.11.0",
"gray-matter": "^4.0.3",
"image-size": "^1.1.1",
"kleur": "^4.1.5",
- "mongodb": "^6.9.0",
+ "mongodb": "^6.10.0",
"node-fetch": "^3.3.2",
- "nodemailer": "^6.9.15",
+ "nodemailer": "^6.9.16",
"p-limit": "^6.1.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
@@ -75,10 +75,10 @@
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
- "tailwindcss": "^3.4.13",
- "tsx": "^4.19.1",
- "typescript": "^5.6.2",
- "typescript-eslint": "^8.8.0",
+ "tailwindcss": "^3.4.14",
+ "tsx": "^4.19.2",
+ "typescript": "^5.6.3",
+ "typescript-eslint": "^8.12.2",
"unified": "^11.0.5"
},
"pnpm": {
@@ -86,5 +86,5 @@
"@next-auth/mongodb-adapter@1.1.3": "patches/@next-auth__mongodb-adapter@1.1.3.patch"
}
},
- "packageManager": "pnpm@9.12.0+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca"
+ "packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 73d8407..c456e99 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -18,16 +18,16 @@ importers:
version: 2.2.5
'@next-auth/mongodb-adapter':
specifier: ^1.1.3
- version: 1.1.3(patch_hash=7eh2mvrdk736bmqtrzr6t5gdlm)(mongodb@6.9.0)(next-auth@4.24.8(next@14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nodemailer@6.9.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ version: 1.1.3(patch_hash=7eh2mvrdk736bmqtrzr6t5gdlm)(mongodb@6.10.0)(next-auth@4.24.10(next@15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nodemailer@6.9.16)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
'@radix-ui/react-dialog':
specifier: ^1.1.2
- version: 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@radix-ui/react-dropdown-menu':
specifier: ^2.1.2
- version: 2.1.2(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tremor/react':
specifier: ^3.18.3
- version: 3.18.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.13)
+ version: 3.18.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.14)
class-variance-authority:
specifier: ^0.7.0
version: 0.7.0
@@ -44,29 +44,29 @@ importers:
specifier: ^3.10.1
version: 3.10.1
lucide-react:
- specifier: ^0.447.0
- version: 0.447.0(react@18.3.1)
+ specifier: ^0.454.0
+ version: 0.454.0(react@18.3.1)
nanoid:
- specifier: ^5.0.7
- version: 5.0.7
+ specifier: ^5.0.8
+ version: 5.0.8
next:
- specifier: ^14.2.14
- version: 14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^15.0.2
+ version: 15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-auth:
- specifier: ^4.24.8
- version: 4.24.8(next@14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nodemailer@6.9.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^4.24.10
+ version: 4.24.10(next@15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nodemailer@6.9.16)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-mdx-remote:
specifier: ^5.0.0
- version: 5.0.0(@types/react@18.3.11)(react@18.3.1)
+ version: 5.0.0(@types/react@18.3.12)(react@18.3.1)
next-plausible:
specifier: ^3.12.2
- version: 3.12.2(next@14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 3.12.2(next@15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-themes:
specifier: ^0.3.0
version: 0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
nextjs-progressbar:
specifier: ^0.0.16
- version: 0.0.16(next@14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ version: 0.0.16(next@15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
react:
specifier: 18.3.1
version: 18.3.1
@@ -78,59 +78,59 @@ importers:
version: 2.4.1(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-markdown:
specifier: ^9.0.1
- version: 9.0.1(@types/react@18.3.11)(react@18.3.1)
+ version: 9.0.1(@types/react@18.3.12)(react@18.3.1)
tailwind-merge:
- specifier: ^2.5.3
- version: 2.5.3
+ specifier: ^2.5.4
+ version: 2.5.4
valibot:
specifier: 1.0.0-beta.0
- version: 1.0.0-beta.0(typescript@5.6.2)
+ version: 1.0.0-beta.0(typescript@5.6.3)
devDependencies:
'@aws-sdk/credential-provider-web-identity':
- specifier: ^3.664.0
- version: 3.664.0(@aws-sdk/client-sts@3.664.0)
+ specifier: ^3.679.0
+ version: 3.679.0(@aws-sdk/client-sts@3.664.0)
'@eslint/eslintrc':
specifier: ^3.1.0
version: 3.1.0
'@eslint/js':
- specifier: ^9.11.1
- version: 9.11.1
+ specifier: ^9.13.0
+ version: 9.13.0
'@microsoft/eslint-formatter-sarif':
specifier: ^3.1.0
version: 3.1.0
'@next/bundle-analyzer':
- specifier: ^14.2.14
- version: 14.2.14
+ specifier: ^15.0.2
+ version: 15.0.2
'@next/eslint-plugin-next':
- specifier: ^14.2.14
- version: 14.2.14
+ specifier: ^15.0.2
+ version: 15.0.2
'@ryanccn/eslint-config':
specifier: ^0.4.1
- version: 0.4.1(@eslint/eslintrc@3.1.0)(@eslint/js@9.11.1)(@next/eslint-plugin-next@14.2.14)(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint-config-prettier@9.1.0(eslint@9.11.1(jiti@2.1.2)))(eslint-plugin-react-hooks@4.6.2(eslint@9.11.1(jiti@2.1.2)))(eslint-plugin-unicorn@56.0.0(eslint@9.11.1(jiti@2.1.2)))(eslint@9.11.1(jiti@2.1.2))(typescript-eslint@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(typescript@5.6.2)
+ version: 0.4.1(@eslint/eslintrc@3.1.0)(@eslint/js@9.13.0)(@next/eslint-plugin-next@15.0.2)(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint-config-prettier@9.1.0(eslint@9.13.0(jiti@2.1.2)))(eslint-plugin-react-hooks@4.6.2(eslint@9.13.0(jiti@2.1.2)))(eslint-plugin-unicorn@56.0.0(eslint@9.13.0(jiti@2.1.2)))(eslint@9.13.0(jiti@2.1.2))(typescript-eslint@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(typescript@5.6.3)
'@tailwindcss/forms':
specifier: ^0.5.9
- version: 0.5.9(tailwindcss@3.4.13)
+ version: 0.5.9(tailwindcss@3.4.14)
'@tailwindcss/typography':
specifier: ^0.5.15
- version: 0.5.15(tailwindcss@3.4.13)
+ version: 0.5.15(tailwindcss@3.4.14)
'@types/file-saver':
specifier: ^2.0.7
version: 2.0.7
'@types/node':
- specifier: 22.7.4
- version: 22.7.4
+ specifier: 22.8.4
+ version: 22.8.4
'@types/react':
- specifier: 18.3.11
- version: 18.3.11
+ specifier: 18.3.12
+ version: 18.3.12
'@types/react-dom':
- specifier: 18.3.0
- version: 18.3.0
+ specifier: 18.3.1
+ version: 18.3.1
'@upstash/ratelimit':
- specifier: ^2.0.3
- version: 2.0.3
+ specifier: ^2.0.4
+ version: 2.0.4
'@vercel/functions':
- specifier: ^1.4.1
- version: 1.4.1(@aws-sdk/credential-provider-web-identity@3.664.0(@aws-sdk/client-sts@3.664.0))
+ specifier: ^1.5.0
+ version: 1.5.0(@aws-sdk/credential-provider-web-identity@3.679.0(@aws-sdk/client-sts@3.664.0))
'@vercel/kv':
specifier: ^3.0.0
version: 3.0.0
@@ -138,23 +138,23 @@ importers:
specifier: ^10.4.20
version: 10.4.20(postcss@8.4.47)
discord-api-types:
- specifier: ^0.37.101
- version: 0.37.101
+ specifier: ^0.37.103
+ version: 0.37.103
eslint:
- specifier: ^9.11.1
- version: 9.11.1(jiti@2.1.2)
+ specifier: ^9.13.0
+ version: 9.13.0(jiti@2.1.2)
eslint-config-next:
- specifier: 14.2.14
- version: 14.2.14(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
+ specifier: 15.0.2
+ version: 15.0.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
eslint-config-prettier:
specifier: ^9.1.0
- version: 9.1.0(eslint@9.11.1(jiti@2.1.2))
+ version: 9.1.0(eslint@9.13.0(jiti@2.1.2))
eslint-plugin-unicorn:
specifier: ^56.0.0
- version: 56.0.0(eslint@9.11.1(jiti@2.1.2))
+ version: 56.0.0(eslint@9.13.0(jiti@2.1.2))
globals:
- specifier: ^15.10.0
- version: 15.10.0
+ specifier: ^15.11.0
+ version: 15.11.0
gray-matter:
specifier: ^4.0.3
version: 4.0.3
@@ -165,14 +165,14 @@ importers:
specifier: ^4.1.5
version: 4.1.5
mongodb:
- specifier: ^6.9.0
- version: 6.9.0
+ specifier: ^6.10.0
+ version: 6.10.0
node-fetch:
specifier: ^3.3.2
version: 3.3.2
nodemailer:
- specifier: ^6.9.15
- version: 6.9.15
+ specifier: ^6.9.16
+ version: 6.9.16
p-limit:
specifier: ^6.1.0
version: 6.1.0
@@ -198,17 +198,17 @@ importers:
specifier: ^11.1.1
version: 11.1.1
tailwindcss:
- specifier: ^3.4.13
- version: 3.4.13
+ specifier: ^3.4.14
+ version: 3.4.14
tsx:
- specifier: ^4.19.1
- version: 4.19.1
+ specifier: ^4.19.2
+ version: 4.19.2
typescript:
- specifier: ^5.6.2
- version: 5.6.2
+ specifier: ^5.6.3
+ version: 5.6.3
typescript-eslint:
- specifier: ^8.8.0
- version: 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
+ specifier: ^8.12.2
+ version: 8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
unified:
specifier: ^11.0.5
version: 11.0.5
@@ -250,6 +250,10 @@ packages:
resolution: {integrity: sha512-QdfMpTpJqtpuFIFfUJEgJ+Rq/dO3I5iaViLKr9Zad4Gfi/GiRWTeXd4IvjcyRntB5GkyCak9RKMkxkECQavPJg==}
engines: {node: '>=16.0.0'}
+ '@aws-sdk/core@3.679.0':
+ resolution: {integrity: sha512-CS6PWGX8l4v/xyvX8RtXnBisdCa5+URzKd0L6GvHChype9qKUVxO/Gg6N/y43Hvg7MNWJt9FBPNWIxUB+byJwg==}
+ engines: {node: '>=16.0.0'}
+
'@aws-sdk/credential-provider-env@3.664.0':
resolution: {integrity: sha512-95rE+9Voaco0nmKJrXqfJAxSSkSWqlBy76zomiZrUrv7YuijQtHCW8jte6v6UHAFAaBzgFsY7QqBxs15u9SM7g==}
engines: {node: '>=16.0.0'}
@@ -282,6 +286,12 @@ packages:
peerDependencies:
'@aws-sdk/client-sts': ^3.664.0
+ '@aws-sdk/credential-provider-web-identity@3.679.0':
+ resolution: {integrity: sha512-a74tLccVznXCaBefWPSysUcLXYJiSkeUmQGtalNgJ1vGkE36W5l/8czFiiowdWdKWz7+x6xf0w+Kjkjlj42Ung==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ '@aws-sdk/client-sts': ^3.679.0
+
'@aws-sdk/middleware-host-header@3.664.0':
resolution: {integrity: sha512-4tCXJ+DZWTq38eLmFgnEmO8X4jfWpgPbWoCyVYpRHCPHq6xbrU65gfwS9jGx25L4YdEce641ChI9TKLryuUgRA==}
engines: {node: '>=16.0.0'}
@@ -312,12 +322,16 @@ packages:
resolution: {integrity: sha512-+GtXktvVgpreM2b+NJL9OqZGsOzHwlCUrO8jgQUvH/yA6Kd8QO2YFhQCp0C9sSzTteZJVqGBu8E0CQurxJHPbw==}
engines: {node: '>=16.0.0'}
+ '@aws-sdk/types@3.679.0':
+ resolution: {integrity: sha512-NwVq8YvInxQdJ47+zz4fH3BRRLC6lL+WLkvr242PVBbUOLRyK/lkwHlfiKUoeVIMyK5NF+up6TRg71t/8Bny6Q==}
+ engines: {node: '>=16.0.0'}
+
'@aws-sdk/util-endpoints@3.664.0':
resolution: {integrity: sha512-KrXoHz6zmAahVHkyWMRT+P6xJaxItgmklxEDrT+npsUB4d5C/lhw16Crcp9TDi828fiZK3GYKRAmmNhvmzvBNg==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/util-locate-window@3.568.0':
- resolution: {integrity: sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==}
+ '@aws-sdk/util-locate-window@3.679.0':
+ resolution: {integrity: sha512-zKTd48/ZWrCplkXpYDABI74rQlbR0DNHs8nH95htfSLj9/mWRSwaGptoxwcihaq/77vi/fl2X3y0a1Bo8bt7RA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-user-agent-browser@3.664.0':
@@ -356,14 +370,21 @@ packages:
resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.25.7':
- resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==}
+ '@babel/runtime@7.25.9':
+ resolution: {integrity: sha512-4zpTHZ9Cm6L9L+uIqghQX8ZXg8HKFcjYO3qHoO8zTmRm6HQUJ8SSJ+KRvbMBZn0EGVlT4DRYeQ/6hjlyXBh+Kg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/runtime@7.26.0':
+ resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
'@discoveryjs/json-ext@0.5.7':
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
+ '@emnapi/runtime@1.3.1':
+ resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
+
'@esbuild/aix-ppc64@0.23.1':
resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
engines: {node: '>=18'}
@@ -514,16 +535,26 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+ '@eslint-community/eslint-utils@4.4.1':
+ resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+
'@eslint-community/regexpp@4.11.1':
resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+
'@eslint/config-array@0.18.0':
resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.6.0':
- resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==}
+ '@eslint/core@0.7.0':
+ resolution: {integrity: sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@2.1.4':
@@ -538,16 +569,16 @@ packages:
resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@eslint/js@9.11.1':
- resolution: {integrity: sha512-/qu+TWz8WwPWc7/HcIJKi+c+MOm46GdVaSlTTQcaqaL53+GsoA6MxWp5PtTx48qbSP7ylM1Kn7nhvkugfJvRSA==}
+ '@eslint/js@9.13.0':
+ resolution: {integrity: sha512-IFLyoY4d72Z5y/6o/BazFBezupzI/taV8sGumxTAVw3lXG9A6md1Dc34T9s1FoD/an9pJH8RHbAxsaEbBed9lA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.4':
resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.2.0':
- resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==}
+ '@eslint/plugin-kit@0.2.1':
+ resolution: {integrity: sha512-HFZ4Mp26nbWk9d/BpvP0YNL6W4UoZF0VFcTw/aPPA8RpOxeFQgK+ClABGgAUXs9Y/RGX/l1vOmrqz1MQt9MNuw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@floating-ui/core@1.6.8':
@@ -590,6 +621,14 @@ packages:
peerDependencies:
tailwindcss: ^3.0
+ '@humanfs/core@0.19.0':
+ resolution: {integrity: sha512-2cbWIHbZVEweE853g8jymffCA+NCMiuqeECeBBLm8dg2oFdjuGJhgN4UAbI+6v0CKbbhvtXA4qV8YR5Ji86nmw==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanfs/node@0.16.5':
+ resolution: {integrity: sha512-KSPA4umqSG4LHYRodq31VDwKAvaTF4xmVlzM8Aeh4PlU1JQ3IG0wiA8C25d3RQ9nJyM3mBHyI53K06VVL/oFFg==}
+ engines: {node: '>=18.18.0'}
+
'@humanwhocodes/config-array@0.13.0':
resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
engines: {node: '>=10.10.0'}
@@ -603,13 +642,118 @@ packages:
resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
deprecated: Use @eslint/object-schema instead
- '@humanwhocodes/retry@0.3.0':
- resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
+ '@humanwhocodes/retry@0.3.1':
+ resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
engines: {node: '>=18.18'}
'@iarna/toml@2.2.5':
resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==}
+ '@img/sharp-darwin-arm64@0.33.5':
+ resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-darwin-x64@0.33.5':
+ resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linux-arm64@0.33.5':
+ resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linux-arm@0.33.5':
+ resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-linux-s390x@0.33.5':
+ resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-linux-x64@0.33.5':
+ resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-wasm32@0.33.5':
+ resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [wasm32]
+
+ '@img/sharp-win32-ia32@0.33.5':
+ resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@img/sharp-win32-x64@0.33.5':
+ resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [win32]
+
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
@@ -654,65 +798,59 @@ packages:
mongodb: ^5 || ^4
next-auth: ^4
- '@next/bundle-analyzer@14.2.14':
- resolution: {integrity: sha512-n5DZtp3sdKidoBZhY50/BAiqkLBj8YUR2oqR3hiEuV8B8+fZ05x59nBJnb6kPTMpV5ACC7hEXNRrRnfqJ4oSkQ==}
+ '@next/bundle-analyzer@15.0.2':
+ resolution: {integrity: sha512-bV566k+rDsaqXSUgHBof0iMIDx5DWtLx/98jvYtqb9x85e+WJzv+8cpDvbjtxQMf7nFC/LUkPmpruj1cOKfz4A==}
- '@next/env@14.2.14':
- resolution: {integrity: sha512-/0hWQfiaD5//LvGNgc8PjvyqV50vGK0cADYzaoOOGN8fxzBn3iAiaq3S0tCRnFBldq0LVveLcxCTi41ZoYgAgg==}
+ '@next/env@15.0.2':
+ resolution: {integrity: sha512-c0Zr0ModK5OX7D4ZV8Jt/wqoXtitLNPwUfG9zElCZztdaZyNVnN40rDXVZ/+FGuR4CcNV5AEfM6N8f+Ener7Dg==}
- '@next/eslint-plugin-next@14.2.14':
- resolution: {integrity: sha512-kV+OsZ56xhj0rnTn6HegyTGkoa16Mxjrpk7pjWumyB2P8JVQb8S9qtkjy/ye0GnTr4JWtWG4x/2qN40lKZ3iVQ==}
+ '@next/eslint-plugin-next@15.0.2':
+ resolution: {integrity: sha512-R9Jc7T6Ge0txjmqpPwqD8vx6onQjynO9JT73ArCYiYPvSrwYXepH/UY/WdKDY8JPWJl72sAE4iGMHPeQ5xdEWg==}
- '@next/swc-darwin-arm64@14.2.14':
- resolution: {integrity: sha512-bsxbSAUodM1cjYeA4o6y7sp9wslvwjSkWw57t8DtC8Zig8aG8V6r+Yc05/9mDzLKcybb6EN85k1rJDnMKBd9Gw==}
+ '@next/swc-darwin-arm64@15.0.2':
+ resolution: {integrity: sha512-GK+8w88z+AFlmt+ondytZo2xpwlfAR8U6CRwXancHImh6EdGfHMIrTSCcx5sOSBei00GyLVL0ioo1JLKTfprgg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-x64@14.2.14':
- resolution: {integrity: sha512-cC9/I+0+SK5L1k9J8CInahduTVWGMXhQoXFeNvF0uNs3Bt1Ub0Azb8JzTU9vNCr0hnaMqiWu/Z0S1hfKc3+dww==}
+ '@next/swc-darwin-x64@15.0.2':
+ resolution: {integrity: sha512-KUpBVxIbjzFiUZhiLIpJiBoelqzQtVZbdNNsehhUn36e2YzKHphnK8eTUW1s/4aPy5kH/UTid8IuVbaOpedhpw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@next/swc-linux-arm64-gnu@14.2.14':
- resolution: {integrity: sha512-RMLOdA2NU4O7w1PQ3Z9ft3PxD6Htl4uB2TJpocm+4jcllHySPkFaUIFacQ3Jekcg6w+LBaFvjSPthZHiPmiAUg==}
+ '@next/swc-linux-arm64-gnu@15.0.2':
+ resolution: {integrity: sha512-9J7TPEcHNAZvwxXRzOtiUvwtTD+fmuY0l7RErf8Yyc7kMpE47MIQakl+3jecmkhOoIyi/Rp+ddq7j4wG6JDskQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@14.2.14':
- resolution: {integrity: sha512-WgLOA4hT9EIP7jhlkPnvz49iSOMdZgDJVvbpb8WWzJv5wBD07M2wdJXLkDYIpZmCFfo/wPqFsFR4JS4V9KkQ2A==}
+ '@next/swc-linux-arm64-musl@15.0.2':
+ resolution: {integrity: sha512-BjH4ZSzJIoTTZRh6rG+a/Ry4SW0HlizcPorqNBixBWc3wtQtj4Sn9FnRZe22QqrPnzoaW0ctvSz4FaH4eGKMww==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-x64-gnu@14.2.14':
- resolution: {integrity: sha512-lbn7svjUps1kmCettV/R9oAvEW+eUI0lo0LJNFOXoQM5NGNxloAyFRNByYeZKL3+1bF5YE0h0irIJfzXBq9Y6w==}
+ '@next/swc-linux-x64-gnu@15.0.2':
+ resolution: {integrity: sha512-i3U2TcHgo26sIhcwX/Rshz6avM6nizrZPvrDVDY1bXcLH1ndjbO8zuC7RoHp0NSK7wjJMPYzm7NYL1ksSKFreA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@14.2.14':
- resolution: {integrity: sha512-7TcQCvLQ/hKfQRgjxMN4TZ2BRB0P7HwrGAYL+p+m3u3XcKTraUFerVbV3jkNZNwDeQDa8zdxkKkw2els/S5onQ==}
+ '@next/swc-linux-x64-musl@15.0.2':
+ resolution: {integrity: sha512-AMfZfSVOIR8fa+TXlAooByEF4OB00wqnms1sJ1v+iu8ivwvtPvnkwdzzFMpsK5jA2S9oNeeQ04egIWVb4QWmtQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-win32-arm64-msvc@14.2.14':
- resolution: {integrity: sha512-8i0Ou5XjTLEje0oj0JiI0Xo9L/93ghFtAUYZ24jARSeTMXLUx8yFIdhS55mTExq5Tj4/dC2fJuaT4e3ySvXU1A==}
+ '@next/swc-win32-arm64-msvc@15.0.2':
+ resolution: {integrity: sha512-JkXysDT0/hEY47O+Hvs8PbZAeiCQVxKfGtr4GUpNAhlG2E0Mkjibuo8ryGD29Qb5a3IOnKYNoZlh/MyKd2Nbww==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@next/swc-win32-ia32-msvc@14.2.14':
- resolution: {integrity: sha512-2u2XcSaDEOj+96eXpyjHjtVPLhkAFw2nlaz83EPeuK4obF+HmtDJHqgR1dZB7Gb6V/d55FL26/lYVd0TwMgcOQ==}
- engines: {node: '>= 10'}
- cpu: [ia32]
- os: [win32]
-
- '@next/swc-win32-x64-msvc@14.2.14':
- resolution: {integrity: sha512-MZom+OvZ1NZxuRovKt1ApevjiUJTcU2PmdJKL66xUPaJeRywnbGGRWUlaAOwunD6dX+pm83vj979NTC8QXjGWg==}
+ '@next/swc-win32-x64-msvc@15.0.2':
+ resolution: {integrity: sha512-foaUL0NqJY/dX0Pi/UcZm5zsmSk5MtP/gxx3xOPyREkMFN+CTjctPfu3QaqrQHinaKdPnMWPJDKt4VjDfTBe/Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -1073,31 +1211,34 @@ packages:
typescript-eslint:
optional: true
- '@smithy/abort-controller@3.1.5':
- resolution: {integrity: sha512-DhNPnqTqPoG8aZ5dWkFOgsuY+i0GQ3CI6hMmvCoduNsnU9gUZWZBwGfDQsTTB7NvFPkom1df7jMIJWU90kuXXg==}
+ '@smithy/abort-controller@3.1.6':
+ resolution: {integrity: sha512-0XuhuHQlEqbNQZp7QxxrFTdVWdwxch4vjxYgfInF91hZFkPxf9QDrdQka0KfxFMPqLNzSw0b95uGTrLliQUavQ==}
engines: {node: '>=16.0.0'}
- '@smithy/config-resolver@3.0.9':
- resolution: {integrity: sha512-5d9oBf40qC7n2xUoHmntKLdqsyTMMo/r49+eqSIjJ73eDfEtljAxEhzIQ3bkgXJtR3xiv7YzMT/3FF3ORkjWdg==}
+ '@smithy/config-resolver@3.0.10':
+ resolution: {integrity: sha512-Uh0Sz9gdUuz538nvkPiyv1DZRX9+D15EKDtnQP5rYVAzM/dnYk3P8cg73jcxyOitPgT3mE3OVj7ky7sibzHWkw==}
engines: {node: '>=16.0.0'}
- '@smithy/core@2.4.7':
- resolution: {integrity: sha512-goqMjX+IoVEnHZjYuzu8xwoZjoteMiLXsPHuXPBkWsGwu0o9c3nTjqkUlP1Ez/V8E501aOU7CJ3INk8mQcW2gw==}
+ '@smithy/core@2.5.1':
+ resolution: {integrity: sha512-DujtuDA7BGEKExJ05W5OdxCoyekcKT3Rhg1ZGeiUWaz2BJIWXjZmsG/DIP4W48GHno7AQwRsaCb8NcBgH3QZpg==}
engines: {node: '>=16.0.0'}
- '@smithy/credential-provider-imds@3.2.4':
- resolution: {integrity: sha512-S9bb0EIokfYEuar4kEbLta+ivlKCWOCFsLZuilkNy9i0uEUEHSi47IFLPaxqqCl+0ftKmcOTHayY5nQhAuq7+w==}
+ '@smithy/credential-provider-imds@3.2.5':
+ resolution: {integrity: sha512-4FTQGAsuwqTzVMmiRVTn0RR9GrbRfkP0wfu/tXWVHd2LgNpTY0uglQpIScXK4NaEyXbB3JmZt8gfVqO50lP8wg==}
engines: {node: '>=16.0.0'}
'@smithy/fetch-http-handler@3.2.9':
resolution: {integrity: sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A==}
- '@smithy/hash-node@3.0.7':
- resolution: {integrity: sha512-SAGHN+QkrwcHFjfWzs/czX94ZEjPJ0CrWJS3M43WswDXVEuP4AVy9gJ3+AF6JQHZD13bojmuf/Ap/ItDeZ+Qfw==}
+ '@smithy/fetch-http-handler@4.0.0':
+ resolution: {integrity: sha512-MLb1f5tbBO2X6K4lMEKJvxeLooyg7guq48C2zKr4qM7F2Gpkz4dc+hdSgu77pCJ76jVqFBjZczHYAs6dp15N+g==}
+
+ '@smithy/hash-node@3.0.8':
+ resolution: {integrity: sha512-tlNQYbfpWXHimHqrvgo14DrMAgUBua/cNoz9fMYcDmYej7MAmUcjav/QKQbFc3NrcPxeJ7QClER4tWZmfwoPng==}
engines: {node: '>=16.0.0'}
- '@smithy/invalid-dependency@3.0.7':
- resolution: {integrity: sha512-Bq00GsAhHeYSuZX8Kpu4sbI9agH2BNYnqUmmbTGWOhki9NVsWn2jFr896vvoTMH8KAjNX/ErC/8t5QHuEXG+IA==}
+ '@smithy/invalid-dependency@3.0.8':
+ resolution: {integrity: sha512-7Qynk6NWtTQhnGTTZwks++nJhQ1O54Mzi7fz4PqZOiYXb4Z1Flpb2yRvdALoggTS8xjtohWUM+RygOtB30YL3Q==}
'@smithy/is-array-buffer@2.2.0':
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
@@ -1107,72 +1248,72 @@ packages:
resolution: {integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-content-length@3.0.9':
- resolution: {integrity: sha512-t97PidoGElF9hTtLCrof32wfWMqC5g2SEJNxaVH3NjlatuNGsdxXRYO/t+RPnxA15RpYiS0f+zG7FuE2DeGgjA==}
+ '@smithy/middleware-content-length@3.0.10':
+ resolution: {integrity: sha512-T4dIdCs1d/+/qMpwhJ1DzOhxCZjZHbHazEPJWdB4GDi2HjIZllVzeBEcdJUN0fomV8DURsgOyrbEUzg3vzTaOg==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-endpoint@3.1.4':
- resolution: {integrity: sha512-/ChcVHekAyzUbyPRI8CzPPLj6y8QRAfJngWcLMgsWxKVzw/RzBV69mSOzJYDD3pRwushA1+5tHtPF8fjmzBnrQ==}
+ '@smithy/middleware-endpoint@3.2.1':
+ resolution: {integrity: sha512-wWO3xYmFm6WRW8VsEJ5oU6h7aosFXfszlz3Dj176pTij6o21oZnzkCLzShfmRaaCHDkBXWBdO0c4sQAvLFP6zA==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-retry@3.0.22':
- resolution: {integrity: sha512-svEN7O2Tf7BoaBkPzX/8AE2Bv7p16d9/ulFAD1Gmn5g19iMqNk1WIkMxAY7SpB9/tVtUwKx0NaIsBRl88gumZA==}
+ '@smithy/middleware-retry@3.0.25':
+ resolution: {integrity: sha512-m1F70cPaMBML4HiTgCw5I+jFNtjgz5z5UdGnUbG37vw6kh4UvizFYjqJGHvicfgKMkDL6mXwyPp5mhZg02g5sg==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-serde@3.0.7':
- resolution: {integrity: sha512-VytaagsQqtH2OugzVTq4qvjkLNbWehHfGcGr0JLJmlDRrNCeZoWkWsSOw1nhS/4hyUUWF/TLGGml4X/OnEep5g==}
+ '@smithy/middleware-serde@3.0.8':
+ resolution: {integrity: sha512-Xg2jK9Wc/1g/MBMP/EUn2DLspN8LNt+GMe7cgF+Ty3vl+Zvu+VeZU5nmhveU+H8pxyTsjrAkci8NqY6OuvZnjA==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-stack@3.0.7':
- resolution: {integrity: sha512-EyTbMCdqS1DoeQsO4gI7z2Gzq1MoRFAeS8GkFYIwbedB7Lp5zlLHJdg+56tllIIG5Hnf9ZWX48YKSHlsKvugGA==}
+ '@smithy/middleware-stack@3.0.8':
+ resolution: {integrity: sha512-d7ZuwvYgp1+3682Nx0MD3D/HtkmZd49N3JUndYWQXfRZrYEnCWYc8BHcNmVsPAp9gKvlurdg/mubE6b/rPS9MA==}
engines: {node: '>=16.0.0'}
- '@smithy/node-config-provider@3.1.8':
- resolution: {integrity: sha512-E0rU0DglpeJn5ge64mk8wTGEXcQwmpUTY5Zr7IzTpDLmHKiIamINERNZYrPQjg58Ck236sEKSwRSHA4CwshU6Q==}
+ '@smithy/node-config-provider@3.1.9':
+ resolution: {integrity: sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==}
engines: {node: '>=16.0.0'}
- '@smithy/node-http-handler@3.2.4':
- resolution: {integrity: sha512-49reY3+JgLMFNm7uTAKBWiKCA6XSvkNp9FqhVmusm2jpVnHORYFeFZ704LShtqWfjZW/nhX+7Iexyb6zQfXYIQ==}
+ '@smithy/node-http-handler@3.2.5':
+ resolution: {integrity: sha512-PkOwPNeKdvX/jCpn0A8n9/TyoxjGZB8WVoJmm9YzsnAgggTj4CrjpRHlTQw7dlLZ320n1mY1y+nTRUDViKi/3w==}
engines: {node: '>=16.0.0'}
- '@smithy/property-provider@3.1.7':
- resolution: {integrity: sha512-QfzLi1GPMisY7bAM5hOUqBdGYnY5S2JAlr201pghksrQv139f8iiiMalXtjczIP5f6owxFn3MINLNUNvUkgtPw==}
+ '@smithy/property-provider@3.1.8':
+ resolution: {integrity: sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==}
engines: {node: '>=16.0.0'}
- '@smithy/protocol-http@4.1.4':
- resolution: {integrity: sha512-MlWK8eqj0JlpZBnWmjQLqmFp71Ug00P+m72/1xQB3YByXD4zZ+y9N4hYrR0EDmrUCZIkyATWHOXFgtavwGDTzQ==}
+ '@smithy/protocol-http@4.1.5':
+ resolution: {integrity: sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==}
engines: {node: '>=16.0.0'}
- '@smithy/querystring-builder@3.0.7':
- resolution: {integrity: sha512-65RXGZZ20rzqqxTsChdqSpbhA6tdt5IFNgG6o7e1lnPVLCe6TNWQq4rTl4N87hTDD8mV4IxJJnvyE7brbnRkQw==}
+ '@smithy/querystring-builder@3.0.8':
+ resolution: {integrity: sha512-btYxGVqFUARbUrN6VhL9c3dnSviIwBYD9Rz1jHuN1hgh28Fpv2xjU1HeCeDJX68xctz7r4l1PBnFhGg1WBBPuA==}
engines: {node: '>=16.0.0'}
- '@smithy/querystring-parser@3.0.7':
- resolution: {integrity: sha512-Fouw4KJVWqqUVIu1gZW8BH2HakwLz6dvdrAhXeXfeymOBrZw+hcqaWs+cS1AZPVp4nlbeIujYrKA921ZW2WMPA==}
+ '@smithy/querystring-parser@3.0.8':
+ resolution: {integrity: sha512-BtEk3FG7Ks64GAbt+JnKqwuobJNX8VmFLBsKIwWr1D60T426fGrV2L3YS5siOcUhhp6/Y6yhBw1PSPxA5p7qGg==}
engines: {node: '>=16.0.0'}
- '@smithy/service-error-classification@3.0.7':
- resolution: {integrity: sha512-91PRkTfiBf9hxkIchhRKJfl1rsplRDyBnmyFca3y0Z3x/q0JJN480S83LBd8R6sBCkm2bBbqw2FHp0Mbh+ecSA==}
+ '@smithy/service-error-classification@3.0.8':
+ resolution: {integrity: sha512-uEC/kCCFto83bz5ZzapcrgGqHOh/0r69sZ2ZuHlgoD5kYgXJEThCoTuw/y1Ub3cE7aaKdznb+jD9xRPIfIwD7g==}
engines: {node: '>=16.0.0'}
- '@smithy/shared-ini-file-loader@3.1.8':
- resolution: {integrity: sha512-0NHdQiSkeGl0ICQKcJQ2lCOKH23Nb0EaAa7RDRId6ZqwXkw4LJyIyZ0t3iusD4bnKYDPLGy2/5e2rfUhrt0Acw==}
+ '@smithy/shared-ini-file-loader@3.1.9':
+ resolution: {integrity: sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==}
engines: {node: '>=16.0.0'}
- '@smithy/signature-v4@4.2.0':
- resolution: {integrity: sha512-LafbclHNKnsorMgUkKm7Tk7oJ7xizsZ1VwqhGKqoCIrXh4fqDDp73fK99HOEEgcsQbtemmeY/BPv0vTVYYUNEQ==}
+ '@smithy/signature-v4@4.2.1':
+ resolution: {integrity: sha512-NsV1jF4EvmO5wqmaSzlnTVetemBS3FZHdyc5CExbDljcyJCEEkJr8ANu2JvtNbVg/9MvKAWV44kTrGS+Pi4INg==}
engines: {node: '>=16.0.0'}
- '@smithy/smithy-client@3.3.6':
- resolution: {integrity: sha512-qdH+mvDHgq1ss6mocyIl2/VjlWXew7pGwZQydwYJczEc22HZyX3k8yVPV9aZsbYbssHPvMDRA5rfBDrjQUbIIw==}
+ '@smithy/smithy-client@3.4.2':
+ resolution: {integrity: sha512-dxw1BDxJiY9/zI3cBqfVrInij6ShjpV4fmGHesGZZUiP9OSE/EVfdwdRz0PgvkEvrZHpsj2htRaHJfftE8giBA==}
engines: {node: '>=16.0.0'}
- '@smithy/types@3.5.0':
- resolution: {integrity: sha512-QN0twHNfe8mNJdH9unwsCK13GURU7oEAZqkBI+rsvpv1jrmserO+WnLE7jidR9W/1dxwZ0u/CB01mV2Gms/K2Q==}
+ '@smithy/types@3.6.0':
+ resolution: {integrity: sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==}
engines: {node: '>=16.0.0'}
- '@smithy/url-parser@3.0.7':
- resolution: {integrity: sha512-70UbSSR8J97c1rHZOWhl+VKiZDqHWxs/iW8ZHrHp5fCCPLSBE7GcUlUvKSle3Ca+J9LLbYCj/A79BxztBvAfpA==}
+ '@smithy/url-parser@3.0.8':
+ resolution: {integrity: sha512-4FdOhwpTW7jtSFWm7SpfLGKIBC9ZaTKG5nBF0wK24aoQKQyDIKUw3+KFWCQ9maMzrgTJIuOvOnsV2lLGW5XjTg==}
'@smithy/util-base64@3.0.0':
resolution: {integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==}
@@ -1197,32 +1338,32 @@ packages:
resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==}
engines: {node: '>=16.0.0'}
- '@smithy/util-defaults-mode-browser@3.0.22':
- resolution: {integrity: sha512-WKzUxNsOun5ETwEOrvooXeI1mZ8tjDTOcN4oruELWHhEYDgQYWwxZupURVyovcv+h5DyQT/DzK5nm4ZoR/Tw5Q==}
+ '@smithy/util-defaults-mode-browser@3.0.25':
+ resolution: {integrity: sha512-fRw7zymjIDt6XxIsLwfJfYUfbGoO9CmCJk6rjJ/X5cd20+d2Is7xjU5Kt/AiDt6hX8DAf5dztmfP5O82gR9emA==}
engines: {node: '>= 10.0.0'}
- '@smithy/util-defaults-mode-node@3.0.22':
- resolution: {integrity: sha512-hUsciOmAq8fsGwqg4+pJfNRmrhfqMH4Y9UeGcgeUl88kPAoYANFATJqCND+O4nUvwp5TzsYwGpqpcBKyA8LUUg==}
+ '@smithy/util-defaults-mode-node@3.0.25':
+ resolution: {integrity: sha512-H3BSZdBDiVZGzt8TG51Pd2FvFO0PAx/A0mJ0EH8a13KJ6iUCdYnw/Dk/MdC1kTd0eUuUGisDFaxXVXo4HHFL1g==}
engines: {node: '>= 10.0.0'}
- '@smithy/util-endpoints@2.1.3':
- resolution: {integrity: sha512-34eACeKov6jZdHqS5hxBMJ4KyWKztTMulhuQ2UdOoP6vVxMLrOKUqIXAwJe/wiWMhXhydLW664B02CNpQBQ4Aw==}
+ '@smithy/util-endpoints@2.1.4':
+ resolution: {integrity: sha512-kPt8j4emm7rdMWQyL0F89o92q10gvCUa6sBkBtDJ7nV2+P7wpXczzOfoDJ49CKXe5CCqb8dc1W+ZdLlrKzSAnQ==}
engines: {node: '>=16.0.0'}
'@smithy/util-hex-encoding@3.0.0':
resolution: {integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==}
engines: {node: '>=16.0.0'}
- '@smithy/util-middleware@3.0.7':
- resolution: {integrity: sha512-OVA6fv/3o7TMJTpTgOi1H5OTwnuUa8hzRzhSFDtZyNxi6OZ70L/FHattSmhE212I7b6WSOJAAmbYnvcjTHOJCA==}
+ '@smithy/util-middleware@3.0.8':
+ resolution: {integrity: sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==}
engines: {node: '>=16.0.0'}
- '@smithy/util-retry@3.0.7':
- resolution: {integrity: sha512-nh1ZO1vTeo2YX1plFPSe/OXaHkLAHza5jpokNiiKX2M5YpNUv6RxGJZhpfmiR4jSvVHCjIDmILjrxKmP+/Ghug==}
+ '@smithy/util-retry@3.0.8':
+ resolution: {integrity: sha512-TCEhLnY581YJ+g1x0hapPz13JFqzmh/pMWL2KEFASC51qCfw3+Y47MrTmea4bUE5vsdxQ4F6/KFbUeSz22Q1ow==}
engines: {node: '>=16.0.0'}
- '@smithy/util-stream@3.1.9':
- resolution: {integrity: sha512-7YAR0Ub3MwTMjDfjnup4qa6W8gygZMxikBhFMPESi6ASsl/rZJhwLpF/0k9TuezScCojsM0FryGdz4LZtjKPPQ==}
+ '@smithy/util-stream@3.2.1':
+ resolution: {integrity: sha512-R3ufuzJRxSJbE58K9AEnL/uSZyVdHzud9wLS8tIbXclxKzoe09CRohj2xV8wpx5tj7ZbiJaKYcutMm1eYgz/0A==}
engines: {node: '>=16.0.0'}
'@smithy/util-uri-escape@3.0.0':
@@ -1240,8 +1381,8 @@ packages:
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
- '@swc/helpers@0.5.5':
- resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
+ '@swc/helpers@0.5.13':
+ resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==}
'@tailwindcss/forms@0.5.9':
resolution: {integrity: sha512-tM4XVr2+UVTxXJzey9Twx48c1gcxFStqn1pQz0tRsX8o3DvxhN5oY5pvyAbUx7VTaZxpej4Zzvc6h+1RJBzpIg==}
@@ -1337,8 +1478,8 @@ packages:
'@types/ms@0.7.34':
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
- '@types/node@22.7.4':
- resolution: {integrity: sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==}
+ '@types/node@22.8.4':
+ resolution: {integrity: sha512-SpNNxkftTJOPk0oN+y2bIqurEXHTA2AOZ3EJDDKeJ5VzkvvORSvmQXGQarcOzWV1ac7DCaPBEdMDxBsM+d8jWw==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -1349,11 +1490,11 @@ packages:
'@types/prop-types@15.7.13':
resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
- '@types/react-dom@18.3.0':
- resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
+ '@types/react-dom@18.3.1':
+ resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
- '@types/react@18.3.11':
- resolution: {integrity: sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==}
+ '@types/react@18.3.12':
+ resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==}
'@types/unist@2.0.10':
resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
@@ -1373,8 +1514,8 @@ packages:
'@types/whatwg-url@11.0.5':
resolution: {integrity: sha512-coYR071JRaHa+xoEvvYqvnIHaVqaYrLPbsufM9BF63HkwI5Lgmy2QR8Q5K/lYDYo5AK82wOvSOS0UsLTpTG7uQ==}
- '@typescript-eslint/eslint-plugin@8.8.0':
- resolution: {integrity: sha512-wORFWjU30B2WJ/aXBfOm1LX9v9nyt9D3jsSOxC3cCaTQGCW5k4jNpmjFv3U7p/7s4yvdjHzwtv2Sd2dOyhjS0A==}
+ '@typescript-eslint/eslint-plugin@8.12.2':
+ resolution: {integrity: sha512-gQxbxM8mcxBwaEmWdtLCIGLfixBMHhQjBqR8sVWNTPpcj45WlYL2IObS/DNMLH1DBP0n8qz+aiiLTGfopPEebw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
@@ -1384,8 +1525,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@8.8.0':
- resolution: {integrity: sha512-uEFUsgR+tl8GmzmLjRqz+VrDv4eoaMqMXW7ruXfgThaAShO9JTciKpEsB+TvnfFfbg5IpujgMXVV36gOJRLtZg==}
+ '@typescript-eslint/parser@8.12.2':
+ resolution: {integrity: sha512-MrvlXNfGPLH3Z+r7Tk+Z5moZAc0dzdVjTgUgwsdGweH7lydysQsnSww3nAmsq8blFuRD5VRlAr9YdEFw3e6PBw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -1394,12 +1535,16 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/scope-manager@8.12.2':
+ resolution: {integrity: sha512-gPLpLtrj9aMHOvxJkSbDBmbRuYdtiEbnvO25bCMza3DhMjTQw0u7Y1M+YR5JPbMsXXnSPuCf5hfq0nEkQDL/JQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/scope-manager@8.8.0':
resolution: {integrity: sha512-EL8eaGC6gx3jDd8GwEFEV091210U97J0jeEHrAYvIYosmEGet4wJ+g0SYmLu+oRiAwbSA5AVrt6DxLHfdd+bUg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.8.0':
- resolution: {integrity: sha512-IKwJSS7bCqyCeG4NVGxnOP6lLT9Okc3Zj8hLO96bpMkJab+10HIfJbMouLrlpyOr3yrQ1cA413YPFiGd1mW9/Q==}
+ '@typescript-eslint/type-utils@8.12.2':
+ resolution: {integrity: sha512-bwuU4TAogPI+1q/IJSKuD4shBLc/d2vGcRT588q+jzayQyjVK2X6v/fbR4InY2U2sgf8MEvVCqEWUzYzgBNcGQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -1407,10 +1552,23 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/types@8.12.2':
+ resolution: {integrity: sha512-VwDwMF1SZ7wPBUZwmMdnDJ6sIFk4K4s+ALKLP6aIQsISkPv8jhiw65sAK6SuWODN/ix+m+HgbYDkH+zLjrzvOA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/types@8.8.0':
resolution: {integrity: sha512-QJwc50hRCgBd/k12sTykOJbESe1RrzmX6COk8Y525C9l7oweZ+1lw9JiU56im7Amm8swlz00DRIlxMYLizr2Vw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/typescript-estree@8.12.2':
+ resolution: {integrity: sha512-mME5MDwGe30Pq9zKPvyduyU86PH7aixwqYR2grTglAdB+AN8xXQ1vFGpYaUSJ5o5P/5znsSBeNcs5g5/2aQwow==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/typescript-estree@8.8.0':
resolution: {integrity: sha512-ZaMJwc/0ckLz5DaAZ+pNLmHv8AMVGtfWxZe/x2JVEkD5LnmhWiQMMcYT7IY7gkdJuzJ9P14fRy28lUrlDSWYdw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1420,12 +1578,22 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/utils@8.12.2':
+ resolution: {integrity: sha512-UTTuDIX3fkfAz6iSVa5rTuSfWIYZ6ATtEocQ/umkRSyC9O919lbZ8dcH7mysshrCdrAM03skJOEYaBugxN+M6A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+
'@typescript-eslint/utils@8.8.0':
resolution: {integrity: sha512-QE2MgfOTem00qrlPgyByaCHay9yb1+9BjnMFnSFkUKQfu7adBXDTnCAivURnuPPAG/qiB+kzKkZKmKfaMT0zVg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
+ '@typescript-eslint/visitor-keys@8.12.2':
+ resolution: {integrity: sha512-PChz8UaKQAVNHghsHcPyx1OMHoFRUEA7rJSK/mDhdq85bk+PLsUHUBqTQTFt18VJZbmxBovM65fezlheQRsSDA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/visitor-keys@8.8.0':
resolution: {integrity: sha512-8mq51Lx6Hpmd7HnA2fcHQo3YgfX1qbccxQOgZcb4tvasu//zXRaA1j5ZRFeCw/VRAdFi4mRM9DnZw0Nu0Q2d1g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1437,17 +1605,17 @@ packages:
resolution: {integrity: sha512-7qJHGxpQgQr9/vmeS1PktEwvNAF7TI4iJDi8Pu2CFZ9YUGHZH4fOP5TfYlZ4aVxfopnELiE4BS4FBjyK7V1/xQ==}
engines: {node: '>=16.0.0'}
- '@upstash/ratelimit@2.0.3':
- resolution: {integrity: sha512-BMUpZPZ9IMwrUwohw0HoVAwjBRo5SDb0riAxfCGrLbutuZTPiVagh017Cm3GfhMqwUWLOp0xJQxTCXp812UJVQ==}
-
- '@upstash/redis@1.34.0':
- resolution: {integrity: sha512-TrXNoJLkysIl8SBc4u9bNnyoFYoILpCcFJcLyWCccb/QSUmaVKdvY0m5diZqc3btExsapcMbaw/s/wh9Sf1pJw==}
+ '@upstash/ratelimit@2.0.4':
+ resolution: {integrity: sha512-rKZWlZXXK93Xv1cz5/eCbGN4ZbvN3dWbjT2V6Of/3vqQGzd3TnD/xS3Okxp8EoG7L4MeLpy6UsRuMKGnuDZFAQ==}
'@upstash/redis@1.34.1':
resolution: {integrity: sha512-mammyRf9BTVTFJmyWyTHb0UL0J74vuQGL5yQIIbqFHVa2NPMB+adOZw5ZqpRQb/0AzzVBCrbok/vzBynQ1abiw==}
- '@vercel/functions@1.4.1':
- resolution: {integrity: sha512-987mKpoDCI18x2rDjrDbiuGOtxDMK/UhfhDZoN3A2SAt40BMaj8HEKwVqL6fOian5j/3RZcOuJnMOpatQGgpjw==}
+ '@upstash/redis@1.34.3':
+ resolution: {integrity: sha512-VT25TyODGy/8ljl7GADnJoMmtmJ1F8d84UXfGonRRF8fWYJz7+2J6GzW+a6ETGtk4OyuRTt7FRSvFG5GvrfSdQ==}
+
+ '@vercel/functions@1.5.0':
+ resolution: {integrity: sha512-ub3ptVeOsx8UPgiTv9+rpQJqmF7VG8QIzguBZo0E0VRAyJliB8bt1ooB9Wrh3333dKzMNS8NMe3iFtf6OPUP3A==}
engines: {node: '>= 16'}
peerDependencies:
'@aws-sdk/credential-provider-web-identity': '*'
@@ -1473,13 +1641,18 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.12.0:
- resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
+ acorn@8.12.1:
+ resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.12.1:
- resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
+ acorn@8.13.0:
+ resolution: {integrity: sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -1526,8 +1699,9 @@ packages:
resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
engines: {node: '>=10'}
- aria-query@5.1.3:
- resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
+ aria-query@5.3.2:
+ resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
+ engines: {node: '>= 0.4'}
array-buffer-byte-length@1.0.1:
resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
@@ -1579,8 +1753,8 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
- axe-core@4.10.0:
- resolution: {integrity: sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==}
+ axe-core@4.10.2:
+ resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
engines: {node: '>=4'}
axobject-query@4.1.0:
@@ -1620,8 +1794,8 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- bson@6.8.0:
- resolution: {integrity: sha512-iOJg8pr7wq2tg/zSlCCHMi3hMm5JTOxLTagf3zxhcenHsFp+c6uOs6K7W5UE7A4QIJGtqh/ZovFNMP4mOPJynQ==}
+ bson@6.9.0:
+ resolution: {integrity: sha512-X9hJeyeM0//Fus+0pc5dSUMhhrrmWwQUtdavaQeF3Ta6m69matZkGWV/MrBcnwUeLC8W9kwwc2hfkZgUuCX3Ig==}
engines: {node: '>=16.20.1'}
builtin-modules@3.3.0:
@@ -1650,6 +1824,9 @@ packages:
caniuse-lite@1.0.30001666:
resolution: {integrity: sha512-gD14ICmoV5ZZM1OdzPWmpx+q4GyefaK06zi8hmfHV5xe4/2nOQX3+Dw5o+fSqOws2xVwL9j+anOPFwHzdEdV4g==}
+ caniuse-lite@1.0.30001675:
+ resolution: {integrity: sha512-/wV1bQwPrkLiQMjaJF5yUMVM/VdRPOCU8QZ+PmG6uW6DvYSrNY1bpwHI/3mOcUosLaJCzYDi5o91IQB51ft6cg==}
+
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -1715,6 +1892,13 @@ packages:
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ color-string@1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+
+ color@4.2.3:
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ engines: {node: '>=12.5.0'}
+
comma-separated-tokens@2.0.3:
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
@@ -1732,8 +1916,8 @@ packages:
confbox@0.1.7:
resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
- cookie@0.5.0:
- resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
+ cookie@0.7.2:
+ resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
engines: {node: '>= 0.6'}
core-js-compat@3.38.1:
@@ -1861,10 +2045,6 @@ packages:
decode-named-character-reference@1.0.2:
resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
- deep-equal@2.2.3:
- resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
- engines: {node: '>= 0.4'}
-
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
@@ -1880,6 +2060,10 @@ packages:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
+ detect-libc@2.0.3:
+ resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
+ engines: {node: '>=8'}
+
detect-node-es@1.1.0:
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
@@ -1889,8 +2073,8 @@ packages:
didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
- discord-api-types@0.37.101:
- resolution: {integrity: sha512-2wizd94t7G3A8U5Phr3AiuL4gSvhqistDwWnlk1VLTit8BI1jWUncFqFQNdPbHqS3661+Nx/iEyIwtVjPuBP3w==}
+ discord-api-types@0.37.103:
+ resolution: {integrity: sha512-r+qitxXKe2l6KFw5odPdZSSqdEou+7eNC7BfbZ7mny5Me/K06wCTeKUMVeH/YsI9+4QQudskeQ307kr/7ppQ1A==}
dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
@@ -1943,11 +2127,8 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-get-iterator@1.1.3:
- resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
-
- es-iterator-helpers@1.0.19:
- resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
+ es-iterator-helpers@1.1.0:
+ resolution: {integrity: sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==}
engines: {node: '>= 0.4'}
es-object-atoms@1.0.0:
@@ -1982,10 +2163,10 @@ packages:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- eslint-config-next@14.2.14:
- resolution: {integrity: sha512-TXwyjGICAlWC9O0OufS3koTsBKQH8l1xt3SY/aDuvtKHIwjTHplJKWVb1WOEX0OsDaxGbFXmfD2EY1sNfG0Y/w==}
+ eslint-config-next@15.0.2:
+ resolution: {integrity: sha512-N8o6cyUXzlMmQbdc2Kc83g1qomFi3ITqrAZfubipVKET2uR2mCStyGRcx/r8WiAIVMul2KfwRiCHBkTpBvGBmA==}
peerDependencies:
- eslint: ^7.23.0 || ^8.0.0
+ eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
typescript: '>=3.3.1'
peerDependenciesMeta:
typescript:
@@ -2048,8 +2229,8 @@ packages:
'@typescript-eslint/parser':
optional: true
- eslint-plugin-jsx-a11y@6.10.0:
- resolution: {integrity: sha512-ySOHvXX8eSN6zz8Bywacm7CvGNhUtdjvqfQDVe6020TUK34Cywkw7m0KsCCk1Qtm9G1FayfTN1/7mMYnYO2Bhg==}
+ eslint-plugin-jsx-a11y@6.10.2:
+ resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
@@ -2060,8 +2241,14 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- eslint-plugin-react@7.37.1:
- resolution: {integrity: sha512-xwTnwDqzbDRA8uJ7BMxPs/EXRB3i8ZfnOIp8BsxEQkT0nHPp+WWceqGgo6rKb9ctNi8GJLDT4Go5HAWELa/WMg==}
+ eslint-plugin-react-hooks@5.0.0:
+ resolution: {integrity: sha512-hIOwI+5hYGpJEc4uPRmz2ulCjAGD/N13Lukkh8cLV0i2IRk/bdZDYjgLVHj+U9Z704kLIdIO6iueGvxNur0sgw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
+
+ eslint-plugin-react@7.37.2:
+ resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
@@ -2091,10 +2278,11 @@ packages:
eslint@8.57.1:
resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
hasBin: true
- eslint@9.11.1:
- resolution: {integrity: sha512-MobhYKIoAO1s1e4VUrgx1l1Sk2JBR/Gqjjgw8+mfgoLE2xwsHur4gdfTxyTgShrhvdVFTaJSgMiQBl1jv/AWxg==}
+ eslint@9.13.0:
+ resolution: {integrity: sha512-EYZK6SX6zjFHST/HRytOdA/zE72Cq/bfw45LSyuwrdvcclb/gqV8RRQxywOBEWO2+WDpva6UZa4CcDeJKzUCFA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -2171,6 +2359,10 @@ packages:
resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==}
engines: {node: '>=6.0.0'}
+ fast-glob@3.3.1:
+ resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
+ engines: {node: '>=8.6.0'}
+
fast-glob@3.3.2:
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
@@ -2285,11 +2477,6 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
- glob@10.3.10:
- resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
- engines: {node: '>=16 || 14 >=14.17'}
- hasBin: true
-
glob@10.4.5:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
@@ -2306,8 +2493,8 @@ packages:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- globals@15.10.0:
- resolution: {integrity: sha512-tqFIbz83w4Y5TCbtgjZjApohbuh7K9BxGYFm7ifwDR240tvdb7P9x+/9VvUKlmkPoiknoJtanI8UOrqxS3a7lQ==}
+ globals@15.11.0:
+ resolution: {integrity: sha512-yeyNSjdbyVaWurlwCpcA6XNBrHTMIeDdj0/hnvX/OLJ9ekOXYbLsLinH/MucQyGvNnXhidTdNhTtJaffL2sMfw==}
engines: {node: '>=18'}
globalthis@1.0.4:
@@ -2450,10 +2637,6 @@ packages:
is-alphanumerical@2.0.1:
resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
- is-arguments@1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
- engines: {node: '>= 0.4'}
-
is-array-buffer@3.0.4:
resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
engines: {node: '>= 0.4'}
@@ -2461,6 +2644,9 @@ packages:
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ is-arrayish@0.3.2:
+ resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+
is-async-function@2.0.0:
resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
engines: {node: '>= 0.4'}
@@ -2603,12 +2789,9 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- iterator.prototype@1.1.2:
- resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
-
- jackspeak@2.3.6:
- resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
- engines: {node: '>=14'}
+ iterator.prototype@1.1.3:
+ resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==}
+ engines: {node: '>= 0.4'}
jackspeak@3.4.3:
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
@@ -2745,8 +2928,8 @@ packages:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
- lucide-react@0.447.0:
- resolution: {integrity: sha512-SZ//hQmvi+kDKrNepArVkYK7/jfeZ5uFNEnYmd45RKZcbGD78KLnrcNXmgeg6m+xNHFvTG+CblszXCy4n6DN4w==}
+ lucide-react@0.454.0:
+ resolution: {integrity: sha512-hw7zMDwykCLnEzgncEEjHeA6+45aeEzRYuKHuyRSOPkhko+J3ySGjGIzu+mmMfDFG1vazHepMaYFYHbTFAZAAQ==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc
@@ -2922,8 +3105,8 @@ packages:
mongodb-connection-string-url@3.0.1:
resolution: {integrity: sha512-XqMGwRX0Lgn05TDB4PyG2h2kKO/FfWJyCzYQbIhXUxz7ETt0I/FqHjUeqj37irJ+Dl1ZtU82uYyj14u2XsZKfg==}
- mongodb@6.9.0:
- resolution: {integrity: sha512-UMopBVx1LmEUbW/QE0Hw18u583PEDVQmUmVzzBRH0o/xtE9DBRA5ZYLOjpLIa03i8FXjzvQECJcqoMvCXftTUA==}
+ mongodb@6.10.0:
+ resolution: {integrity: sha512-gP9vduuYWb9ZkDM546M+MP2qKVk5ZG2wPF63OvSRuUbqCR+11ZCAE1mOfllhlAG0wcoJY5yDL/rV3OmYEwXIzg==}
engines: {node: '>=16.20.1'}
peerDependencies:
'@aws-sdk/credential-providers': ^3.188.0
@@ -2967,19 +3150,19 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@5.0.7:
- resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==}
+ nanoid@5.0.8:
+ resolution: {integrity: sha512-TcJPw+9RV9dibz1hHUzlLVy8N4X9TnwirAjrU08Juo6BNKggzVfP2ZJ/3ZUSq15Xl5i85i+Z89XBO90pB2PghQ==}
engines: {node: ^18 || >=20}
hasBin: true
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- next-auth@4.24.8:
- resolution: {integrity: sha512-SLt3+8UCtklsotnz2p+nB4aN3IHNmpsQFAZ24VLxGotWGzSxkBh192zxNhm/J5wgkcrDWVp0bwqvW0HksK/Lcw==}
+ next-auth@4.24.10:
+ resolution: {integrity: sha512-8NGqiRO1GXBcVfV8tbbGcUgQkAGsX4GRzzXXea4lDikAsJtD5KiEY34bfhUOjHLvr6rT6afpcxw2H8EZqOV6aQ==}
peerDependencies:
'@auth/core': 0.34.2
- next: ^12.2.5 || ^13 || ^14
+ next: ^12.2.5 || ^13 || ^14 || ^15
nodemailer: ^6.6.5
react: ^17.0.2 || ^18
react-dom: ^17.0.2 || ^18
@@ -3008,21 +3191,24 @@ packages:
react: ^16.8 || ^17 || ^18
react-dom: ^16.8 || ^17 || ^18
- next@14.2.14:
- resolution: {integrity: sha512-Q1coZG17MW0Ly5x76shJ4dkC23woLAhhnDnw+DfTc7EpZSGuWrlsZ3bZaO8t6u1Yu8FVfhkqJE+U8GC7E0GLPQ==}
- engines: {node: '>=18.17.0'}
+ next@15.0.2:
+ resolution: {integrity: sha512-rxIWHcAu4gGSDmwsELXacqAPUk+j8dV/A9cDF5fsiCMpkBDYkO2AEaL1dfD+nNmDiU6QMCFN8Q30VEKapT9UHQ==}
+ engines: {node: '>=18.18.0'}
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.1.0
'@playwright/test': ^1.41.2
- react: ^18.2.0
- react-dom: ^18.2.0
+ babel-plugin-react-compiler: '*'
+ react: ^18.2.0 || 19.0.0-rc-02c0e824-20241028
+ react-dom: ^18.2.0 || 19.0.0-rc-02c0e824-20241028
sass: ^1.3.0
peerDependenciesMeta:
'@opentelemetry/api':
optional: true
'@playwright/test':
optional: true
+ babel-plugin-react-compiler:
+ optional: true
sass:
optional: true
@@ -3043,8 +3229,8 @@ packages:
node-releases@2.0.18:
resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
- nodemailer@6.9.15:
- resolution: {integrity: sha512-AHf04ySLC6CIfuRtRiEYtGEXgRfa6INgWGluDhnxTZhHSKvrBu7lc1VVchQ0d8nPc4cFaZoPq8vkyNoZr0TpGQ==}
+ nodemailer@6.9.16:
+ resolution: {integrity: sha512-psAuZdTIRN08HKVd/E8ObdV6NO7NTBY3KsC30F7M4H1OnmLCUNaS56FpYxyb26zWLSyYF9Ozch9KYHhHegsiOQ==}
engines: {node: '>=6.0.0'}
normalize-package-data@2.5.0:
@@ -3080,10 +3266,6 @@ packages:
resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
engines: {node: '>= 0.4'}
- object-is@1.1.6:
- resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
- engines: {node: '>= 0.4'}
-
object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
@@ -3198,6 +3380,9 @@ packages:
picocolors@1.1.0:
resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
+
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
@@ -3275,8 +3460,8 @@ packages:
peerDependencies:
preact: '>=10'
- preact@10.24.1:
- resolution: {integrity: sha512-PnBAwFI3Yjxxcxw75n6VId/5TFxNW/81zexzWD9jn1+eSrOP84NdsS38H5IkF/UH3frqRPT+MvuCoVHjTDTnDw==}
+ preact@10.24.3:
+ resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -3576,6 +3761,10 @@ packages:
setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
+ sharp@0.33.5:
+ resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+
shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -3592,6 +3781,9 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
+ simple-swizzle@0.2.2:
+ resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+
sirv@2.0.4:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
@@ -3625,10 +3817,6 @@ packages:
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- stop-iteration-iterator@1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
- engines: {node: '>= 0.4'}
-
streamsearch@1.1.0:
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
engines: {node: '>=10.0.0'}
@@ -3641,8 +3829,9 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
- string.prototype.includes@2.0.0:
- resolution: {integrity: sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==}
+ string.prototype.includes@2.0.1:
+ resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
+ engines: {node: '>= 0.4'}
string.prototype.matchall@4.0.11:
resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
@@ -3701,13 +3890,13 @@ packages:
style-to-object@1.0.5:
resolution: {integrity: sha512-rDRwHtoDD3UMMrmZ6BzOW0naTjMsVZLIjsGleSKS/0Oz+cgCfAPRspaqJuE8rDzpKha/nEvnM0IF4seEAZUTKQ==}
- styled-jsx@5.1.1:
- resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
+ styled-jsx@5.1.6:
+ resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
engines: {node: '>= 12.0.0'}
peerDependencies:
'@babel/core': '*'
babel-plugin-macros: '*'
- react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
+ react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
peerDependenciesMeta:
'@babel/core':
optional: true
@@ -3734,11 +3923,11 @@ packages:
tabbable@6.2.0:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
- tailwind-merge@2.5.3:
- resolution: {integrity: sha512-d9ZolCAIzom1nf/5p4LdD5zvjmgSxY0BGgdSvmXIoMYAiPdAW/dSpP7joCDYFY7r/HkEa2qmPtkgsu0xjQeQtw==}
+ tailwind-merge@2.5.4:
+ resolution: {integrity: sha512-0q8cfZHMu9nuYP/b5Shb7Y7Sh1B7Nnl5GqNr1U+n2p6+mybvRtayrQ+0042Z5byvTA8ihjlP8Odo8/VnHbZu4Q==}
- tailwindcss@3.4.13:
- resolution: {integrity: sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==}
+ tailwindcss@3.4.14:
+ resolution: {integrity: sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -3777,8 +3966,8 @@ packages:
trough@2.2.0:
resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
- ts-api-utils@1.3.0:
- resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
+ ts-api-utils@1.4.0:
+ resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==}
engines: {node: '>=16'}
peerDependencies:
typescript: '>=4.2.0'
@@ -3789,11 +3978,11 @@ packages:
tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
- tslib@2.7.0:
- resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
+ tslib@2.8.0:
+ resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==}
- tsx@4.19.1:
- resolution: {integrity: sha512-0flMz1lh74BR4wOvBjuh9olbnwqCPc35OOlfyzHba0Dc+QNUeWX/Gq2YTbnwcWPO3BMd8fkzRVrHcsR+a7z7rA==}
+ tsx@4.19.2:
+ resolution: {integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -3829,8 +4018,8 @@ packages:
resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
engines: {node: '>= 0.4'}
- typescript-eslint@8.8.0:
- resolution: {integrity: sha512-BjIT/VwJ8+0rVO01ZQ2ZVnjE1svFBiRczcpr1t1Yxt7sT25VSbPfrJtDsQ8uQTy2pilX5nI9gwxhUyLULNentw==}
+ typescript-eslint@8.12.2:
+ resolution: {integrity: sha512-UbuVUWSrHVR03q9CWx+JDHeO6B/Hr9p4U5lRH++5tq/EbFq1faYZe50ZSBePptgfIKLEti0aPQ3hFgnPVcd8ZQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -3838,8 +4027,8 @@ packages:
typescript:
optional: true
- typescript@5.6.2:
- resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==}
+ typescript@5.6.3:
+ resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -4032,8 +4221,8 @@ packages:
engines: {node: '>= 14'}
hasBin: true
- yaml@2.5.1:
- resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
+ yaml@2.6.0:
+ resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==}
engines: {node: '>= 14'}
hasBin: true
@@ -4058,25 +4247,25 @@ snapshots:
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
'@aws-sdk/types': 3.664.0
- '@aws-sdk/util-locate-window': 3.568.0
+ '@aws-sdk/util-locate-window': 3.679.0
'@smithy/util-utf8': 2.3.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@aws-crypto/sha256-js@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
'@aws-sdk/types': 3.664.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@aws-crypto/supports-web-crypto@5.2.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@aws-crypto/util@5.2.0':
dependencies:
'@aws-sdk/types': 3.664.0
'@smithy/util-utf8': 2.3.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@aws-sdk/client-sso-oidc@3.664.0(@aws-sdk/client-sts@3.664.0)':
dependencies:
@@ -4094,32 +4283,32 @@ snapshots:
'@aws-sdk/util-endpoints': 3.664.0
'@aws-sdk/util-user-agent-browser': 3.664.0
'@aws-sdk/util-user-agent-node': 3.664.0
- '@smithy/config-resolver': 3.0.9
- '@smithy/core': 2.4.7
+ '@smithy/config-resolver': 3.0.10
+ '@smithy/core': 2.5.1
'@smithy/fetch-http-handler': 3.2.9
- '@smithy/hash-node': 3.0.7
- '@smithy/invalid-dependency': 3.0.7
- '@smithy/middleware-content-length': 3.0.9
- '@smithy/middleware-endpoint': 3.1.4
- '@smithy/middleware-retry': 3.0.22
- '@smithy/middleware-serde': 3.0.7
- '@smithy/middleware-stack': 3.0.7
- '@smithy/node-config-provider': 3.1.8
- '@smithy/node-http-handler': 3.2.4
- '@smithy/protocol-http': 4.1.4
- '@smithy/smithy-client': 3.3.6
- '@smithy/types': 3.5.0
- '@smithy/url-parser': 3.0.7
+ '@smithy/hash-node': 3.0.8
+ '@smithy/invalid-dependency': 3.0.8
+ '@smithy/middleware-content-length': 3.0.10
+ '@smithy/middleware-endpoint': 3.2.1
+ '@smithy/middleware-retry': 3.0.25
+ '@smithy/middleware-serde': 3.0.8
+ '@smithy/middleware-stack': 3.0.8
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/node-http-handler': 3.2.5
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/url-parser': 3.0.8
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.22
- '@smithy/util-defaults-mode-node': 3.0.22
- '@smithy/util-endpoints': 2.1.3
- '@smithy/util-middleware': 3.0.7
- '@smithy/util-retry': 3.0.7
+ '@smithy/util-defaults-mode-browser': 3.0.25
+ '@smithy/util-defaults-mode-node': 3.0.25
+ '@smithy/util-endpoints': 2.1.4
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-retry': 3.0.8
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
transitivePeerDependencies:
- aws-crt
@@ -4137,32 +4326,32 @@ snapshots:
'@aws-sdk/util-endpoints': 3.664.0
'@aws-sdk/util-user-agent-browser': 3.664.0
'@aws-sdk/util-user-agent-node': 3.664.0
- '@smithy/config-resolver': 3.0.9
- '@smithy/core': 2.4.7
+ '@smithy/config-resolver': 3.0.10
+ '@smithy/core': 2.5.1
'@smithy/fetch-http-handler': 3.2.9
- '@smithy/hash-node': 3.0.7
- '@smithy/invalid-dependency': 3.0.7
- '@smithy/middleware-content-length': 3.0.9
- '@smithy/middleware-endpoint': 3.1.4
- '@smithy/middleware-retry': 3.0.22
- '@smithy/middleware-serde': 3.0.7
- '@smithy/middleware-stack': 3.0.7
- '@smithy/node-config-provider': 3.1.8
- '@smithy/node-http-handler': 3.2.4
- '@smithy/protocol-http': 4.1.4
- '@smithy/smithy-client': 3.3.6
- '@smithy/types': 3.5.0
- '@smithy/url-parser': 3.0.7
+ '@smithy/hash-node': 3.0.8
+ '@smithy/invalid-dependency': 3.0.8
+ '@smithy/middleware-content-length': 3.0.10
+ '@smithy/middleware-endpoint': 3.2.1
+ '@smithy/middleware-retry': 3.0.25
+ '@smithy/middleware-serde': 3.0.8
+ '@smithy/middleware-stack': 3.0.8
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/node-http-handler': 3.2.5
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/url-parser': 3.0.8
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.22
- '@smithy/util-defaults-mode-node': 3.0.22
- '@smithy/util-endpoints': 2.1.3
- '@smithy/util-middleware': 3.0.7
- '@smithy/util-retry': 3.0.7
+ '@smithy/util-defaults-mode-browser': 3.0.25
+ '@smithy/util-defaults-mode-node': 3.0.25
+ '@smithy/util-endpoints': 2.1.4
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-retry': 3.0.8
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
transitivePeerDependencies:
- aws-crt
@@ -4182,67 +4371,81 @@ snapshots:
'@aws-sdk/util-endpoints': 3.664.0
'@aws-sdk/util-user-agent-browser': 3.664.0
'@aws-sdk/util-user-agent-node': 3.664.0
- '@smithy/config-resolver': 3.0.9
- '@smithy/core': 2.4.7
+ '@smithy/config-resolver': 3.0.10
+ '@smithy/core': 2.5.1
'@smithy/fetch-http-handler': 3.2.9
- '@smithy/hash-node': 3.0.7
- '@smithy/invalid-dependency': 3.0.7
- '@smithy/middleware-content-length': 3.0.9
- '@smithy/middleware-endpoint': 3.1.4
- '@smithy/middleware-retry': 3.0.22
- '@smithy/middleware-serde': 3.0.7
- '@smithy/middleware-stack': 3.0.7
- '@smithy/node-config-provider': 3.1.8
- '@smithy/node-http-handler': 3.2.4
- '@smithy/protocol-http': 4.1.4
- '@smithy/smithy-client': 3.3.6
- '@smithy/types': 3.5.0
- '@smithy/url-parser': 3.0.7
+ '@smithy/hash-node': 3.0.8
+ '@smithy/invalid-dependency': 3.0.8
+ '@smithy/middleware-content-length': 3.0.10
+ '@smithy/middleware-endpoint': 3.2.1
+ '@smithy/middleware-retry': 3.0.25
+ '@smithy/middleware-serde': 3.0.8
+ '@smithy/middleware-stack': 3.0.8
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/node-http-handler': 3.2.5
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/url-parser': 3.0.8
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.22
- '@smithy/util-defaults-mode-node': 3.0.22
- '@smithy/util-endpoints': 2.1.3
- '@smithy/util-middleware': 3.0.7
- '@smithy/util-retry': 3.0.7
+ '@smithy/util-defaults-mode-browser': 3.0.25
+ '@smithy/util-defaults-mode-node': 3.0.25
+ '@smithy/util-endpoints': 2.1.4
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-retry': 3.0.8
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
transitivePeerDependencies:
- aws-crt
'@aws-sdk/core@3.664.0':
dependencies:
'@aws-sdk/types': 3.664.0
- '@smithy/core': 2.4.7
- '@smithy/node-config-provider': 3.1.8
- '@smithy/property-provider': 3.1.7
- '@smithy/protocol-http': 4.1.4
- '@smithy/signature-v4': 4.2.0
- '@smithy/smithy-client': 3.3.6
- '@smithy/types': 3.5.0
- '@smithy/util-middleware': 3.0.7
+ '@smithy/core': 2.5.1
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/property-provider': 3.1.8
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/signature-v4': 4.2.1
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/util-middleware': 3.0.8
fast-xml-parser: 4.4.1
- tslib: 2.7.0
+ tslib: 2.8.0
+
+ '@aws-sdk/core@3.679.0':
+ dependencies:
+ '@aws-sdk/types': 3.679.0
+ '@smithy/core': 2.5.1
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/property-provider': 3.1.8
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/signature-v4': 4.2.1
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/util-middleware': 3.0.8
+ fast-xml-parser: 4.4.1
+ tslib: 2.8.0
'@aws-sdk/credential-provider-env@3.664.0':
dependencies:
'@aws-sdk/types': 3.664.0
- '@smithy/property-provider': 3.1.7
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@aws-sdk/credential-provider-http@3.664.0':
dependencies:
'@aws-sdk/types': 3.664.0
'@smithy/fetch-http-handler': 3.2.9
- '@smithy/node-http-handler': 3.2.4
- '@smithy/property-provider': 3.1.7
- '@smithy/protocol-http': 4.1.4
- '@smithy/smithy-client': 3.3.6
- '@smithy/types': 3.5.0
- '@smithy/util-stream': 3.1.9
- tslib: 2.7.0
+ '@smithy/node-http-handler': 3.2.5
+ '@smithy/property-provider': 3.1.8
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/util-stream': 3.2.1
+ tslib: 2.8.0
'@aws-sdk/credential-provider-ini@3.664.0(@aws-sdk/client-sso-oidc@3.664.0(@aws-sdk/client-sts@3.664.0))(@aws-sdk/client-sts@3.664.0)':
dependencies:
@@ -4253,11 +4456,11 @@ snapshots:
'@aws-sdk/credential-provider-sso': 3.664.0(@aws-sdk/client-sso-oidc@3.664.0(@aws-sdk/client-sts@3.664.0))
'@aws-sdk/credential-provider-web-identity': 3.664.0(@aws-sdk/client-sts@3.664.0)
'@aws-sdk/types': 3.664.0
- '@smithy/credential-provider-imds': 3.2.4
- '@smithy/property-provider': 3.1.7
- '@smithy/shared-ini-file-loader': 3.1.8
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/credential-provider-imds': 3.2.5
+ '@smithy/property-provider': 3.1.8
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
@@ -4271,11 +4474,11 @@ snapshots:
'@aws-sdk/credential-provider-sso': 3.664.0(@aws-sdk/client-sso-oidc@3.664.0(@aws-sdk/client-sts@3.664.0))
'@aws-sdk/credential-provider-web-identity': 3.664.0(@aws-sdk/client-sts@3.664.0)
'@aws-sdk/types': 3.664.0
- '@smithy/credential-provider-imds': 3.2.4
- '@smithy/property-provider': 3.1.7
- '@smithy/shared-ini-file-loader': 3.1.8
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/credential-provider-imds': 3.2.5
+ '@smithy/property-provider': 3.1.8
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- '@aws-sdk/client-sts'
@@ -4284,20 +4487,20 @@ snapshots:
'@aws-sdk/credential-provider-process@3.664.0':
dependencies:
'@aws-sdk/types': 3.664.0
- '@smithy/property-provider': 3.1.7
- '@smithy/shared-ini-file-loader': 3.1.8
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@aws-sdk/credential-provider-sso@3.664.0(@aws-sdk/client-sso-oidc@3.664.0(@aws-sdk/client-sts@3.664.0))':
dependencies:
'@aws-sdk/client-sso': 3.664.0
'@aws-sdk/token-providers': 3.664.0(@aws-sdk/client-sso-oidc@3.664.0(@aws-sdk/client-sts@3.664.0))
'@aws-sdk/types': 3.664.0
- '@smithy/property-provider': 3.1.7
- '@smithy/shared-ini-file-loader': 3.1.8
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
@@ -4306,87 +4509,101 @@ snapshots:
dependencies:
'@aws-sdk/client-sts': 3.664.0
'@aws-sdk/types': 3.664.0
- '@smithy/property-provider': 3.1.7
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
+
+ '@aws-sdk/credential-provider-web-identity@3.679.0(@aws-sdk/client-sts@3.664.0)':
+ dependencies:
+ '@aws-sdk/client-sts': 3.664.0
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@aws-sdk/middleware-host-header@3.664.0':
dependencies:
'@aws-sdk/types': 3.664.0
- '@smithy/protocol-http': 4.1.4
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@aws-sdk/middleware-logger@3.664.0':
dependencies:
'@aws-sdk/types': 3.664.0
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@aws-sdk/middleware-recursion-detection@3.664.0':
dependencies:
'@aws-sdk/types': 3.664.0
- '@smithy/protocol-http': 4.1.4
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@aws-sdk/middleware-user-agent@3.664.0':
dependencies:
'@aws-sdk/types': 3.664.0
'@aws-sdk/util-endpoints': 3.664.0
- '@smithy/core': 2.4.7
- '@smithy/protocol-http': 4.1.4
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/core': 2.5.1
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@aws-sdk/region-config-resolver@3.664.0':
dependencies:
'@aws-sdk/types': 3.664.0
- '@smithy/node-config-provider': 3.1.8
- '@smithy/types': 3.5.0
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/types': 3.6.0
'@smithy/util-config-provider': 3.0.0
- '@smithy/util-middleware': 3.0.7
- tslib: 2.7.0
+ '@smithy/util-middleware': 3.0.8
+ tslib: 2.8.0
'@aws-sdk/token-providers@3.664.0(@aws-sdk/client-sso-oidc@3.664.0(@aws-sdk/client-sts@3.664.0))':
dependencies:
'@aws-sdk/client-sso-oidc': 3.664.0(@aws-sdk/client-sts@3.664.0)
'@aws-sdk/types': 3.664.0
- '@smithy/property-provider': 3.1.7
- '@smithy/shared-ini-file-loader': 3.1.8
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@aws-sdk/types@3.664.0':
dependencies:
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
+
+ '@aws-sdk/types@3.679.0':
+ dependencies:
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@aws-sdk/util-endpoints@3.664.0':
dependencies:
'@aws-sdk/types': 3.664.0
- '@smithy/types': 3.5.0
- '@smithy/util-endpoints': 2.1.3
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ '@smithy/util-endpoints': 2.1.4
+ tslib: 2.8.0
- '@aws-sdk/util-locate-window@3.568.0':
+ '@aws-sdk/util-locate-window@3.679.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@aws-sdk/util-user-agent-browser@3.664.0':
dependencies:
'@aws-sdk/types': 3.664.0
- '@smithy/types': 3.5.0
+ '@smithy/types': 3.6.0
bowser: 2.11.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@aws-sdk/util-user-agent-node@3.664.0':
dependencies:
'@aws-sdk/middleware-user-agent': 3.664.0
'@aws-sdk/types': 3.664.0
- '@smithy/node-config-provider': 3.1.8
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@babel/code-frame@7.24.7':
dependencies:
@@ -4416,12 +4633,21 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.0
- '@babel/runtime@7.25.7':
+ '@babel/runtime@7.25.9':
+ dependencies:
+ regenerator-runtime: 0.14.1
+
+ '@babel/runtime@7.26.0':
dependencies:
regenerator-runtime: 0.14.1
'@discoveryjs/json-ext@0.5.7': {}
+ '@emnapi/runtime@1.3.1':
+ dependencies:
+ tslib: 2.8.0
+ optional: true
+
'@esbuild/aix-ppc64@0.23.1':
optional: true
@@ -4499,13 +4725,20 @@ snapshots:
eslint: 8.57.1
eslint-visitor-keys: 3.4.3
- '@eslint-community/eslint-utils@4.4.0(eslint@9.11.1(jiti@2.1.2))':
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.13.0(jiti@2.1.2))':
dependencies:
- eslint: 9.11.1(jiti@2.1.2)
+ eslint: 9.13.0(jiti@2.1.2)
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.13.0(jiti@2.1.2))':
+ dependencies:
+ eslint: 9.13.0(jiti@2.1.2)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.11.1': {}
+ '@eslint-community/regexpp@4.12.1': {}
+
'@eslint/config-array@0.18.0':
dependencies:
'@eslint/object-schema': 2.1.4
@@ -4514,7 +4747,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/core@0.6.0': {}
+ '@eslint/core@0.7.0': {}
'@eslint/eslintrc@2.1.4':
dependencies:
@@ -4546,11 +4779,11 @@ snapshots:
'@eslint/js@8.57.1': {}
- '@eslint/js@9.11.1': {}
+ '@eslint/js@9.13.0': {}
'@eslint/object-schema@2.1.4': {}
- '@eslint/plugin-kit@0.2.0':
+ '@eslint/plugin-kit@0.2.1':
dependencies:
levn: 0.4.1
@@ -4592,9 +4825,16 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@headlessui/tailwindcss@0.2.1(tailwindcss@3.4.13)':
+ '@headlessui/tailwindcss@0.2.1(tailwindcss@3.4.14)':
+ dependencies:
+ tailwindcss: 3.4.14
+
+ '@humanfs/core@0.19.0': {}
+
+ '@humanfs/node@0.16.5':
dependencies:
- tailwindcss: 3.4.13
+ '@humanfs/core': 0.19.0
+ '@humanwhocodes/retry': 0.3.1
'@humanwhocodes/config-array@0.13.0':
dependencies:
@@ -4608,10 +4848,85 @@ snapshots:
'@humanwhocodes/object-schema@2.0.3': {}
- '@humanwhocodes/retry@0.3.0': {}
+ '@humanwhocodes/retry@0.3.1': {}
'@iarna/toml@2.2.5': {}
+ '@img/sharp-darwin-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-darwin-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ optional: true
+
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-linux-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-linux-arm@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ optional: true
+
+ '@img/sharp-linux-s390x@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ optional: true
+
+ '@img/sharp-linux-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-wasm32@0.33.5':
+ dependencies:
+ '@emnapi/runtime': 1.3.1
+ optional: true
+
+ '@img/sharp-win32-ia32@0.33.5':
+ optional: true
+
+ '@img/sharp-win32-x64@0.33.5':
+ optional: true
+
'@isaacs/cliui@8.0.2':
dependencies:
string-width: 5.1.2
@@ -4666,10 +4981,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@mdx-js/react@3.0.1(@types/react@18.3.11)(react@18.3.1)':
+ '@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1)':
dependencies:
'@types/mdx': 2.0.13
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
react: 18.3.1
'@microsoft/eslint-formatter-sarif@3.1.0':
@@ -4685,49 +5000,46 @@ snapshots:
dependencies:
sparse-bitfield: 3.0.3
- '@next-auth/mongodb-adapter@1.1.3(patch_hash=7eh2mvrdk736bmqtrzr6t5gdlm)(mongodb@6.9.0)(next-auth@4.24.8(next@14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nodemailer@6.9.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
+ '@next-auth/mongodb-adapter@1.1.3(patch_hash=7eh2mvrdk736bmqtrzr6t5gdlm)(mongodb@6.10.0)(next-auth@4.24.10(next@15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nodemailer@6.9.16)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
dependencies:
- mongodb: 6.9.0
- next-auth: 4.24.8(next@14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nodemailer@6.9.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ mongodb: 6.10.0
+ next-auth: 4.24.10(next@15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nodemailer@6.9.16)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@next/bundle-analyzer@14.2.14':
+ '@next/bundle-analyzer@15.0.2':
dependencies:
webpack-bundle-analyzer: 4.10.1
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@next/env@14.2.14': {}
+ '@next/env@15.0.2': {}
- '@next/eslint-plugin-next@14.2.14':
+ '@next/eslint-plugin-next@15.0.2':
dependencies:
- glob: 10.3.10
+ fast-glob: 3.3.1
- '@next/swc-darwin-arm64@14.2.14':
+ '@next/swc-darwin-arm64@15.0.2':
optional: true
- '@next/swc-darwin-x64@14.2.14':
+ '@next/swc-darwin-x64@15.0.2':
optional: true
- '@next/swc-linux-arm64-gnu@14.2.14':
+ '@next/swc-linux-arm64-gnu@15.0.2':
optional: true
- '@next/swc-linux-arm64-musl@14.2.14':
+ '@next/swc-linux-arm64-musl@15.0.2':
optional: true
- '@next/swc-linux-x64-gnu@14.2.14':
+ '@next/swc-linux-x64-gnu@15.0.2':
optional: true
- '@next/swc-linux-x64-musl@14.2.14':
+ '@next/swc-linux-x64-musl@15.0.2':
optional: true
- '@next/swc-win32-arm64-msvc@14.2.14':
+ '@next/swc-win32-arm64-msvc@15.0.2':
optional: true
- '@next/swc-win32-ia32-msvc@14.2.14':
- optional: true
-
- '@next/swc-win32-x64-msvc@14.2.14':
+ '@next/swc-win32-x64-msvc@15.0.2':
optional: true
'@nodelib/fs.scandir@2.1.5':
@@ -4753,261 +5065,261 @@ snapshots:
'@radix-ui/primitive@1.1.0': {}
- '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
- '@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
- '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-context@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-context@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-context@1.1.1(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-context@1.1.1(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-dialog@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-dialog@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@18.3.1)
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.6.0(@types/react@18.3.11)(react@18.3.1)
+ react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
- '@radix-ui/react-direction@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-direction@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-dismissable-layer@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-dismissable-layer@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
- '@radix-ui/react-dropdown-menu@2.1.2(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-dropdown-menu@2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-menu': 2.1.2(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-menu': 2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
- '@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
- '@radix-ui/react-id@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-id@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-menu@2.1.2(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-menu@2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.6.0(@types/react@18.3.11)(react@18.3.1)
+ react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
- '@radix-ui/react-popper@1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-popper@1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-arrow': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-arrow': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.12)(react@18.3.1)
'@radix-ui/rect': 1.1.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
- '@radix-ui/react-portal@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-portal@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
- '@radix-ui/react-presence@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-presence@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
- '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
- '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
- '@radix-ui/react-slot@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-slot@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
'@radix-ui/rect': 1.1.0
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-size@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-size@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@radix-ui/rect@1.1.0': {}
@@ -5015,313 +5327,320 @@ snapshots:
'@rushstack/eslint-patch@1.10.4': {}
- '@ryanccn/eslint-config@0.4.1(@eslint/eslintrc@3.1.0)(@eslint/js@9.11.1)(@next/eslint-plugin-next@14.2.14)(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint-config-prettier@9.1.0(eslint@9.11.1(jiti@2.1.2)))(eslint-plugin-react-hooks@4.6.2(eslint@9.11.1(jiti@2.1.2)))(eslint-plugin-unicorn@56.0.0(eslint@9.11.1(jiti@2.1.2)))(eslint@9.11.1(jiti@2.1.2))(typescript-eslint@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(typescript@5.6.2)':
+ '@ryanccn/eslint-config@0.4.1(@eslint/eslintrc@3.1.0)(@eslint/js@9.13.0)(@next/eslint-plugin-next@15.0.2)(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint-config-prettier@9.1.0(eslint@9.13.0(jiti@2.1.2)))(eslint-plugin-react-hooks@4.6.2(eslint@9.13.0(jiti@2.1.2)))(eslint-plugin-unicorn@56.0.0(eslint@9.13.0(jiti@2.1.2)))(eslint@9.13.0(jiti@2.1.2))(typescript-eslint@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/utils': 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
- eslint: 9.11.1(jiti@2.1.2)
+ '@typescript-eslint/utils': 8.8.0(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.1.2)
eslint-define-config: 2.1.0
- globals: 15.10.0
+ globals: 15.11.0
kleur: 4.1.5
local-pkg: 0.5.0
optionalDependencies:
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.11.1
- '@next/eslint-plugin-next': 14.2.14
- '@typescript-eslint/parser': 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
- eslint-config-prettier: 9.1.0(eslint@9.11.1(jiti@2.1.2))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.11.1(jiti@2.1.2))
- eslint-plugin-unicorn: 56.0.0(eslint@9.11.1(jiti@2.1.2))
- typescript-eslint: 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
+ '@eslint/js': 9.13.0
+ '@next/eslint-plugin-next': 15.0.2
+ '@typescript-eslint/parser': 8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0(jiti@2.1.2))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.13.0(jiti@2.1.2))
+ eslint-plugin-unicorn: 56.0.0(eslint@9.13.0(jiti@2.1.2))
+ typescript-eslint: 8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
transitivePeerDependencies:
- supports-color
- typescript
- '@smithy/abort-controller@3.1.5':
+ '@smithy/abort-controller@3.1.6':
dependencies:
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/config-resolver@3.0.9':
+ '@smithy/config-resolver@3.0.10':
dependencies:
- '@smithy/node-config-provider': 3.1.8
- '@smithy/types': 3.5.0
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/types': 3.6.0
'@smithy/util-config-provider': 3.0.0
- '@smithy/util-middleware': 3.0.7
- tslib: 2.7.0
+ '@smithy/util-middleware': 3.0.8
+ tslib: 2.8.0
- '@smithy/core@2.4.7':
+ '@smithy/core@2.5.1':
dependencies:
- '@smithy/middleware-endpoint': 3.1.4
- '@smithy/middleware-retry': 3.0.22
- '@smithy/middleware-serde': 3.0.7
- '@smithy/protocol-http': 4.1.4
- '@smithy/smithy-client': 3.3.6
- '@smithy/types': 3.5.0
+ '@smithy/middleware-serde': 3.0.8
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
'@smithy/util-body-length-browser': 3.0.0
- '@smithy/util-middleware': 3.0.7
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-stream': 3.2.1
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/credential-provider-imds@3.2.4':
+ '@smithy/credential-provider-imds@3.2.5':
dependencies:
- '@smithy/node-config-provider': 3.1.8
- '@smithy/property-provider': 3.1.7
- '@smithy/types': 3.5.0
- '@smithy/url-parser': 3.0.7
- tslib: 2.7.0
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/property-provider': 3.1.8
+ '@smithy/types': 3.6.0
+ '@smithy/url-parser': 3.0.8
+ tslib: 2.8.0
'@smithy/fetch-http-handler@3.2.9':
dependencies:
- '@smithy/protocol-http': 4.1.4
- '@smithy/querystring-builder': 3.0.7
- '@smithy/types': 3.5.0
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/querystring-builder': 3.0.8
+ '@smithy/types': 3.6.0
'@smithy/util-base64': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/hash-node@3.0.7':
+ '@smithy/fetch-http-handler@4.0.0':
dependencies:
- '@smithy/types': 3.5.0
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/querystring-builder': 3.0.8
+ '@smithy/types': 3.6.0
+ '@smithy/util-base64': 3.0.0
+ tslib: 2.8.0
+
+ '@smithy/hash-node@3.0.8':
+ dependencies:
+ '@smithy/types': 3.6.0
'@smithy/util-buffer-from': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/invalid-dependency@3.0.7':
+ '@smithy/invalid-dependency@3.0.8':
dependencies:
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@smithy/is-array-buffer@2.2.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/is-array-buffer@3.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/middleware-content-length@3.0.9':
+ '@smithy/middleware-content-length@3.0.10':
dependencies:
- '@smithy/protocol-http': 4.1.4
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/middleware-endpoint@3.1.4':
+ '@smithy/middleware-endpoint@3.2.1':
dependencies:
- '@smithy/middleware-serde': 3.0.7
- '@smithy/node-config-provider': 3.1.8
- '@smithy/shared-ini-file-loader': 3.1.8
- '@smithy/types': 3.5.0
- '@smithy/url-parser': 3.0.7
- '@smithy/util-middleware': 3.0.7
- tslib: 2.7.0
+ '@smithy/core': 2.5.1
+ '@smithy/middleware-serde': 3.0.8
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ '@smithy/url-parser': 3.0.8
+ '@smithy/util-middleware': 3.0.8
+ tslib: 2.8.0
- '@smithy/middleware-retry@3.0.22':
+ '@smithy/middleware-retry@3.0.25':
dependencies:
- '@smithy/node-config-provider': 3.1.8
- '@smithy/protocol-http': 4.1.4
- '@smithy/service-error-classification': 3.0.7
- '@smithy/smithy-client': 3.3.6
- '@smithy/types': 3.5.0
- '@smithy/util-middleware': 3.0.7
- '@smithy/util-retry': 3.0.7
- tslib: 2.7.0
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/service-error-classification': 3.0.8
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-retry': 3.0.8
+ tslib: 2.8.0
uuid: 9.0.1
- '@smithy/middleware-serde@3.0.7':
+ '@smithy/middleware-serde@3.0.8':
dependencies:
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/middleware-stack@3.0.7':
+ '@smithy/middleware-stack@3.0.8':
dependencies:
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/node-config-provider@3.1.8':
+ '@smithy/node-config-provider@3.1.9':
dependencies:
- '@smithy/property-provider': 3.1.7
- '@smithy/shared-ini-file-loader': 3.1.8
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/node-http-handler@3.2.4':
+ '@smithy/node-http-handler@3.2.5':
dependencies:
- '@smithy/abort-controller': 3.1.5
- '@smithy/protocol-http': 4.1.4
- '@smithy/querystring-builder': 3.0.7
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/abort-controller': 3.1.6
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/querystring-builder': 3.0.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/property-provider@3.1.7':
+ '@smithy/property-provider@3.1.8':
dependencies:
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/protocol-http@4.1.4':
+ '@smithy/protocol-http@4.1.5':
dependencies:
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/querystring-builder@3.0.7':
+ '@smithy/querystring-builder@3.0.8':
dependencies:
- '@smithy/types': 3.5.0
+ '@smithy/types': 3.6.0
'@smithy/util-uri-escape': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/querystring-parser@3.0.7':
+ '@smithy/querystring-parser@3.0.8':
dependencies:
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/service-error-classification@3.0.7':
+ '@smithy/service-error-classification@3.0.8':
dependencies:
- '@smithy/types': 3.5.0
+ '@smithy/types': 3.6.0
- '@smithy/shared-ini-file-loader@3.1.8':
+ '@smithy/shared-ini-file-loader@3.1.9':
dependencies:
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/signature-v4@4.2.0':
+ '@smithy/signature-v4@4.2.1':
dependencies:
'@smithy/is-array-buffer': 3.0.0
- '@smithy/protocol-http': 4.1.4
- '@smithy/types': 3.5.0
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
'@smithy/util-hex-encoding': 3.0.0
- '@smithy/util-middleware': 3.0.7
+ '@smithy/util-middleware': 3.0.8
'@smithy/util-uri-escape': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/smithy-client@3.3.6':
+ '@smithy/smithy-client@3.4.2':
dependencies:
- '@smithy/middleware-endpoint': 3.1.4
- '@smithy/middleware-stack': 3.0.7
- '@smithy/protocol-http': 4.1.4
- '@smithy/types': 3.5.0
- '@smithy/util-stream': 3.1.9
- tslib: 2.7.0
+ '@smithy/core': 2.5.1
+ '@smithy/middleware-endpoint': 3.2.1
+ '@smithy/middleware-stack': 3.0.8
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
+ '@smithy/util-stream': 3.2.1
+ tslib: 2.8.0
- '@smithy/types@3.5.0':
+ '@smithy/types@3.6.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/url-parser@3.0.7':
+ '@smithy/url-parser@3.0.8':
dependencies:
- '@smithy/querystring-parser': 3.0.7
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/querystring-parser': 3.0.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@smithy/util-base64@3.0.0':
dependencies:
'@smithy/util-buffer-from': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-body-length-browser@3.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-body-length-node@3.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-buffer-from@2.2.0':
dependencies:
'@smithy/is-array-buffer': 2.2.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-buffer-from@3.0.0':
dependencies:
'@smithy/is-array-buffer': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-config-provider@3.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/util-defaults-mode-browser@3.0.22':
+ '@smithy/util-defaults-mode-browser@3.0.25':
dependencies:
- '@smithy/property-provider': 3.1.7
- '@smithy/smithy-client': 3.3.6
- '@smithy/types': 3.5.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
bowser: 2.11.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/util-defaults-mode-node@3.0.22':
+ '@smithy/util-defaults-mode-node@3.0.25':
dependencies:
- '@smithy/config-resolver': 3.0.9
- '@smithy/credential-provider-imds': 3.2.4
- '@smithy/node-config-provider': 3.1.8
- '@smithy/property-provider': 3.1.7
- '@smithy/smithy-client': 3.3.6
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/config-resolver': 3.0.10
+ '@smithy/credential-provider-imds': 3.2.5
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/property-provider': 3.1.8
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/util-endpoints@2.1.3':
+ '@smithy/util-endpoints@2.1.4':
dependencies:
- '@smithy/node-config-provider': 3.1.8
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@smithy/util-hex-encoding@3.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/util-middleware@3.0.7':
+ '@smithy/util-middleware@3.0.8':
dependencies:
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/util-retry@3.0.7':
+ '@smithy/util-retry@3.0.8':
dependencies:
- '@smithy/service-error-classification': 3.0.7
- '@smithy/types': 3.5.0
- tslib: 2.7.0
+ '@smithy/service-error-classification': 3.0.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/util-stream@3.1.9':
+ '@smithy/util-stream@3.2.1':
dependencies:
- '@smithy/fetch-http-handler': 3.2.9
- '@smithy/node-http-handler': 3.2.4
- '@smithy/types': 3.5.0
+ '@smithy/fetch-http-handler': 4.0.0
+ '@smithy/node-http-handler': 3.2.5
+ '@smithy/types': 3.6.0
'@smithy/util-base64': 3.0.0
'@smithy/util-buffer-from': 3.0.0
'@smithy/util-hex-encoding': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-uri-escape@3.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-utf8@2.3.0':
dependencies:
'@smithy/util-buffer-from': 2.2.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-utf8@3.0.0':
dependencies:
'@smithy/util-buffer-from': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@swc/counter@0.1.3': {}
- '@swc/helpers@0.5.5':
+ '@swc/helpers@0.5.13':
dependencies:
- '@swc/counter': 0.1.3
- tslib: 2.7.0
+ tslib: 2.8.0
- '@tailwindcss/forms@0.5.9(tailwindcss@3.4.13)':
+ '@tailwindcss/forms@0.5.9(tailwindcss@3.4.14)':
dependencies:
mini-svg-data-uri: 1.4.4
- tailwindcss: 3.4.13
+ tailwindcss: 3.4.14
- '@tailwindcss/typography@0.5.15(tailwindcss@3.4.13)':
+ '@tailwindcss/typography@0.5.15(tailwindcss@3.4.14)':
dependencies:
lodash.castarray: 4.4.0
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
postcss-selector-parser: 6.0.10
- tailwindcss: 3.4.13
+ tailwindcss: 3.4.14
'@tanstack/react-virtual@3.10.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -5331,18 +5650,18 @@ snapshots:
'@tanstack/virtual-core@3.10.8': {}
- '@tremor/react@3.18.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.13)':
+ '@tremor/react@3.18.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.14)':
dependencies:
'@floating-ui/react': 0.19.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@headlessui/react': 1.7.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@headlessui/tailwindcss': 0.2.1(tailwindcss@3.4.13)
+ '@headlessui/tailwindcss': 0.2.1(tailwindcss@3.4.14)
date-fns: 3.6.0
react: 18.3.1
react-day-picker: 8.10.1(date-fns@3.6.0)(react@18.3.1)
react-dom: 18.3.1(react@18.3.1)
react-transition-state: 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
recharts: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- tailwind-merge: 2.5.3
+ tailwind-merge: 2.5.4
transitivePeerDependencies:
- tailwindcss
@@ -5412,7 +5731,7 @@ snapshots:
'@types/ms@0.7.34': {}
- '@types/node@22.7.4':
+ '@types/node@22.8.4':
dependencies:
undici-types: 6.19.8
@@ -5422,11 +5741,11 @@ snapshots:
'@types/prop-types@15.7.13': {}
- '@types/react-dom@18.3.0':
+ '@types/react-dom@18.3.1':
dependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@types/react@18.3.11':
+ '@types/react@18.3.12':
dependencies:
'@types/prop-types': 15.7.13
csstype: 3.1.3
@@ -5445,57 +5764,79 @@ snapshots:
dependencies:
'@types/webidl-conversions': 7.0.3
- '@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)':
+ '@typescript-eslint/eslint-plugin@8.12.2(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)':
dependencies:
- '@eslint-community/regexpp': 4.11.1
- '@typescript-eslint/parser': 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
- '@typescript-eslint/scope-manager': 8.8.0
- '@typescript-eslint/type-utils': 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
- '@typescript-eslint/utils': 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 8.8.0
- eslint: 9.11.1(jiti@2.1.2)
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.12.2
+ '@typescript-eslint/type-utils': 8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.12.2
+ eslint: 9.13.0(jiti@2.1.2)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.4.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)':
+ '@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.8.0
- '@typescript-eslint/types': 8.8.0
- '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 8.8.0
+ '@typescript-eslint/scope-manager': 8.12.2
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/typescript-estree': 8.12.2(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.12.2
debug: 4.3.7
- eslint: 9.11.1(jiti@2.1.2)
+ eslint: 9.13.0(jiti@2.1.2)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/scope-manager@8.12.2':
+ dependencies:
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/visitor-keys': 8.12.2
+
'@typescript-eslint/scope-manager@8.8.0':
dependencies:
'@typescript-eslint/types': 8.8.0
'@typescript-eslint/visitor-keys': 8.8.0
- '@typescript-eslint/type-utils@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)':
+ '@typescript-eslint/type-utils@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2)
- '@typescript-eslint/utils': 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
+ '@typescript-eslint/typescript-estree': 8.12.2(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
debug: 4.3.7
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.4.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint
- supports-color
+ '@typescript-eslint/types@8.12.2': {}
+
'@typescript-eslint/types@8.8.0': {}
- '@typescript-eslint/typescript-estree@8.8.0(typescript@5.6.2)':
+ '@typescript-eslint/typescript-estree@8.12.2(typescript@5.6.3)':
+ dependencies:
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/visitor-keys': 8.12.2
+ debug: 4.3.7
+ fast-glob: 3.3.2
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.6.3
+ ts-api-utils: 1.4.0(typescript@5.6.3)
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/typescript-estree@8.8.0(typescript@5.6.3)':
dependencies:
'@typescript-eslint/types': 8.8.0
'@typescript-eslint/visitor-keys': 8.8.0
@@ -5504,23 +5845,39 @@ snapshots:
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.4.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)':
+ '@typescript-eslint/utils@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.1.2))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.13.0(jiti@2.1.2))
+ '@typescript-eslint/scope-manager': 8.12.2
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/typescript-estree': 8.12.2(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.1.2)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@typescript-eslint/utils@8.8.0(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@2.1.2))
'@typescript-eslint/scope-manager': 8.8.0
'@typescript-eslint/types': 8.8.0
- '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2)
- eslint: 9.11.1(jiti@2.1.2)
+ '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.1.2)
transitivePeerDependencies:
- supports-color
- typescript
+ '@typescript-eslint/visitor-keys@8.12.2':
+ dependencies:
+ '@typescript-eslint/types': 8.12.2
+ eslint-visitor-keys: 3.4.3
+
'@typescript-eslint/visitor-keys@8.8.0':
dependencies:
'@typescript-eslint/types': 8.8.0
@@ -5530,23 +5887,23 @@ snapshots:
'@upstash/core-analytics@0.0.10':
dependencies:
- '@upstash/redis': 1.34.0
+ '@upstash/redis': 1.34.3
- '@upstash/ratelimit@2.0.3':
+ '@upstash/ratelimit@2.0.4':
dependencies:
'@upstash/core-analytics': 0.0.10
- '@upstash/redis@1.34.0':
+ '@upstash/redis@1.34.1':
dependencies:
crypto-js: 4.2.0
- '@upstash/redis@1.34.1':
+ '@upstash/redis@1.34.3':
dependencies:
crypto-js: 4.2.0
- '@vercel/functions@1.4.1(@aws-sdk/credential-provider-web-identity@3.664.0(@aws-sdk/client-sts@3.664.0))':
+ '@vercel/functions@1.5.0(@aws-sdk/credential-provider-web-identity@3.679.0(@aws-sdk/client-sts@3.664.0))':
optionalDependencies:
- '@aws-sdk/credential-provider-web-identity': 3.664.0(@aws-sdk/client-sts@3.664.0)
+ '@aws-sdk/credential-provider-web-identity': 3.679.0(@aws-sdk/client-sts@3.664.0)
'@vercel/kv@3.0.0':
dependencies:
@@ -5556,24 +5913,26 @@ snapshots:
dependencies:
acorn: 8.11.3
- acorn-jsx@5.3.2(acorn@8.12.0):
+ acorn-jsx@5.3.2(acorn@8.13.0):
dependencies:
- acorn: 8.12.0
+ acorn: 8.13.0
- acorn-jsx@5.3.2(acorn@8.12.1):
+ acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-walk@8.3.4:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
acorn@8.11.3: {}
- acorn@8.12.0: {}
-
acorn@8.12.1: {}
+ acorn@8.13.0: {}
+
+ acorn@8.14.0: {}
+
ajv@6.12.6:
dependencies:
fast-deep-equal: 3.1.3
@@ -5612,11 +5971,9 @@ snapshots:
aria-hidden@1.2.4:
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- aria-query@5.1.3:
- dependencies:
- deep-equal: 2.2.3
+ aria-query@5.3.2: {}
array-buffer-byte-length@1.0.1:
dependencies:
@@ -5701,7 +6058,7 @@ snapshots:
dependencies:
possible-typed-array-names: 1.0.0
- axe-core@4.10.0: {}
+ axe-core@4.10.2: {}
axobject-query@4.1.0: {}
@@ -5740,7 +6097,7 @@ snapshots:
node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.0)
- bson@6.8.0: {}
+ bson@6.9.0: {}
builtin-modules@3.3.0: {}
@@ -5764,6 +6121,8 @@ snapshots:
caniuse-lite@1.0.30001666: {}
+ caniuse-lite@1.0.30001675: {}
+
ccount@2.0.1: {}
chalk@2.4.2:
@@ -5827,6 +6186,18 @@ snapshots:
color-name@1.1.4: {}
+ color-string@1.9.1:
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
+ optional: true
+
+ color@4.2.3:
+ dependencies:
+ color-convert: 2.0.1
+ color-string: 1.9.1
+ optional: true
+
comma-separated-tokens@2.0.3: {}
commander@4.1.1: {}
@@ -5837,7 +6208,7 @@ snapshots:
confbox@0.1.7: {}
- cookie@0.5.0: {}
+ cookie@0.7.2: {}
core-js-compat@3.38.1:
dependencies:
@@ -5941,27 +6312,6 @@ snapshots:
dependencies:
character-entities: 2.0.2
- deep-equal@2.2.3:
- dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
- es-get-iterator: 1.1.3
- get-intrinsic: 1.2.4
- is-arguments: 1.1.1
- is-array-buffer: 3.0.4
- is-date-object: 1.0.5
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
- isarray: 2.0.5
- object-is: 1.1.6
- object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.3
- side-channel: 1.0.6
- which-boxed-primitive: 1.0.2
- which-collection: 1.0.2
- which-typed-array: 1.1.15
-
deep-is@0.1.4: {}
define-data-property@1.1.4:
@@ -5978,6 +6328,9 @@ snapshots:
dequal@2.0.3: {}
+ detect-libc@2.0.3:
+ optional: true
+
detect-node-es@1.1.0: {}
devlop@1.1.0:
@@ -5986,7 +6339,7 @@ snapshots:
didyoumean@1.2.2: {}
- discord-api-types@0.37.101: {}
+ discord-api-types@0.37.103: {}
dlv@1.1.3: {}
@@ -6000,7 +6353,7 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.25.9
csstype: 3.1.3
duplexer@0.1.2: {}
@@ -6079,19 +6432,7 @@ snapshots:
es-errors@1.3.0: {}
- es-get-iterator@1.1.3:
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- is-arguments: 1.1.1
- is-map: 2.0.3
- is-set: 2.0.3
- is-string: 1.0.7
- isarray: 2.0.5
- stop-iteration-iterator: 1.0.0
-
- es-iterator-helpers@1.0.19:
+ es-iterator-helpers@1.1.0:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
@@ -6105,7 +6446,7 @@ snapshots:
has-proto: 1.0.3
has-symbols: 1.0.3
internal-slot: 1.0.7
- iterator.prototype: 1.1.2
+ iterator.prototype: 1.1.3
safe-array-concat: 1.1.2
es-object-atoms@1.0.0:
@@ -6161,29 +6502,29 @@ snapshots:
escape-string-regexp@4.0.0: {}
- eslint-config-next@14.2.14(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2):
+ eslint-config-next@15.0.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3):
dependencies:
- '@next/eslint-plugin-next': 14.2.14
+ '@next/eslint-plugin-next': 15.0.2
'@rushstack/eslint-patch': 1.10.4
- '@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
- '@typescript-eslint/parser': 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
- eslint: 9.11.1(jiti@2.1.2)
+ '@typescript-eslint/eslint-plugin': 8.12.2(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.1.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.1.2))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.1.2))
- eslint-plugin-jsx-a11y: 6.10.0(eslint@9.11.1(jiti@2.1.2))
- eslint-plugin-react: 7.37.1(eslint@9.11.1(jiti@2.1.2))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.11.1(jiti@2.1.2))
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.1.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.1.2))
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@9.13.0(jiti@2.1.2))
+ eslint-plugin-react: 7.37.2(eslint@9.13.0(jiti@2.1.2))
+ eslint-plugin-react-hooks: 5.0.0(eslint@9.13.0(jiti@2.1.2))
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint-import-resolver-webpack
- eslint-plugin-import-x
- supports-color
- eslint-config-prettier@9.1.0(eslint@9.11.1(jiti@2.1.2)):
+ eslint-config-prettier@9.1.0(eslint@9.13.0(jiti@2.1.2)):
dependencies:
- eslint: 9.11.1(jiti@2.1.2)
+ eslint: 9.13.0(jiti@2.1.2)
eslint-define-config@2.1.0: {}
@@ -6195,37 +6536,37 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.1.2)):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.1.2)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.3.7
enhanced-resolve: 5.17.1
- eslint: 9.11.1(jiti@2.1.2)
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.1.2))
+ eslint: 9.13.0(jiti@2.1.2)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.1.2))
fast-glob: 3.3.2
get-tsconfig: 4.8.1
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.1.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.1.2))
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.1.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.1.2)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
- eslint: 9.11.1(jiti@2.1.2)
+ '@typescript-eslint/parser': 8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.1.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.11.1(jiti@2.1.2))
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.1.2))
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.1.2)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.1.2)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -6234,9 +6575,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.11.1(jiti@2.1.2)
+ eslint: 9.13.0(jiti@2.1.2)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.11.1(jiti@2.1.2))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.1.2))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -6248,45 +6589,49 @@ snapshots:
string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
+ '@typescript-eslint/parser': 8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jsx-a11y@6.10.0(eslint@9.11.1(jiti@2.1.2)):
+ eslint-plugin-jsx-a11y@6.10.2(eslint@9.13.0(jiti@2.1.2)):
dependencies:
- aria-query: 5.1.3
+ aria-query: 5.3.2
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
- axe-core: 4.10.0
+ axe-core: 4.10.2
axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- es-iterator-helpers: 1.0.19
- eslint: 9.11.1(jiti@2.1.2)
+ eslint: 9.13.0(jiti@2.1.2)
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
minimatch: 3.1.2
object.fromentries: 2.0.8
safe-regex-test: 1.0.3
- string.prototype.includes: 2.0.0
+ string.prototype.includes: 2.0.1
- eslint-plugin-react-hooks@4.6.2(eslint@9.11.1(jiti@2.1.2)):
+ eslint-plugin-react-hooks@4.6.2(eslint@9.13.0(jiti@2.1.2)):
dependencies:
- eslint: 9.11.1(jiti@2.1.2)
+ eslint: 9.13.0(jiti@2.1.2)
+ optional: true
- eslint-plugin-react@7.37.1(eslint@9.11.1(jiti@2.1.2)):
+ eslint-plugin-react-hooks@5.0.0(eslint@9.13.0(jiti@2.1.2)):
+ dependencies:
+ eslint: 9.13.0(jiti@2.1.2)
+
+ eslint-plugin-react@7.37.2(eslint@9.13.0(jiti@2.1.2)):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.0.19
- eslint: 9.11.1(jiti@2.1.2)
+ es-iterator-helpers: 1.1.0
+ eslint: 9.13.0(jiti@2.1.2)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -6300,16 +6645,16 @@ snapshots:
string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
- eslint-plugin-unicorn@56.0.0(eslint@9.11.1(jiti@2.1.2)):
+ eslint-plugin-unicorn@56.0.0(eslint@9.13.0(jiti@2.1.2)):
dependencies:
'@babel/helper-validator-identifier': 7.25.7
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.1.2))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@2.1.2))
ci-info: 4.0.0
clean-regexp: 1.0.0
core-js-compat: 3.38.1
- eslint: 9.11.1(jiti@2.1.2)
+ eslint: 9.13.0(jiti@2.1.2)
esquery: 1.6.0
- globals: 15.10.0
+ globals: 15.11.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
jsesc: 3.0.2
@@ -6377,18 +6722,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint@9.11.1(jiti@2.1.2):
+ eslint@9.13.0(jiti@2.1.2):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.1.2))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@2.1.2))
'@eslint-community/regexpp': 4.11.1
'@eslint/config-array': 0.18.0
- '@eslint/core': 0.6.0
+ '@eslint/core': 0.7.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.11.1
- '@eslint/plugin-kit': 0.2.0
+ '@eslint/js': 9.13.0
+ '@eslint/plugin-kit': 0.2.1
+ '@humanfs/node': 0.16.5
'@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.3.0
- '@nodelib/fs.walk': 1.2.8
+ '@humanwhocodes/retry': 0.3.1
'@types/estree': 1.0.6
'@types/json-schema': 7.0.15
ajv: 6.12.6
@@ -6408,13 +6753,11 @@ snapshots:
ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
- is-path-inside: 3.0.3
json-stable-stringify-without-jsonify: 1.0.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
optionator: 0.9.4
- strip-ansi: 6.0.1
text-table: 0.2.0
optionalDependencies:
jiti: 2.1.2
@@ -6429,14 +6772,14 @@ snapshots:
espree@10.2.0:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
+ acorn: 8.13.0
+ acorn-jsx: 5.3.2(acorn@8.13.0)
eslint-visitor-keys: 4.1.0
espree@9.6.1:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
+ acorn: 8.13.0
+ acorn-jsx: 5.3.2(acorn@8.13.0)
eslint-visitor-keys: 3.4.3
esprima@4.0.1: {}
@@ -6493,6 +6836,14 @@ snapshots:
fast-equals@5.0.1: {}
+ fast-glob@3.3.1:
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
+ glob-parent: 5.1.2
+ merge2: 1.4.1
+ micromatch: 4.0.8
+
fast-glob@3.3.2:
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -6618,14 +6969,6 @@ snapshots:
dependencies:
is-glob: 4.0.3
- glob@10.3.10:
- dependencies:
- foreground-child: 3.3.0
- jackspeak: 2.3.6
- minimatch: 9.0.5
- minipass: 7.1.2
- path-scurry: 1.11.1
-
glob@10.4.5:
dependencies:
foreground-child: 3.3.0
@@ -6650,7 +6993,7 @@ snapshots:
globals@14.0.0: {}
- globals@15.10.0: {}
+ globals@15.11.0: {}
globalthis@1.0.4:
dependencies:
@@ -6824,11 +7167,6 @@ snapshots:
is-alphabetical: 2.0.1
is-decimal: 2.0.1
- is-arguments@1.1.1:
- dependencies:
- call-bind: 1.0.7
- has-tostringtag: 1.0.2
-
is-array-buffer@3.0.4:
dependencies:
call-bind: 1.0.7
@@ -6836,6 +7174,9 @@ snapshots:
is-arrayish@0.2.1: {}
+ is-arrayish@0.3.2:
+ optional: true
+
is-async-function@2.0.0:
dependencies:
has-tostringtag: 1.0.2
@@ -6957,7 +7298,7 @@ snapshots:
isexe@2.0.0: {}
- iterator.prototype@1.1.2:
+ iterator.prototype@1.1.3:
dependencies:
define-properties: 1.2.1
get-intrinsic: 1.2.4
@@ -6965,12 +7306,6 @@ snapshots:
reflect.getprototypeof: 1.0.6
set-function-name: 2.0.2
- jackspeak@2.3.6:
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
-
jackspeak@3.4.3:
dependencies:
'@isaacs/cliui': 8.0.2
@@ -7089,7 +7424,7 @@ snapshots:
dependencies:
yallist: 4.0.0
- lucide-react@0.447.0(react@18.3.1):
+ lucide-react@0.454.0(react@18.3.1):
dependencies:
react: 18.3.1
@@ -7325,8 +7660,8 @@ snapshots:
micromark-extension-mdxjs@3.0.0:
dependencies:
- acorn: 8.12.0
- acorn-jsx: 5.3.2(acorn@8.12.0)
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
micromark-extension-mdx-expression: 3.0.0
micromark-extension-mdx-jsx: 3.0.0
micromark-extension-mdx-md: 2.0.0
@@ -7463,7 +7798,7 @@ snapshots:
micromark@4.0.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.4
+ debug: 4.3.7
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.0
@@ -7515,10 +7850,10 @@ snapshots:
'@types/whatwg-url': 11.0.5
whatwg-url: 13.0.0
- mongodb@6.9.0:
+ mongodb@6.10.0:
dependencies:
'@mongodb-js/saslprep': 1.1.9
- bson: 6.8.0
+ bson: 6.9.0
mongodb-connection-string-url: 3.0.1
mrmime@2.0.0: {}
@@ -7535,32 +7870,32 @@ snapshots:
nanoid@3.3.7: {}
- nanoid@5.0.7: {}
+ nanoid@5.0.8: {}
natural-compare@1.4.0: {}
- next-auth@4.24.8(next@14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nodemailer@6.9.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next-auth@4.24.10(next@15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nodemailer@6.9.16)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@panva/hkdf': 1.2.1
- cookie: 0.5.0
+ cookie: 0.7.2
jose: 4.15.9
- next: 14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
oauth: 0.9.15
openid-client: 5.7.0
- preact: 10.24.1
- preact-render-to-string: 5.2.6(preact@10.24.1)
+ preact: 10.24.3
+ preact-render-to-string: 5.2.6(preact@10.24.3)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
uuid: 8.3.2
optionalDependencies:
- nodemailer: 6.9.15
+ nodemailer: 6.9.16
- next-mdx-remote@5.0.0(@types/react@18.3.11)(react@18.3.1):
+ next-mdx-remote@5.0.0(@types/react@18.3.12)(react@18.3.1):
dependencies:
'@babel/code-frame': 7.24.7
'@mdx-js/mdx': 3.0.1
- '@mdx-js/react': 3.0.1(@types/react@18.3.11)(react@18.3.1)
+ '@mdx-js/react': 3.0.1(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
unist-util-remove: 3.1.1
vfile: 6.0.1
@@ -7569,9 +7904,9 @@ snapshots:
- '@types/react'
- supports-color
- next-plausible@3.12.2(next@14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next-plausible@3.12.2(next@15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- next: 14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -7580,35 +7915,35 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- next@14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@next/env': 14.2.14
- '@swc/helpers': 0.5.5
+ '@next/env': 15.0.2
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.13
busboy: 1.6.0
- caniuse-lite: 1.0.30001666
- graceful-fs: 4.2.11
+ caniuse-lite: 1.0.30001675
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.1(react@18.3.1)
+ styled-jsx: 5.1.6(react@18.3.1)
optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.14
- '@next/swc-darwin-x64': 14.2.14
- '@next/swc-linux-arm64-gnu': 14.2.14
- '@next/swc-linux-arm64-musl': 14.2.14
- '@next/swc-linux-x64-gnu': 14.2.14
- '@next/swc-linux-x64-musl': 14.2.14
- '@next/swc-win32-arm64-msvc': 14.2.14
- '@next/swc-win32-ia32-msvc': 14.2.14
- '@next/swc-win32-x64-msvc': 14.2.14
+ '@next/swc-darwin-arm64': 15.0.2
+ '@next/swc-darwin-x64': 15.0.2
+ '@next/swc-linux-arm64-gnu': 15.0.2
+ '@next/swc-linux-arm64-musl': 15.0.2
+ '@next/swc-linux-x64-gnu': 15.0.2
+ '@next/swc-linux-x64-musl': 15.0.2
+ '@next/swc-win32-arm64-msvc': 15.0.2
+ '@next/swc-win32-x64-msvc': 15.0.2
+ sharp: 0.33.5
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- nextjs-progressbar@0.0.16(next@14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1):
+ nextjs-progressbar@0.0.16(next@15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1):
dependencies:
'@types/nprogress': 0.2.3
- next: 14.2.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 15.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
nprogress: 0.2.0
prop-types: 15.8.1
react: 18.3.1
@@ -7623,7 +7958,7 @@ snapshots:
node-releases@2.0.18: {}
- nodemailer@6.9.15: {}
+ nodemailer@6.9.16: {}
normalize-package-data@2.5.0:
dependencies:
@@ -7648,11 +7983,6 @@ snapshots:
object-inspect@1.13.2: {}
- object-is@1.1.6:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
-
object-keys@1.1.1: {}
object.assign@4.1.5:
@@ -7784,6 +8114,8 @@ snapshots:
picocolors@1.1.0: {}
+ picocolors@1.1.1: {}
+
picomatch@2.3.1: {}
pify@2.3.0: {}
@@ -7815,7 +8147,7 @@ snapshots:
postcss-load-config@4.0.2(postcss@8.4.47):
dependencies:
lilconfig: 3.1.2
- yaml: 2.5.1
+ yaml: 2.6.0
optionalDependencies:
postcss: 8.4.47
@@ -7839,7 +8171,7 @@ snapshots:
postcss@8.4.31:
dependencies:
nanoid: 3.3.7
- picocolors: 1.1.0
+ picocolors: 1.1.1
source-map-js: 1.2.1
postcss@8.4.47:
@@ -7848,12 +8180,12 @@ snapshots:
picocolors: 1.1.0
source-map-js: 1.2.1
- preact-render-to-string@5.2.6(preact@10.24.1):
+ preact-render-to-string@5.2.6(preact@10.24.3):
dependencies:
- preact: 10.24.1
+ preact: 10.24.3
pretty-format: 3.8.0
- preact@10.24.1: {}
+ preact@10.24.3: {}
prelude-ls@1.2.1: {}
@@ -7906,10 +8238,10 @@ snapshots:
react-is@16.13.1: {}
- react-markdown@9.0.1(@types/react@18.3.11)(react@18.3.1):
+ react-markdown@9.0.1(@types/react@18.3.12)(react@18.3.1):
dependencies:
'@types/hast': 3.0.3
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
devlop: 1.1.0
hast-util-to-jsx-runtime: 2.3.0
html-url-attributes: 3.0.0
@@ -7923,24 +8255,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- react-remove-scroll-bar@2.3.6(@types/react@18.3.11)(react@18.3.1):
+ react-remove-scroll-bar@2.3.6(@types/react@18.3.12)(react@18.3.1):
dependencies:
react: 18.3.1
- react-style-singleton: 2.2.1(@types/react@18.3.11)(react@18.3.1)
- tslib: 2.7.0
+ react-style-singleton: 2.2.1(@types/react@18.3.12)(react@18.3.1)
+ tslib: 2.8.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- react-remove-scroll@2.6.0(@types/react@18.3.11)(react@18.3.1):
+ react-remove-scroll@2.6.0(@types/react@18.3.12)(react@18.3.1):
dependencies:
react: 18.3.1
- react-remove-scroll-bar: 2.3.6(@types/react@18.3.11)(react@18.3.1)
- react-style-singleton: 2.2.1(@types/react@18.3.11)(react@18.3.1)
- tslib: 2.7.0
- use-callback-ref: 1.3.2(@types/react@18.3.11)(react@18.3.1)
- use-sidecar: 1.1.2(@types/react@18.3.11)(react@18.3.1)
+ react-remove-scroll-bar: 2.3.6(@types/react@18.3.12)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.3.12)(react@18.3.1)
+ tslib: 2.8.0
+ use-callback-ref: 1.3.2(@types/react@18.3.12)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.3.12)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
react-smooth@4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
@@ -7950,18 +8282,18 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-style-singleton@2.2.1(@types/react@18.3.11)(react@18.3.1):
+ react-style-singleton@2.2.1(@types/react@18.3.12)(react@18.3.1):
dependencies:
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.3.1
- tslib: 2.7.0
+ tslib: 2.8.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.25.9
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -8159,6 +8491,33 @@ snapshots:
setimmediate@1.0.5: {}
+ sharp@0.33.5:
+ dependencies:
+ color: 4.2.3
+ detect-libc: 2.0.3
+ semver: 7.6.3
+ optionalDependencies:
+ '@img/sharp-darwin-arm64': 0.33.5
+ '@img/sharp-darwin-x64': 0.33.5
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ '@img/sharp-linux-arm': 0.33.5
+ '@img/sharp-linux-arm64': 0.33.5
+ '@img/sharp-linux-s390x': 0.33.5
+ '@img/sharp-linux-x64': 0.33.5
+ '@img/sharp-linuxmusl-arm64': 0.33.5
+ '@img/sharp-linuxmusl-x64': 0.33.5
+ '@img/sharp-wasm32': 0.33.5
+ '@img/sharp-win32-ia32': 0.33.5
+ '@img/sharp-win32-x64': 0.33.5
+ optional: true
+
shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
@@ -8174,6 +8533,11 @@ snapshots:
signal-exit@4.1.0: {}
+ simple-swizzle@0.2.2:
+ dependencies:
+ is-arrayish: 0.3.2
+ optional: true
+
sirv@2.0.4:
dependencies:
'@polka/url': 1.0.0-next.28
@@ -8206,10 +8570,6 @@ snapshots:
sprintf-js@1.0.3: {}
- stop-iteration-iterator@1.0.0:
- dependencies:
- internal-slot: 1.0.7
-
streamsearch@1.1.0: {}
string-width@4.2.3:
@@ -8224,8 +8584,9 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- string.prototype.includes@2.0.0:
+ string.prototype.includes@2.0.1:
dependencies:
+ call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
@@ -8305,7 +8666,7 @@ snapshots:
dependencies:
inline-style-parser: 0.2.2
- styled-jsx@5.1.1(react@18.3.1):
+ styled-jsx@5.1.6(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
@@ -8332,9 +8693,9 @@ snapshots:
tabbable@6.2.0: {}
- tailwind-merge@2.5.3: {}
+ tailwind-merge@2.5.4: {}
- tailwindcss@3.4.13:
+ tailwindcss@3.4.14:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -8349,7 +8710,7 @@ snapshots:
micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
postcss: 8.4.47
postcss-import: 15.1.0(postcss@8.4.47)
postcss-js: 4.0.1(postcss@8.4.47)
@@ -8389,9 +8750,9 @@ snapshots:
trough@2.2.0: {}
- ts-api-utils@1.3.0(typescript@5.6.2):
+ ts-api-utils@1.4.0(typescript@5.6.3):
dependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
ts-interface-checker@0.1.13: {}
@@ -8402,9 +8763,9 @@ snapshots:
minimist: 1.2.8
strip-bom: 3.0.0
- tslib@2.7.0: {}
+ tslib@2.8.0: {}
- tsx@4.19.1:
+ tsx@4.19.2:
dependencies:
esbuild: 0.23.1
get-tsconfig: 4.8.1
@@ -8453,18 +8814,18 @@ snapshots:
is-typed-array: 1.1.13
possible-typed-array-names: 1.0.0
- typescript-eslint@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2):
+ typescript-eslint@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2))(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
- '@typescript-eslint/parser': 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
- '@typescript-eslint/utils': 8.8.0(eslint@9.11.1(jiti@2.1.2))(typescript@5.6.2)
+ '@typescript-eslint/eslint-plugin': 8.12.2(@typescript-eslint/parser@8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3))(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.2(eslint@9.13.0(jiti@2.1.2))(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint
- supports-color
- typescript@5.6.2: {}
+ typescript@5.6.3: {}
ufo@1.5.4: {}
@@ -8544,26 +8905,26 @@ snapshots:
dependencies:
browserslist: 4.24.0
escalade: 3.2.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
uri-js@4.4.1:
dependencies:
punycode: 2.3.1
- use-callback-ref@1.3.2(@types/react@18.3.11)(react@18.3.1):
+ use-callback-ref@1.3.2(@types/react@18.3.12)(react@18.3.1):
dependencies:
react: 18.3.1
- tslib: 2.7.0
+ tslib: 2.8.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- use-sidecar@1.1.2(@types/react@18.3.11)(react@18.3.1):
+ use-sidecar@1.1.2(@types/react@18.3.12)(react@18.3.1):
dependencies:
detect-node-es: 1.1.0
react: 18.3.1
- tslib: 2.7.0
+ tslib: 2.8.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
utf8@3.0.0: {}
@@ -8573,9 +8934,9 @@ snapshots:
uuid@9.0.1: {}
- valibot@1.0.0-beta.0(typescript@5.6.2):
+ valibot@1.0.0-beta.0(typescript@5.6.3):
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
validate-npm-package-license@3.0.4:
dependencies:
@@ -8627,7 +8988,7 @@ snapshots:
webpack-bundle-analyzer@4.10.1:
dependencies:
'@discoveryjs/json-ext': 0.5.7
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-walk: 8.3.4
commander: 7.2.0
debounce: 1.2.1
@@ -8636,7 +8997,7 @@ snapshots:
html-escaper: 2.0.2
is-plain-object: 5.0.0
opener: 1.5.2
- picocolors: 1.1.0
+ picocolors: 1.1.1
sirv: 2.0.4
ws: 7.5.10
transitivePeerDependencies:
@@ -8712,7 +9073,7 @@ snapshots:
yaml@2.4.5: {}
- yaml@2.5.1: {}
+ yaml@2.6.0: {}
yocto-queue@0.1.0: {}
diff --git a/src/components/icons/Tutanota.tsx b/src/components/icons/Tutanota.tsx
index 450d733..72e4d0a 100644
--- a/src/components/icons/Tutanota.tsx
+++ b/src/components/icons/Tutanota.tsx
@@ -1,62 +1,29 @@
export const TutanotaIcon = ({ className }: { className?: string }) => {
return (
);
};
diff --git a/src/components/icons/Vercel.tsx b/src/components/icons/Vercel.tsx
deleted file mode 100644
index bc2989e..0000000
--- a/src/components/icons/Vercel.tsx
+++ /dev/null
@@ -1,7 +0,0 @@
-export const VercelIcon = ({ className }: { className?: string }) => {
- return (
-
- );
-};
diff --git a/src/components/icons/index.ts b/src/components/icons/index.ts
index 0598757..164d3af 100644
--- a/src/components/icons/index.ts
+++ b/src/components/icons/index.ts
@@ -4,4 +4,3 @@ export { GoogleIcon } from "./Google";
export { MarkdownIcon } from "./Markdown";
export { ModrinthIcon } from "./Modrinth";
export { TutanotaIcon } from "./Tutanota";
-export { VercelIcon } from "./Vercel";
diff --git a/src/lib/minecraftVersions.json b/src/lib/minecraftVersions.json
index 1a719d5..5b9ab9b 100644
--- a/src/lib/minecraftVersions.json
+++ b/src/lib/minecraftVersions.json
@@ -1,4 +1,6 @@
[
+ "1.21.3",
+ "1.21.2",
"1.21.1",
"1.21",
"1.20.6",
@@ -74,8 +76,8 @@
"1.5.2",
"1.5.1",
"1.4.7",
- "1.4.6",
"1.4.5",
+ "1.4.6",
"1.4.4",
"1.4.2",
"1.3.2",
diff --git a/src/middleware.ts b/src/middleware.ts
index 9174a4b..eff68bc 100644
--- a/src/middleware.ts
+++ b/src/middleware.ts
@@ -13,7 +13,7 @@ export const config = {
};
const middleware: NextMiddleware = async (request, event) => {
- const ip = request.ip ?? "127.0.0.1";
+ const ip = request.headers.get("x-real-ip") ?? "127.0.0.1";
const { success, pending, limit, reset, remaining } = await ratelimit.limit(ip);
event.waitUntil(pending);
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 391eb47..08902f4 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -19,7 +19,7 @@ import {
PlusIcon,
ShieldIcon,
} from "lucide-react";
-import { ModrinthIcon, TutanotaIcon, VercelIcon } from "~/components/icons";
+import { ModrinthIcon, TutanotaIcon } from "~/components/icons";
import { getSpecificList } from "~/lib/db";
import { getLists, getPageviews, getUsers } from "~/lib/stats";
@@ -262,16 +262,7 @@ const Home: NextPage = ({ pageviews, users, lists, featuredLists }) =
Email
-
-
-
-
diff --git a/tsconfig.json b/tsconfig.json
index c0d3261..7ec4c45 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -20,5 +20,5 @@
}
},
"include": ["**/*.js", "**/*.cjs", "**/*.ts", "**/*.tsx"],
- "exclude": ["node_modules/*", "**/node_modules/*"]
+ "exclude": ["node_modules/*", "**/node_modules/*", ".next/*"]
}