Files
discord.js/packages/create-discord-bot/template/Deno/deno.jsonc
Almeida 985b525556 chore: bump dependencies (#11133)
* chore: bump dependencies

* chore: another bump
2025-10-06 22:42:31 +00:00

27 lines
697 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.2.2",
"discord.js": "npm:discord.js@^14.22.1",
"zod": "npm:zod@^3.25.76",
},
}