Files
uno/src/main/resources/fabric.mod.json
Jottyfan e56696d28e
Some checks failed
build / build (push) Has been cancelled
Welcome and Setup
2026-02-13 20:45:56 +01:00

34 lines
671 B
JSON

{
"schemaVersion": 1,
"id": "uno",
"version": "${version}",
"name": "Uno",
"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/uno/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"de.jottyfan.minecraft.gta.Uno"
],
"client": [
"de.jottyfan.minecraft.gta.UnoClient"
]
},
"mixins": [
"uno.mixins.json"
],
"depends": {
"fabricloader": ">=0.18.4",
"minecraft": "~26.1-",
"java": ">=25",
"fabric-api": "*"
}
}