27 lines
688 B
JSON
27 lines
688 B
JSON
{
|
|
"name": "maybe-coffee-bot",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"description": "Telegram feedback bot powered by QuestLang scenarios",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"dev": "tsdown --watch",
|
|
"start": "node --env-file=.env dist/index.mjs",
|
|
"lint:check": "eslint ./src",
|
|
"lint:fix": "eslint ./src --fix",
|
|
"type:check": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^6.2.0",
|
|
"@robonen/questlang": "^0.0.4",
|
|
"@robonen/tsconfig": "^0.0.2",
|
|
"@types/node": "^24.10.1",
|
|
"eslint": "^9.39.1",
|
|
"telegraf": "^4.16.3",
|
|
"tsdown": "^0.16.4",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|