diff options
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r-- | src/main/resources/fabric.mod.json | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index bca1407..584bab1 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,26 +1,30 @@ { "schemaVersion": 1, "id": "transit-api", - "version": "0.6.2", + "version": "0.7.1", "name": "Transit API", - "description": "General purpose API for transfering fluid, items, energy, anything.", + "description": "Move about!", "authors": [ - "CCG Kyle" + "CCGKyle" ], "contact": { + "homepage": "https://fabricmc.net/", + "sources": "https://github.com/CoreChg/TransitAPI" }, "license": "MIT", "icon": "assets/transit-api/transit.png", "environment": "*", - - "entrypoints" : { - "main": ["net.transit.InitTransit"] + "entrypoints": { + "main": [ + "net.transit.InitTransit" + ] }, - + "depends": { - "fabricloader": ">=0.4.0" + "fabricloader": ">=0.7.4", + "minecraft": "1.15.x" } } |