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

35 lines
613 B
JSON
Raw Normal View History

2020-12-19 23:30:50 +00:00
{
"schemaVersion": 1,
2020-12-20 04:19:55 +00:00
"id": "kerosene",
2020-12-19 23:30:50 +00:00
"version": "${version}",
2020-12-20 04:19:55 +00:00
"name": "Kerosene",
"description": "Shared library",
2020-12-19 23:30:50 +00:00
"authors": [
"janeptrv"
],
"contact": {
"homepage": "https://j4.pm/",
2020-12-20 04:19:55 +00:00
"sources": "https://gitdab.com/jane/kerosene"
2020-12-19 23:30:50 +00:00
},
"license": "WTFPL",
2020-12-20 04:19:55 +00:00
"icon": "assets/kerosene/icon.png",
2020-12-19 23:30:50 +00:00
"environment": "*",
"entrypoints": {
"main": [
2020-12-20 04:19:55 +00:00
"pm.j4.kerosene.KeroseneMod"
2020-12-19 23:30:50 +00:00
]
},
"mixins": [
2020-12-20 04:19:55 +00:00
"kerosene.mixins.json"
2020-12-19 23:30:50 +00:00
],
"depends": {
"fabricloader": ">=0.7.4",
"fabric": "*",
"minecraft": "1.16.x"
},
"suggests": {
"flamingo": "*"
}
}