VanillaPlus/src/main/resources/fabric.mod.json
QPCrummer caa0f277f1 Initial Update to 1.19
- Updated to 1.19
- Added mangrove vertical slabs

It has one launch crash that will need to be fixed
2022-07-12 19:19:05 -04:00

47 lines
864 B
JSON

{
"schemaVersion": 1,
"id": "vplus",
"version": "${version}",
"name": "Vanilla Plus",
"description": "Adding things that should be in the vanilla game!",
"authors": [
"Steven"
],
"contact": {
"homepage": "https://nevets.tech/",
"sources": "https://git.nevets.tech/Steven/VanillaPlus"
},
"license": "CC0-1.0",
"icon": "assets/vplus/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"tech.nevets.vplus.Main"
],
"client": [
"tech.nevets.vplus.init.ClientInit"
]
},
"mixins": [
{
"config": "vplus.mixins.json",
"environment": "server"
},
{
"config": "vplus.clientmixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=0.12.9",
"fabric": "*",
"minecraft": "1.19.x",
"java": ">=17"
},
"suggests": {
}
}