mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
* feat: upgrade zod to v4 * fix: requested changes --------- Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
27 lines
696 B
JSON
27 lines
696 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json",
|
|
"tasks": {
|
|
"lint": "deno lint",
|
|
"deploy": "deno run --env-file --allow-read --allow-env --allow-net src/util/deploy.ts",
|
|
"format": "deno fmt",
|
|
"fmt": "deno fmt",
|
|
"start": "deno run --env-file --allow-read --allow-env --allow-net src/index.ts",
|
|
},
|
|
"fmt": {
|
|
"useTabs": true,
|
|
"lineWidth": 120,
|
|
"singleQuote": true,
|
|
},
|
|
"lint": {
|
|
"rules": {
|
|
"tags": ["recommended"],
|
|
"exclude": ["require-await", "no-await-in-sync-fn"],
|
|
},
|
|
},
|
|
"imports": {
|
|
"@discordjs/core": "npm:@discordjs/core@^2.3.0",
|
|
"discord.js": "npm:discord.js@^14.24.2",
|
|
"zod": "npm:zod@^4.1.12",
|
|
},
|
|
}
|