remove-keyboard-bot/package.json

27 lines
611 B
JSON

{
"name": "remove-keyboard-bot",
"main": "dist/index.js",
"type": "module",
"imports": {
"#root/*": "./dist/src/*"
},
"scripts": {
"dev": "npm run clean && tsc-watch --onSuccess \"tsx index.ts\"",
"build": "npm run clean && tsc --noEmit false",
"clean": "rimraf dist"
},
"devDependencies": {
"@types/node": "^20.9.0",
"rimraf": "^5.0.5",
"tsc-watch": "^6.0.4",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"dependencies": {
"dotenv": "^16.3.1",
"envalid": "^7.3.1",
"grammy": "^1.19.2",
"pino": "^8.16.1",
"pino-pretty": "^10.2.3"
}
}