2024-04-22 02:43:38 +00:00
|
|
|
{
|
|
|
|
"schemaVersion": 1,
|
|
|
|
"id": "${modId}",
|
|
|
|
"version": "${modVersion}",
|
|
|
|
"name": "${modName}",
|
2024-04-27 16:18:58 +00:00
|
|
|
"description": "An open source building assist mod featuring vim-like modes and modifiers.",
|
2024-04-22 02:43:38 +00:00
|
|
|
"authors": [
|
|
|
|
"moonleay"
|
|
|
|
],
|
2024-04-27 16:18:58 +00:00
|
|
|
"icon": "assets/${modId}/logo.png",
|
|
|
|
"contact": {
|
|
|
|
"email": "contact@moonleay.net",
|
|
|
|
"homepage": "https://moonleay.net",
|
|
|
|
"sources": "https://git.moonleay.net/Fabric/Gimble"
|
|
|
|
},
|
2024-04-22 02:43:38 +00:00
|
|
|
"license": "GPL-3.0",
|
|
|
|
"environment": "*",
|
|
|
|
"entrypoints": {
|
|
|
|
"client": [
|
|
|
|
{
|
|
|
|
"adapter": "kotlin",
|
2024-04-23 16:12:39 +00:00
|
|
|
"value": "net.moonleay.gimble.client.ClientMain"
|
2024-04-22 02:43:38 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"main": [
|
|
|
|
{
|
|
|
|
"adapter": "kotlin",
|
2024-04-23 16:12:39 +00:00
|
|
|
"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",
|
2024-04-23 16:12:39 +00:00
|
|
|
"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}",
|
|
|
|
"minecraft": "${minecraftVersion}"
|
|
|
|
},
|
|
|
|
"accessWidener": "${modId}.accesswidener"
|
|
|
|
}
|