Files
worldmonitor/scripts/package.json
Elie Habib c10c853b07 fix(seed): add tsx to scripts/package.json for Railway runtime (#2871)
tsx is needed at runtime by seed-resilience-scores.mjs to import
TypeScript scorer files via --import tsx/esm. Was only in root
devDependencies, which Railway skips in production.
2026-04-09 16:04:00 +04:00

28 lines
685 B
JSON

{
"name": "worldmonitor-railway-relay",
"version": "1.1.1",
"description": "Railway relay: AIS/OpenSky + RSS proxy + Telegram OSINT poller",
"main": "ais-relay.cjs",
"scripts": {
"start": "node ais-relay.cjs",
"notification-relay": "node notification-relay.cjs",
"telegram:session": "node telegram/session-auth.mjs"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@aws-sdk/client-s3": "^3.1009.0",
"convex": "^1",
"exceljs": "^4.4.0",
"h3-js": "^4.2.1",
"resend": "^4",
"sax": "^1.6.0",
"telegram": "^2.22.2",
"undici": "^7.0.0",
"tsx": "^4.21.0",
"ws": "^8.18.0"
},
"engines": {
"node": ">=20"
}
}