mirror of
https://github.com/tiennm99/store-scraper-bot.git
synced 2026-05-19 05:26:18 +00:00
49726f14c1
- pin form-data/qs/tough-cookie via package.json overrides; clears 3 of 4 Dependabot alerts (request SSRF risk-accepted, no upstream fix) - add GitHub Actions CI (lint + syntax check) on push/PR - add /settings and /setdayswarning to setMyCommands - new npm run describe sets bot profile description via Bot API - README: drop stale preview warning, add Operations section
33 lines
1.1 KiB
JSON
33 lines
1.1 KiB
JSON
{
|
|
"name": "store-scraper-bot",
|
|
"version": "0.3.0",
|
|
"description": "Telegram bot tracking Apple App Store + Google Play app updates. JavaScript implementation, ports java-store-scraper-bot.",
|
|
"type": "module",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"main": "api/webhook.js",
|
|
"scripts": {
|
|
"dev": "vercel dev",
|
|
"deploy": "vercel deploy --prod && npm run register",
|
|
"register": "node --env-file=.env.deploy scripts/register-webhook.js",
|
|
"register:dry": "node --env-file=.env.deploy scripts/register-webhook.js --dry-run",
|
|
"describe": "node --env-file=.env.deploy scripts/set-bot-description.js",
|
|
"describe:dry": "node --env-file=.env.deploy scripts/set-bot-description.js --dry-run",
|
|
"lint": "node scripts/check-secret-leaks.js"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@upstash/redis": "^1.38.0",
|
|
"@vercel/functions": "^3.5.1",
|
|
"app-store-scraper": "^0.18.0",
|
|
"google-play-scraper": "^10.1.2"
|
|
},
|
|
"overrides": {
|
|
"form-data": "^2.5.4",
|
|
"qs": "^6.14.1",
|
|
"tough-cookie": "^4.1.3"
|
|
}
|
|
}
|