apps/bot/package.json (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
{
"name": "@stealth-developers/bot",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "bun src/index.ts | pino-pretty",
"run": "bun src/index.ts"
},
"dependencies": {
"@purrkit/router": "^1.1.0",
"@sapphire/decorators": "^6.1.1",
"@sapphire/discord.js-utilities": "7.3.2",
"@sapphire/framework": "^5.3.2",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-subcommands": "^7.0.1",
"@sapphire/utilities": "^3.18.1",
"@stealth-developers/config": "workspace:*",
"@stealth-developers/db": "workspace:*",
"discord.js": "^14.17.3",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"@sapphire/cli": "^1.9.3",
"@types/node": "^22.10.7",
"@types/ws": "^8.5.13",
"typescript": "~5.4.5"
}
}
|