Files
twitch-bot/package.json
2025-09-26 15:14:03 +02:00

32 lines
686 B
JSON

{
"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",
"@twurple/auth": "^7.4.0",
"@twurple/chat": "^7.4.0",
"chalk": "^5.6.2",
"dotenv": "^17.2.2"
}
}