Initial commit

This commit is contained in:
CL TheDreWen
2025-10-28 11:40:35 +01:00
committed by GitHub
commit c41ef18355
10 changed files with 800 additions and 0 deletions

33
package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "discordbot-ts-template",
"version": "1.0.0",
"description": "Template for an discord bot project with typescript.",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node .",
"build": "tsc",
"register": "tsc && node dist/deploy-commands.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Under-scape/discordbot-ts-template.git"
},
"keywords": [
"discordjs",
"typescript",
"bot"
],
"author": "TheDreWen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Under-scape/discordbot-ts-template/issues"
},
"homepage": "https://github.com/Under-scape/discordbot-ts-template#readme",
"devDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"discord.js": "^14.24.0",
"dotenv": "^17.2.2"
}
}