Files
flint/package.json
T
Puechberty Arthur be8288ab5e feat: implement utility commands and command framework
- Add advanced command for complex argument handling.
- Introduce ping command for latency checking.
- Create argument parser for prefix and slash commands.
- Define command structure and registry for command management.
- Implement command deployment for Discord application commands.
- Add internationalization support for commands.
- Create handlers for prefix and slash command execution.
- Establish command execution context and permissions handling.
- Set up environment configuration with dotenv and zod.
- Add TypeScript configuration for strict type checking.
2026-04-12 02:34:53 +02:00

26 lines
542 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",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "20.17.24",
"tsx": "4.19.2",
"typescript": "5.8.2"
}
}