initial commit

This commit is contained in:
Darius
2025-09-26 13:41:46 +02:00
commit 9a961363f3
17 changed files with 1553 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "twitch-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc -p .",
"start": "node dist/bot.js",
"dev": "nodemon src/bot.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/node": "^24.5.2",
"@types/tmi.js": "^1.8.6",
"nodemon": "^3.1.10",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"dependencies": {
"@discordjs/collection": "^2.1.1",
"chalk": "^5.6.2",
"dotenv": "^17.2.2",
"tmi.js": "^1.8.5"
}
}