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

35 lines
668 B
JSON
Raw Normal View History

2020-10-27 20:13:31 +01:00
{
"schemaVersion": 1,
"id": "combit",
"version": "${version}",
2021-12-29 23:36:10 +01:00
"name": "ComBit",
2020-10-27 20:13:31 +01:00
"description": "Removes delays in combat",
"authors": [
"JFronny"
],
"contact": {},
"license": "MIT",
"icon": "assets/combit/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"io.gitlab.jfronny.combit.Combit"
2021-12-29 23:36:10 +01:00
],
"libjf:config": [
"io.gitlab.jfronny.combit.CombitConfig"
2020-10-27 20:13:31 +01:00
]
},
"mixins": [
2022-07-28 15:43:08 +02:00
"combit.mixins.json",
{
"config": "combit.client.mixins.json",
"environment": "client"
}
2020-10-27 20:13:31 +01:00
],
"depends": {
2021-12-29 23:36:10 +01:00
"fabricloader": ">=0.12.12",
"minecraft": "*",
2022-08-28 15:21:37 +02:00
"libjf-config-core-v1": ">=3.0.0"
2020-10-27 20:13:31 +01:00
}
}