Files
discord.js/apps/guide/package.json
Almeida 01f31f374a chore: bump dependencies (#11356)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2025-12-10 17:53:48 +00:00

101 lines
2.8 KiB
JSON

{
"$schema": "https://json.schemastore.org/package.json",
"name": "@discordjs/guide",
"version": "0.1.0",
"description": "Imagine a bot... the most popular way to build discord bots",
"private": true,
"scripts": {
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
"build:check": "tsc --noEmit",
"build:local": "cross-env NEXT_PUBLIC_LOCAL_DEV=true pnpm run build:prod",
"build:prod": "pnpm run build:next",
"build:next": "next build",
"build": "next build",
"preview": "next start",
"preview:cf": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy:cf": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"dev": "next dev -p 3001 --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",
"postinstall": "next typegen && fumadocs-mdx"
},
"type": "module",
"directories": {
"lib": "src"
},
"contributors": [
"Crawl <icrawltogo@gmail.com>"
],
"license": "Apache-2.0",
"keywords": [
"discord",
"api",
"bot",
"client",
"node",
"discordapp",
"discordjs"
],
"repository": {
"type": "git",
"url": "https://github.com/discordjs/discord.js.git",
"directory": "apps/website"
},
"bugs": {
"url": "https://github.com/discordjs/discord.js/issues"
},
"homepage": "https://discord.js.org",
"funding": "https://github.com/discordjs/discord.js?sponsor",
"dependencies": {
"@opennextjs/cloudflare": "^1.14.4",
"@vercel/analytics": "^1.6.1",
"fumadocs-core": "^16.2.4",
"fumadocs-mdx": "^14.1.0",
"fumadocs-twoslash": "^3.1.10",
"fumadocs-ui": "^16.2.4",
"geist": "^1.5.1",
"lucide-react": "^0.559.0",
"mermaid": "^11.12.2",
"next": "^16.0.8",
"next-themes": "^0.4.6",
"p-retry": "^7.1.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"sharp": "^0.34.5",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"twoslash": "^0.3.4"
},
"devDependencies": {
"@shikijs/rehype": "^3.19.0",
"@tailwindcss/postcss": "^4.1.17",
"@types/mdx": "^2.0.13",
"@types/node": "^24.10.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.22",
"babel-plugin-react-compiler": "^1.0.0",
"cpy-cli": "^6.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-config-neon": "^0.2.9",
"eslint-formatter-pretty": "^7.0.0",
"git-describe": "^4.1.1",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"remark-gfm": "^4.0.1",
"remark-rehype": "^11.1.2",
"shiki": "^3.19.0",
"tailwindcss": "^4.1.17",
"turbo": "^2.6.3",
"typescript": "~5.9.3",
"vercel": "^49.1.2",
"wrangler": "^4.53.0"
},
"engines": {
"node": ">=22.12.0"
}
}