Files
store-scraper-bot/package.json
tiennm99andGitHub c52ab5264e fix: move overrides to pnpm-workspace.yaml, upgrade to patched versions (#8)
The existing top-level "overrides" field was npm syntax and ignored by pnpm.
Move overrides to pnpm-workspace.yaml where pnpm 11 reads them. Also bump
form-data to ^2.5.5 (was ^2.5.4) and tough-cookie to ^4.1.4 (was ^4.1.3).
This forces the patched versions throughout the tree, replacing form-data@2.3.3
and tough-cookie@2.5.0 that came in via app-store-scraper -> request.
2026-05-24 00:03:50 +07:00

32 lines
1.0 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": ">=24"
},
"main": "api/webhook.js",
"scripts": {
"dev": "vercel dev",
"deploy": "vercel deploy --prod && pnpm 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"
},
"packageManager": "pnpm@11.1.1",
"license": "Apache-2.0",
"dependencies": {
"@upstash/redis": "^1.38.0",
"@vercel/functions": "^3.6.0",
"app-store-scraper": "^0.18.0",
"google-play-scraper": "^10.1.2"
},
"pnpm": {
"onlyBuiltDependencies": ["es5-ext"]
}
}