HexCasting/Fabric/src/main/resources/fabric.mod.json

79 lines
2 KiB
JSON
Raw Normal View History

2022-04-25 16:40:32 +02:00
{
"schemaVersion": 1,
"id": "hexcasting",
"version": "${version}",
"name": "Hex Casting",
"description": "Cast powerful Hexes on the fly by drawing patterns with a staff.",
"authors": [
"petrak@ (aka gamma-delta)"
],
"contact": {
2022-04-26 17:16:12 +02:00
"homepage": "https://www.curseforge.com/minecraft/mc-mods/hexcasting",
2022-04-25 16:40:32 +02:00
"sources": "https://github.com/gamma-delta/HexMod"
},
"license": "MIT",
2022-04-27 23:54:45 +02:00
"icon": "logo.png",
2022-04-25 16:40:32 +02:00
"environment": "*",
"entrypoints": {
"main": [
2022-11-21 21:07:27 +01:00
{
"adapter": "kotlin",
"value": "at.petrak.hexcasting.fabric.FabricHexInitializer"
}
2022-04-27 23:54:45 +02:00
],
"client": [
2022-11-21 21:07:27 +01:00
{
"adapter": "kotlin",
"value": "at.petrak.hexcasting.fabric.FabricHexClientInitializer"
}
],
2022-05-23 21:21:13 +02:00
"fabric-datagen": [
"at.petrak.hexcasting.fabric.datagen.HexFabricDataGenerators"
],
"cardinal-components": [
"at.petrak.hexcasting.fabric.cc.HexCardinalComponents"
2022-06-01 03:43:05 +02:00
],
2022-06-02 03:51:12 +02:00
"emi": [
"at.petrak.hexcasting.fabric.interop.emi.HexEMIPlugin"
2022-11-21 21:07:27 +01:00
],
"modmenu": [
"at.petrak.hexcasting.fabric.interop.ModMenuInterop"
2022-04-25 16:40:32 +02:00
]
},
"mixins": [
2022-05-11 23:23:39 +02:00
"hexplat.mixins.json",
"fabricasting.mixins.json"
2022-04-25 16:40:32 +02:00
],
2022-06-02 16:57:18 +02:00
"accessWidener": "fabricasting.accesswidener",
2022-04-25 16:40:32 +02:00
"depends": {
2022-11-04 18:21:08 +01:00
"minecraft": "=1.19.2",
2022-04-25 16:40:32 +02:00
"java": ">=17",
2022-11-04 18:21:08 +01:00
"fabricloader": ">=0.14",
"fabric": ">=0.64",
2022-04-25 16:40:32 +02:00
"fabric-language-kotlin": ">=1.7.4+kotlin.1.6.21",
"cardinal-components": "~5.0.0",
"paucal": "0.6.x",
"cloth-config": "8.2.x",
"patchouli": ">=1.19.2-77"
},
"suggests": {
2022-11-04 18:21:08 +01:00
"gravitychanger": "0.7.21+fabric",
"pehkui": "3.6.0+1.14.4-1.19"
},
"custom": {
"cardinal-components": [
"hexcasting:brainswept",
"hexcasting:favored_colorizer",
"hexcasting:sentinel",
"hexcasting:flight",
2023-02-18 01:06:12 +01:00
"hexcasting:altiora",
2022-05-14 22:15:25 +02:00
"hexcasting:harness",
"hexcasting:patterns",
"hexcasting:colorizer",
2022-06-16 23:05:09 +02:00
"hexcasting:iota_holder",
"hexcasting:media_holder",
"hexcasting:hex_holder"
]
2022-04-25 16:40:32 +02:00
}
2022-05-01 19:38:58 +02:00
}