AeThex-Bot-Master/sentinel-bot/package.json
sirpiglr fbd203dcfc Add Aethex Sentinel bot with security and federation features
Initializes the Aethex Sentinel bot project, including package.json, Prisma schema, core client, configuration, health server, and event listeners for audit logs and member updates. Implements commands for federation management, sentinel security status, and ticket system.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: e72fc1b7-94bd-4d6c-801f-cbac2fae245c
Replit-Commit-Checkpoint-Type: intermediate_checkpoint
Replit-Commit-Event-Id: fc082e4d-cb52-4049-9c2e-69ba6c2e78d4
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3bdfff67-975a-46ad-9845-fbb6b4a4c4b5/e72fc1b7-94bd-4d6c-801f-cbac2fae245c/jW8PJKQ
Replit-Helium-Checkpoint-Created: true
2025-12-07 21:10:57 +00:00

27 lines
718 B
JSON

{
"name": "aethex-sentinel",
"version": "1.0.0",
"description": "Enterprise-grade Discord bot for managing a federation of servers",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@sapphire/framework": "^5.2.1",
"@sapphire/plugin-scheduled-tasks": "^10.0.1",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^20.17.6",
"prisma": "^5.22.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}