(Feat): Initial Commit

This commit is contained in:
2025-12-12 16:54:00 +00:00
parent 101d093965
commit 470e5a13aa
10 changed files with 1330 additions and 173 deletions

34
deno.json Normal file
View File

@@ -0,0 +1,34 @@
{
"compilerOptions": {
"strict": true,
"lib": ["deno.window", "esnext"],
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitReturns": true
},
"imports": {
"discord.js": "npm:discord.js@^14.14.1",
"@discordjs/rest": "npm:@discordjs/rest@^2.2.0",
"@toml-tools/parser": "npm:@toml-tools/parser@^1.0.0"
},
"tasks": {
"start": "deno run --allow-net --allow-read --allow-write --allow-env --allow-ffi --unstable-ffi --env src/index.ts",
"dev": "deno run --watch --allow-net --allow-read --allow-write --allow-env --allow-ffi --unstable-ffi --env src/index.ts",
"check": "deno check src/index.ts",
"lint": "deno lint",
"fmt": "deno fmt"
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"singleQuote": true,
"proseWrap": "preserve"
},
"lint": {
"rules": {
"tags": ["recommended"]
}
}
}