primer commit

This commit is contained in:
Ichitux
2026-04-07 16:41:13 +02:00
commit 3289a7275a
3743 changed files with 761346 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "discord-rss-bot",
"version": "1.0.0",
"description": "Discord bot that reads messages from a channel and serves them as an RSS feed",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js"
},
"dependencies": {
"discord.js": "^14.14.1",
"express": "^4.18.2",
"sql.js": "^1.10.3",
"rss": "^1.2.2",
"dotenv": "^16.4.5"
},
"engines": {
"node": ">=18.0.0"
}
}