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

45 lines
1.1 KiB
JSON
Raw Normal View History

2024-04-22 02:43:38 +00:00
{
"schemaVersion": 1,
"id": "${modId}",
"version": "${modVersion}",
"name": "${modName}",
"description": "An open source building assist mod featuring vim-like modes.",
"authors": [
"moonleay"
],
"contact": {},
"license": "GPL-3.0",
"environment": "*",
"entrypoints": {
"client": [
{
"adapter": "kotlin",
"value": "net.moonleay.gimble.client.ClientMain"
2024-04-22 02:43:38 +00:00
}
],
"main": [
{
"adapter": "kotlin",
"value": "net.moonleay.gimble.Main"
2024-04-22 02:43:38 +00:00
}
2024-04-22 21:30:24 +00:00
],
"fabric-datagen": [
{
"adapter": "kotlin",
"value": "net.moonleay.gimble.datagen.DataGenerator"
2024-04-22 21:30:24 +00:00
}
2024-04-22 02:43:38 +00:00
]
},
"mixins": [
"${modId}.mixins.json"
],
"depends": {
"fabricloader": ">=${fabricLoaderVersion}",
"fabric": "*",
"fabric-language-kotlin": ">=${fabricKotlinVersion}",
"huebcraftconfiglib": "${configlibVersion}",
"minecraft": "${minecraftVersion}"
},
"accessWidener": "${modId}.accesswidener"
}