mirror of
https://github.com/arthur-pbty/flint.git
synced 2026-08-01 20:29:03 +02:00
- Implemented a new `/presence` command allowing users to configure the bot's presence with an interactive panel. - Added localization support for Spanish and French languages. - Integrated PostgreSQL for storing and retrieving bot presence states. - Created a Dockerfile and docker-compose configuration for easy deployment. - Updated environment configuration to include database connection settings. - Refactored command handling to include the new presence command. - Enhanced error handling and user feedback for the presence command interactions.
28 lines
591 B
JSON
28 lines
591 B
JSON
{
|
|
"name": "discordjs-framework-template",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=18.17.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"start": "node dist/index.js",
|
|
"deploy:commands": "tsx src/scripts/deployCommands.ts"
|
|
},
|
|
"dependencies": {
|
|
"discord.js": "14.26.2",
|
|
"dotenv": "16.4.5",
|
|
"pg": "^8.20.0",
|
|
"zod": "3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "20.17.24",
|
|
"@types/pg": "^8.20.0",
|
|
"tsx": "4.19.2",
|
|
"typescript": "5.8.2"
|
|
}
|
|
}
|