{
	"$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.0",
		"zod": "npm:zod@^3.25.76",
	},
}
