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 |
{
"name": "utils",
"private": true,
"type": "module",
"main": "src/index.ts",
"module": "index.ts",
"scripts": {
"fmt": "bunx oxfmt fmt src tests",
"lint": "bunx oxlint lint src tests"
},
"dependencies": {
"@purrkit/core": "^1.0.1",
"@sapphire/result": "^2.8.0",
"discord.js": "^14.26.4",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"real-require": "^1.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "latest",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0"
},
"peerDependencies": {
"typescript": "^5"
}
}
|