mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
* build: upgrade dependencies * build: upgrade pnpm * test: fix voice * build: regenerate file * fix: reports by ESLint * fix: docs errors * build: downgrades * build: no upstream bump * build: discord-api-types 0.38.40 * build: pnpm 10.30.1 * fix: ignore @typescript-eslint/no-duplicate-type-constituents * fix: jsdoc lint in api-extractor * build: update template for ESLint Co-authored-by: Almeida <github@almeidx.dev> * chore: explicit TODO Co-authored-by: Qjuh <76154676+Qjuh@users.noreply.github.com> * chore: revert typings lint change --------- Co-authored-by: Qjuh <76154676+Qjuh@users.noreply.github.com> Co-authored-by: Almeida <github@almeidx.dev>
101 lines
2.8 KiB
JSON
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.16.5",
|
|
"@vercel/analytics": "^1.6.1",
|
|
"fumadocs-core": "^16.6.3",
|
|
"fumadocs-mdx": "^14.2.7",
|
|
"fumadocs-twoslash": "^3.1.13",
|
|
"fumadocs-ui": "^16.6.3",
|
|
"geist": "^1.7.0",
|
|
"lucide-react": "^0.559.0",
|
|
"mermaid": "^11.12.3",
|
|
"next": "^16.1.6",
|
|
"next-themes": "^0.4.6",
|
|
"p-retry": "^7.1.1",
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4",
|
|
"sharp": "^0.34.5",
|
|
"tailwind-merge": "^3.5.0",
|
|
"tw-animate-css": "^1.4.0",
|
|
"twoslash": "^0.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@shikijs/rehype": "^3.22.0",
|
|
"@tailwindcss/postcss": "^4.2.0",
|
|
"@types/mdx": "^2.0.13",
|
|
"@types/node": "^24.10.13",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"autoprefixer": "^10.4.24",
|
|
"babel-plugin-react-compiler": "^1.0.0",
|
|
"cpy-cli": "^6.0.0",
|
|
"cross-env": "^10.1.0",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-neon": "^0.3.2",
|
|
"eslint-formatter-pretty": "^7.0.0",
|
|
"git-describe": "^4.1.1",
|
|
"postcss": "^8.5.6",
|
|
"prettier": "^3.8.1",
|
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
"remark-gfm": "^4.0.1",
|
|
"remark-rehype": "^11.1.2",
|
|
"shiki": "^3.22.0",
|
|
"tailwindcss": "^4.2.0",
|
|
"turbo": "^2.8.10",
|
|
"typescript": "~5.9.3",
|
|
"vercel": "^49.2.0",
|
|
"wrangler": "^4.67.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.12.0"
|
|
}
|
|
}
|