feat: initial bot implementation

This commit is contained in:
Luna
2026-02-13 20:56:23 +01:00
commit e61d0be738
10 changed files with 1855 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "discord-ai-companion",
"version": "1.0.0",
"description": "Discord AI companion bot with automatic memory and OpenAI integration",
"main": "src/bot.js",
"type": "module",
"scripts": {
"start": "node src/bot.js",
"dev": "nodemon src/bot.js"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"discord.js": "^14.15.2",
"dotenv": "^16.4.5",
"openai": "^4.58.1"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}