Currently, this mod breaks the se-space-pipe-to-ground recipe; the only ingredient is [se-space-pipe x10], so recipe ends up without any ingredients.
I quick-fixed this by adding an additional compatibility file for SE with:
-- BEGIN --
if not mods["space-exploration"] then return end
data.raw.recipe["se-space-pipe-to-ground"].ingredients = {
{ type = "item", name = "se-space-pipe", amount = 2, } -- arbitrarily chosen
}
-- END --
Haven't run into any other issues yet, though; otherwise loving this mod so far!