oblak/cloud-minecraft/cloud-fabric/src/testmod/resources/fabric.mod.json
2021-07-05 02:56:06 -07:00

35 lines
770 B
JSON

{
"schemaVersion": 1,
"id": "cloud-testmod",
"version": "${version}",
"name": "Cloud Test mod",
"description": "Command framework and dispatcher for the JVM",
"authors": [ "Citymonstret", "zml", "jmp" ],
"contact": {
"homepage": "https://commandframework.cloud/",
"sources": "https://github.com/Incendo/cloud"
},
"license": "MIT",
"icon": "assets/cloud/logo.png",
"entrypoints": {
"main": [
"cloud.commandframework.fabric.testmod.FabricExample"
],
"client": [
"cloud.commandframework.fabric.testmod.FabricClientExample"
]
},
"mixins": [
"cloud-testmod.mixins.json"
],
"depends": {
"fabricloader": ">=0.7.4",
"fabric-command-api-v1": "*",
"minecraft": ">=1.14",
"cloud": "*"
}
}