feat(cmd/deploy): adding the deploy command

This commit is contained in:
Raphael 2025-07-27 18:28:19 +02:00
parent bca3bd0c2a
commit 2b02553a4c
6 changed files with 250 additions and 0 deletions

24
package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "dsc_bot",
"module": "./src/index.ts",
"type": "module",
"scripts": {
"dev": "bun ./src/internal/deploy-command.ts && bun src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun"
},
"private": true,
"devDependencies": {
"@types/bun": "latest",
"eslint": "^9.31.0",
"prisma": "^6.12.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@prisma/client": "^6.12.0",
"discord.js": "^14.21.0",
"dotenv": "^17.2.0",
"mariadb": "^3.4.5"
}
}