Files
worldmonitor/scripts/package.json
Elie Habib e2686da713 fix(railway): bump scripts engine to Node 20 (Railpack --expose-gc fix) (#1617)
Railway's Railpack builder sets NODE_OPTIONS=--expose-gc which Node 18
rejects during mise install. Node 20+ accepts this flag. All Railway
seed services using scripts/package.json will now build with Node 20.
2026-03-15 02:50:13 +04:00

19 lines
421 B
JSON

{
"name": "worldmonitor-railway-relay",
"version": "1.1.0",
"description": "Railway relay: AIS/OpenSky + RSS proxy + Telegram OSINT poller",
"main": "ais-relay.cjs",
"scripts": {
"start": "node ais-relay.cjs",
"telegram:session": "node telegram/session-auth.mjs"
},
"dependencies": {
"ws": "^8.18.0",
"telegram": "^2.22.2",
"h3-js": "^4.2.1"
},
"engines": {
"node": ">=20"
}
}