mirror of
https://codeberg.org/moonleay/Gimbal.git
synced 2024-11-26 06:32:07 +00:00
39 lines
1,004 B
JSON
39 lines
1,004 B
JSON
|
{
|
||
|
"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.mods.gimble.client.ClientMain"
|
||
|
}
|
||
|
],
|
||
|
"main": [
|
||
|
{
|
||
|
"adapter": "kotlin",
|
||
|
"value": "net.moonleay.mods.gimble.Main"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"mixins": [
|
||
|
"${modId}.mixins.json"
|
||
|
],
|
||
|
"depends": {
|
||
|
"fabricloader": ">=${fabricLoaderVersion}",
|
||
|
"fabric": "*",
|
||
|
"fabric-language-kotlin": ">=${fabricKotlinVersion}",
|
||
|
"huebcraftconfiglib": "${configlibVersion}",
|
||
|
"minecraft": "${minecraftVersion}"
|
||
|
},
|
||
|
"accessWidener": "${modId}.accesswidener"
|
||
|
}
|