fabric.mod.json (787B)
1 { 2 "schemaVersion": 1, 3 "id": "simpletech", 4 "version": "${version}", 5 "name": "Simple Tech", 6 "description": "Adds simple blocks to automate tasks", 7 "authors": [ 8 "Ambos" 9 ], 10 "contact": { 11 "homepage": "https://memoryshards.xyz", 12 "sources": "https://github.com/ambos/simple-tech", 13 "issues": "https://github.com/ambos/simple-tech/issues" 14 }, 15 "license": "CC-BY-NC-SA-3.0", 16 "icon": "icon.png", 17 "environment": "*", 18 "entrypoints": { 19 "beforeGameStart": [ 20 "ambos.simpletech.SimpleTech" 21 ], 22 "recipesReady": [ 23 "ambos.simpletech.SimpleTechRecipes" 24 ] 25 }, 26 "mixins": [ 27 "simpletech.mixins.json" 28 ], 29 "depends": { 30 "fabricloader": ">=0.13.3", 31 "halplibe": ">=2.6.0", 32 "minecraft": ">=1.7.7.0" 33 }, 34 "suggests": { 35 } 36 }