Finding connecting roads in GeoJSON

I’m writing a program that renders (GeoJSON) OpenStreetMap data. Is there a property in GeoJSON that lists connected roads, or does this need to be done manually?

There’s no property in GeoJSON for that, but you could consider TopoJSON: https://github.com/topojson/topojson

Thank you!