Files
no-twitter-bot/package.json
Lucid Kobold fa1e07e4af First build
2025-02-19 11:11:47 -05:00

63 lines
1.6 KiB
JSON

{
"name": "telegram-bot-template",
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447",
"description": "Telegram bot starter template",
"imports": {
"#root/*": "./build/src/*"
},
"author": "deptyped <deptyped@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"lint": "eslint .",
"format": "eslint . --fix",
"typecheck": "tsc",
"build": "tsc --noEmit false",
"dev": "tsc-watch --onSuccess \"tsx ./src/main.ts\"",
"start": "tsc && tsx ./src/main.ts",
"start:force": "tsx ./src/main.ts",
"prepare": "husky || true",
"pretty": "prettier --write ."
},
"dependencies": {
"@grammyjs/auto-chat-action": "0.1.1",
"@grammyjs/commands": "1.0.5",
"@grammyjs/hydrate": "1.4.1",
"@grammyjs/i18n": "1.1.2",
"@grammyjs/parse-mode": "1.11.1",
"@grammyjs/runner": "2.0.3",
"@grammyjs/types": "3.19.0",
"@hono/node-server": "1.13.8",
"callback-data": "1.1.1",
"grammy": "1.35.0",
"hono": "4.7.2",
"iso-639-1": "3.1.5",
"pino": "9.6.0",
"pino-pretty": "13.0.0",
"tsx": "4.19.3",
"valibot": "0.42.1"
},
"devDependencies": {
"@antfu/eslint-config": "4.3.0",
"@eslint/js": "^9.20.0",
"@types/node": "^22.13.4",
"eslint": "^9.20.1",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"tsc-watch": "^6.2.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
},
"lint-staged": {
"*.ts": "eslint"
}
}