Files
no-twitter-bot/package.json
Lucid Kobold 6f8d49b21b
All checks were successful
Main / build-and-push-docker-image (20.x) (pull_request) Successful in 49s
Upgraded dependencies
2025-09-03 15:52:09 -04:00

59 lines
1.6 KiB
JSON

{
"name": "no-twitter-bot",
"type": "module",
"version": "2.0.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.1",
"@hono/node-server": "1.19.1",
"callback-data": "1.1.1",
"grammy": "1.38.2",
"hono": "4.9.6",
"iso-639-1": "3.1.5",
"pino": "9.9.1",
"pino-pretty": "13.1.1",
"tsx": "4.20.5",
"valibot": "0.42.1"
},
"devDependencies": {
"@antfu/eslint-config": "4.19.0",
"@types/node": "^22.18.0",
"eslint": "^9.34.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"tsc-watch": "^6.3.1",
"typescript": "^5.9.2"
},
"lint-staged": {
"*.ts": "eslint"
}
}