Adds two Node.js Discord bots for the AeThex platform, enabling features such as account linking, role management, profile viewing, community posts, and more, with extensive Supabase integration. Replit-Commit-Author: Agent Replit-Commit-Session-Id: e72fc1b7-94bd-4d6c-801f-cbac2fae245c Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: f8fda02a-6ff3-4bdf-87d4-fdbef7f9a2ce Replit-Helium-Checkpoint-Created: true
34 lines
760 B
JSON
34 lines
760 B
JSON
{
|
|
"name": "aethex-discord-bot",
|
|
"version": "1.0.0",
|
|
"description": "AeThex Discord Bot - Account linking, role management, and realm selection",
|
|
"main": "bot.js",
|
|
"type": "commonjs",
|
|
"scripts": {
|
|
"start": "node bot.js",
|
|
"dev": "nodemon bot.js",
|
|
"register-commands": "node scripts/register-commands.js"
|
|
},
|
|
"keywords": [
|
|
"discord",
|
|
"bot",
|
|
"aethex",
|
|
"role-management",
|
|
"discord.js"
|
|
],
|
|
"author": "AeThex Team",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@discord/embedded-app-sdk": "^2.4.0",
|
|
"@supabase/supabase-js": "^2.38.0",
|
|
"axios": "^1.6.0",
|
|
"discord.js": "^14.13.0",
|
|
"dotenv": "^16.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
}
|
|
}
|