mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-05-12 10:06:23 +02:00
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.
19 lines
421 B
JSON
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"
|
|
}
|
|
}
|