mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 08:03:30 +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>
28 lines
738 B
JSON
28 lines
738 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@discordjs/template-javascript",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"lint": "prettier --check . && eslint --ext .js,.mjs,.cjs --format=pretty src",
|
|
"format": "prettier --write . && eslint --ext .js,.mjs,.cjs --fix --format=pretty src",
|
|
"start": "node --env-file=.env src/index.js",
|
|
"deploy": "node --env-file=.env src/util/deploy.js"
|
|
},
|
|
"dependencies": {
|
|
"@discordjs/core": "^2.4.0",
|
|
"discord.js": "^14.25.1"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-neon": "^0.3.2",
|
|
"eslint-formatter-pretty": "^7.0.0",
|
|
"prettier": "^3.8.1",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.12.0"
|
|
}
|
|
}
|