- POST /webhooks/devlog/<secret> — Discord-Webhook-kompatibel (JSON + Multipart), devlog.py braucht nur die neue URL in tools/.devlog_webhook - Bot postet Embed in Brand-Gelb mit 'D4RKST3R // DEVLOG'-Footer, bis zu 4 Bilder als Grid (Embed-Gruppierung über gemeinsame URL) - Direkt-Archivierung inkl. Bilder (kein Umweg über den Live-Listener) - Neue Env-Var DEVLOG_POST_SECRET, README-Abschnitt neu geschrieben Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
26 lines
614 B
JSON
26 lines
614 B
JSON
{
|
|
"name": "ecobot",
|
|
"version": "0.1.0",
|
|
"description": "Discord-Bot + Webinterface für die EcoGame-Community (Commit-Feed, Devlog-Archiv)",
|
|
"author": "D4rkst3r",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"main": "src/index.js",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "node --watch src/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cookie": "^11.1.2",
|
|
"@fastify/multipart": "^10.1.0",
|
|
"@fastify/static": "^10.1.2",
|
|
"better-sqlite3": "^12.11.1",
|
|
"discord.js": "^14.16.3",
|
|
"dotenv": "^16.4.7",
|
|
"fastify": "^5.10.0"
|
|
}
|
|
}
|