Files
discord.js/apps/guide/package.json
2026-05-23 21:42:48 +01: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.19.11",
"@vercel/analytics": "^2.0.1",
"fumadocs-core": "^16.9.0",
"fumadocs-mdx": "^14.3.2",
"fumadocs-twoslash": "^3.2.0",
"fumadocs-ui": "^16.9.0",
"geist": "^1.7.1",
"lucide-react": "^1.16.0",
"mermaid": "^11.15.0",
"next": "^16.2.6",
"next-themes": "^0.4.6",
"p-retry": "^8.0.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"sharp": "^0.34.5",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"twoslash": "^0.3.8"
},
"devDependencies": {
"@shikijs/rehype": "^4.1.0",
"@tailwindcss/postcss": "^4.3.0",
"@types/mdx": "^2.0.13",
"@types/node": "^24.12.4",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.5.0",
"babel-plugin-react-compiler": "^1.0.0",
"cpy-cli": "^7.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"eslint-config-neon": "^0.3.2",
"eslint-formatter-pretty": "^7.1.0",
"git-describe": "^4.1.1",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"remark-gfm": "^4.0.1",
"remark-rehype": "^11.1.2",
"shiki": "^4.1.0",
"tailwindcss": "^4.3.0",
"turbo": "^2.9.14",
"typescript": "~5.9.3",
"vercel": "^54.4.1",
"wrangler": "^4.94.0"
},
"engines": {
"node": ">=22.12.0"
}
}