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 30 31 32 33 |
{
"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.3.0",
"@sapphire/decorators": "^6.2.0",
"@sapphire/discord.js-utilities": "7.3.2",
"@sapphire/framework": "^5.5.0",
"@sapphire/plugin-logger": "^4.1.0",
"@sapphire/plugin-subcommands": "^7.0.1",
"@sapphire/result": "^2.8.0",
"@sapphire/utilities": "^3.18.2",
"@stealth-developers/config": "workspace:*",
"@stealth-developers/db": "workspace:*",
"discord.js": "^14.26.4",
"fastest-levenshtein": "^1.0.16",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"sharp-phash": "^2.2.0",
"tesseract.js": "^7.0.0"
},
"devDependencies": {
"@sapphire/cli": "^1.9.3",
"@types/node": "^22.20.0",
"@types/ws": "^8.18.1",
"typescript": "~5.4.5"
}
}
|