Files
no-twitter-bot/package.json
Lucid Kobold 3ab71df73f
All checks were successful
Main / build-and-push-docker-image (20.x) (pull_request) Successful in 45s
Upgrade dependencies
2025-09-29 01:12:27 -04:00

59 lines
1.6 KiB
JSON

{
"name": "no-twitter-bot",
"type": "module",
"version": "2.1.0",
"private": true,
"packageManager": "yarn@4.9.2",
"description": "This grammY powered Telegram bot is designed to delete Twitter/X links and reformat services from whitelisted groups. This one is the main bot for the LCM Telegram groups/communities.",
"imports": {
"#root/*": "./build/src/*"
},
"author": "Lucid Kobold (Lucid Creations Media) <social@lucidcreations.media>",
"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.2.0",
"@grammyjs/hydrate": "1.6.0",
"@grammyjs/i18n": "1.1.2",
"@grammyjs/parse-mode": "1.11.1",
"@grammyjs/runner": "2.0.3",
"@grammyjs/types": "3.22.2",
"@hono/node-server": "1.19.4",
"callback-data": "1.1.1",
"grammy": "1.38.2",
"hono": "4.9.9",
"iso-639-1": "3.1.5",
"pino": "9.12.0",
"pino-pretty": "13.1.1",
"tsx": "4.20.6",
"valibot": "1.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "5.4.1",
"@types/node": "^24.5.2",
"eslint": "^9.36.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"tsc-watch": "^7.2.0",
"typescript": "^5.9.2"
},
"lint-staged": {
"*.ts": "eslint"
}
}