Files
pixelpoebel/package.json
sarah 40be1e181c
Some checks failed
Auto Build and Push Docker Image / build (push) Failing after 8s
Initial: Pixelpöbel Discord Bot
- Modular Discord Bot mit TypeScript und discord.js
- Grouped Commands (/admin, /owner subcommands)
- SQLite Datenbank mit Persistenz
- Twitch Monitoring mit Stream-ID Tracking
- Konfigurierbares Warn-System (Auto-Kick/Mute/Ban)
- Mute mit verschiedenen Zeiteinheiten (sec, min, hour, day, week, month, year, perm)
- Auto-Deploy beim Start (Option 3)
- Docker Support

Features:
- /ping, /help, /twitch (online, add, remove, list)
- /admin (kick, warn, unwarn, mute, unmute, ban, unban, config)
- /owner (deploy, stats, servers)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-22 16:29:30 +01:00

28 lines
773 B
JSON

{
"name": "pixelpoebel",
"version": "1.0.0",
"description": "Moderner, erweiterbarer Discord Bot",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'node --loader ts-node/esm' src/index.ts",
"deploy": "node --loader ts-node/esm src/deploy-commands.ts"
},
"keywords": ["discord", "bot", "typescript", "modular"],
"author": "sarah",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^12.8.0",
"discord.js": "^14.18.0",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.13.9",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}