Files
flint/package.json
T
Puechberty Arthur f6a2e2b970 feat: update environment configuration and enhance presence management
- Updated .env.example to use more secure database credentials.
- Modified Dockerfile to remove unnecessary data copy.
- Enhanced README with additional setup instructions and security notes.
- Updated docker-compose files to improve database connection handling and security.
- Added error messages for invalid channel and role resolutions in locales.
- Introduced new scripts for code quality checks in package.json.
- Refactored presence management logic to improve state handling and timer management.
- Added tests for argument tokenizer, command definition, presence types, and template variables.
2026-04-12 16:07:27 +02:00

31 lines
748 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",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --import tsx --test src/**/*.test.ts",
"check": "npm run typecheck && npm run test",
"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"
}
}