mc_rebalance/src/main/resources/fabric.mod.json
patience 028213acf7
Some checks are pending
build / build (push) Waiting to run
New version for Fabric 1.21
Doesn't have some things that can now be handled using data, e.g. equipment

Certain other changes are upcoming, however
2026-01-27 02:21:56 +00:00

42 lines
924 B
JSON

{
"schemaVersion": 1,
"id": "mc_rebalance",
"version": "${version}",
"name": "MC Rebalance",
"description": "This is an example description! Tell everyone what your mod is about!",
"authors": [
"Me!"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
},
"license": "CC0-1.0",
"icon": "assets/mc_rebalance/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"xyz.nearmisses.patience.mc_rebalance.MCRebalance"
],
"client": [
"xyz.nearmisses.patience.mc_rebalance.MCRebalanceClient"
],
"fabric-datagen": [
"xyz.nearmisses.patience.mc_rebalance.MCRebalanceDataGenerator"
]
},
"mixins": [
"mc_rebalance.mixins.json",
{
"config": "mc_rebalance.client.mixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=0.18.4",
"minecraft": "~1.21.1",
"java": ">=21",
"fabric-api": "*"
}
}