chore: bump dependencies (#11051)

* chore: bump dependencies

* build: bump discord-api-types to 0.38.22

* fix: fix builders

---------

Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Almeida
2025-08-29 13:01:54 +01:00
committed by GitHub
parent cde757b7cb
commit cc43dadcae
41 changed files with 2494 additions and 2561 deletions

View File

@@ -23,3 +23,4 @@ pids
.tmp
.vscode
.vercel
next-env.d.ts

View File

@@ -1,5 +0,0 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

View File

@@ -14,7 +14,7 @@
"lint": "pnpm run build:check && prettier --check . && cross-env TIMING=1 eslint --format=pretty src ",
"format": "pnpm run build:check && prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src ",
"fmt": "pnpm run format",
"postinstall": "fumadocs-mdx"
"postinstall": "next typegen && fumadocs-mdx"
},
"type": "module",
"directories": {
@@ -48,47 +48,47 @@
"@vercel/analytics": "^1.5.0",
"cmdk": "^1.1.1",
"cva": "1.0.0-beta.3",
"fumadocs-core": "^15.6.3",
"fumadocs-mdx": "^11.6.10",
"fumadocs-twoslash": "^3.1.4",
"fumadocs-ui": "^15.6.3",
"fumadocs-core": "^15.7.0",
"fumadocs-mdx": "^11.8.0",
"fumadocs-twoslash": "^3.1.6",
"fumadocs-ui": "^15.7.0",
"geist": "^1.4.2",
"immer": "^10.1.1",
"jotai": "^2.12.5",
"jotai": "^2.13.1",
"jotai-immer": "^0.4.1",
"lucide-react": "^0.525.0",
"mermaid": "^11.8.1",
"motion": "^12.23.3",
"next": "15.4.0-canary.11",
"next-mdx-remote-client": "^2.1.2",
"lucide-react": "^0.540.0",
"mermaid": "^11.10.0",
"motion": "^12.23.12",
"next": "15.5.1-canary.2",
"next-mdx-remote-client": "^2.1.3",
"next-themes": "^0.4.6",
"nuqs": "^2.4.3",
"react": "^19.1.0",
"react-aria": "^3.41.1",
"react-aria-components": "^1.10.1",
"react-dom": "^19.1.0",
"react": "^19.1.1",
"react-aria": "^3.42.0",
"react-aria-components": "^1.11.0",
"react-dom": "^19.1.1",
"react-error-boundary": "^6.0.0",
"sharp": "^0.34.3",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.5",
"twoslash": "^0.3.2",
"tw-animate-css": "^1.3.7",
"twoslash": "^0.3.4",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@next/env": "^15.3.5",
"@shikijs/rehype": "^3.7.0",
"@tailwindcss/postcss": "^4.1.11",
"@next/env": "^15.5.0",
"@shikijs/rehype": "^3.11.0",
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.11",
"@tailwindcss/vite": "^4.1.12",
"@types/mdx": "^2.0.13",
"@types/node": "^22.16.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/node": "^22.17.2",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"autoprefixer": "^10.4.21",
"babel-plugin-react-compiler": "19.1.0-rc.2",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.30.1",
"cpy-cli": "^6.0.0",
"cross-env": "^10.0.0",
"eslint": "^9.33.0",
"eslint-config-neon": "^0.2.7",
"eslint-formatter-pretty": "^6.0.1",
"git-describe": "^4.1.1",
@@ -97,12 +97,12 @@
"prettier-plugin-tailwindcss": "^0.6.14",
"remark-gfm": "^4.0.1",
"remark-rehype": "^11.1.2",
"shiki": "^3.7.0",
"tailwindcss": "^4.1.11",
"shiki": "^3.11.0",
"tailwindcss": "^4.1.12",
"tailwindcss-react-aria-components": "^2.0.0",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"vercel": "^44.4.1"
"turbo": "^2.5.6",
"typescript": "^5.9.2",
"vercel": "^46.0.2"
},
"engines": {
"node": ">=22.12.0"

View File

@@ -25,6 +25,7 @@ src/styles/unocss.css
.tmp
.vscode
lighthouse-results
next-env.d.ts
.vercel

View File

@@ -1,5 +0,0 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

View File

@@ -16,7 +16,8 @@
"dev": "next dev --turbopack",
"lint": "pnpm run build:check && prettier --check . && cross-env TIMING=1 eslint --format=pretty src ",
"format": "pnpm run build:check && prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src ",
"fmt": "pnpm run format"
"fmt": "pnpm run format",
"postinstall": "next typegen"
},
"type": "module",
"directories": {
@@ -46,52 +47,52 @@
"homepage": "https://discord.js.org",
"funding": "https://github.com/discordjs/discord.js?sponsor",
"dependencies": {
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-collapsible": "^1.1.12",
"@react-icons/all-files": "^4.1.0",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-query": "^5.85.5",
"@vercel/analytics": "^1.5.0",
"@vercel/edge-config": "^1.4.0",
"@vercel/postgres": "^0.10.0",
"cloudflare": "^4.4.1",
"cloudflare": "^4.5.0",
"cmdk": "^1.1.1",
"cva": "1.0.0-beta.3",
"geist": "^1.4.2",
"immer": "^10.1.1",
"jotai": "^2.12.5",
"jotai": "^2.13.1",
"jotai-immer": "^0.4.1",
"lucide-react": "^0.525.0",
"lucide-react": "^0.540.0",
"meilisearch": "^0.50.0",
"motion": "^12.23.3",
"next": "15.4.0-canary.35",
"next-mdx-remote-client": "^2.1.2",
"motion": "^12.23.12",
"next": "15.5.1-canary.2",
"next-mdx-remote-client": "^2.1.3",
"next-themes": "^0.4.6",
"nuqs": "^2.4.3",
"overlayscrollbars": "^2.11.4",
"overlayscrollbars": "^2.11.5",
"overlayscrollbars-react": "^0.5.6",
"react": "^19.1.0",
"react-aria": "^3.41.1",
"react-aria-components": "^1.10.1",
"react-dom": "^19.1.0",
"react": "^19.1.1",
"react-aria": "^3.42.0",
"react-aria-components": "^1.11.0",
"react-dom": "^19.1.1",
"react-error-boundary": "^6.0.0",
"sharp": "^0.34.3",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.5",
"tw-animate-css": "^1.3.7",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@next/env": "^15.3.5",
"@shikijs/rehype": "^3.7.0",
"@tailwindcss/postcss": "^4.1.11",
"@next/env": "^15.5.0",
"@shikijs/rehype": "^3.11.0",
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.11",
"@types/node": "^22.16.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@tailwindcss/vite": "^4.1.12",
"@types/node": "^22.17.2",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"autoprefixer": "^10.4.21",
"babel-plugin-react-compiler": "19.1.0-rc.2",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.30.1",
"cpy-cli": "^6.0.0",
"cross-env": "^10.0.0",
"eslint": "^9.33.0",
"eslint-config-neon": "^0.2.7",
"eslint-formatter-pretty": "^6.0.1",
"git-describe": "^4.1.1",
@@ -100,12 +101,12 @@
"prettier-plugin-tailwindcss": "^0.6.14",
"remark-gfm": "^4.0.1",
"remark-rehype": "^11.1.2",
"shiki": "^3.7.0",
"tailwindcss": "^4.1.11",
"shiki": "^3.11.0",
"tailwindcss": "^4.1.12",
"tailwindcss-react-aria-components": "^2.0.0",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"vercel": "^44.4.1"
"turbo": "^2.5.6",
"typescript": "^5.9.2",
"vercel": "^46.0.2"
},
"engines": {
"node": ">=22.12.0"