feat: init

This commit is contained in:
2025-10-24 04:43:47 +07:00
commit 8b83c15ab1
13 changed files with 4079 additions and 0 deletions

35
package.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "maybe-coffee-bot",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "Maybe Coffee Telegram bot for collecting feedback about vending coffee machines",
"license": "MIT",
"keywords": [
"telegram",
"bot",
"feedback",
"coffee"
],
"scripts": {
"dev": "node --env-file=.env --watch-path=dist dist/index.js",
"build": "tsdown",
"start": "node --env-file=.env dist/index.js",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@grammyjs/conversations": "^2.1.0",
"better-sqlite3": "^12.4.1",
"grammy": "^1.38.3"
},
"devDependencies": {
"@antfu/eslint-config": "^6.0.0",
"@robonen/tsconfig": "^0.0.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.9.1",
"eslint": "^9.38.0",
"tsdown": "^0.15.9",
"typescript": "^5.9.3"
}
}