AutoSwap/src/main/resources/fabric.mod.json

35 lines
619 B
JSON
Raw Normal View History

2019-10-22 02:46:37 +00:00
{
"schemaVersion": 1,
"id": "autoswap",
"version": "${version}",
"name": "AutoSwap",
"description": "Automatically swap stacks in the hotbar when they run out.",
"authors": [
"Shadowfacts"
],
"contact": {
"homepage": "https://git.shadowfacts.net/minecraft/AutoSwap",
"sources": "https://git.shadowfacts.net/minecraft/AutoSwap"
},
"license": "LGPL-3",
"environment": "*",
"entrypoints": {
"main": [
{
"adapter": "kotlin",
"value": "net.shadowfacts.autoswap.AutoSwap"
}
]
},
2019-10-22 15:05:49 +00:00
"mixins": [
"autoswap.mixins.json"
],
2019-10-22 02:46:37 +00:00
"depends": {
"fabricloader": ">=0.4.0",
"fabric": "*"
}
}