zombies-utils_fabric/src/main/resources/fabric.mod.json
Stachelbeere1248 0c258f8680
mod skeleton 1
this commit adds some skeleton using fabric-api for later implementation:
- renderer
- hypixel mod api
- timer
2025-05-10 14:01:24 +02:00

36 lines
790 B
JSON

{
"schemaVersion": 1,
"id": "zombies-utils",
"version": "${version}",
"name": "Zombies Utils",
"description": "An all-in-one mod for Hypixel Zombies. Targets legit speed-runners.",
"authors": [
"Stachelbeere1248"
],
"contact": {
"homepage": "https://stachel.xyz",
"sources": "https://git.stachel.xyz/zombies/zombies-utils_fabric"
},
"license": "MIT",
"icon": "assets/zombies-utils/icon.png",
"environment": "client",
"entrypoints": {
"client": [
"xyz.stachel.zombiesutils.ZombiesUtilsClient"
]
},
"mixins": [
{
"config": "zombies-utils.client.mixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=0.16.14",
"minecraft": "~1.21.5",
"java": ">=21",
"fabric-api": "*",
"hypixel-mod-api": ">=1.0.1"
},
"suggests": {}
}