This commit is contained in:
2026-01-01 04:47:41 +01:00
parent 3053a86d1b
commit aabd595816
19 changed files with 993 additions and 82 deletions

View File

@@ -1,38 +1,31 @@
{
"schemaVersion": 1,
"id": "smooth-double-doors",
"version": "${version}",
"name": "Smooth Double Doors",
"description": "This is an example description! Tell everyone what your mod is about!",
"authors": [
"Me!"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
},
"license": "CC0-1.0",
"icon": "assets/smooth-double-doors/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"com.straice.smoothdoors.SmoothDoubleDoors"
],
"client": [
"com.straice.smoothdoors.SmoothDoubleDoorsClient"
]
},
"mixins": [
"smooth-double-doors.mixins.json",
{
"config": "smooth-double-doors.client.mixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=0.18.4",
"minecraft": "~1.21.8",
"java": ">=21",
"fabric-api": "*"
}
"schemaVersion": 1,
"id": "smooth-double-doors",
"version": "${version}",
"name": "Smooth Double Doors",
"description": "Double doors + double trapdoors + smooth animations (no resource pack).",
"authors": ["DekinDev"],
"contact": {
"sources": "https://git.straice.com/DekinDev/Smooth-Double-Doors",
"issues": "https://git.straice.com/DekinDev/Smooth-Double-Doors/issues"
},
"license": "MPL-2.0",
"icon": "assets/smooth-double-doors/icon.png",
"environment": "*",
"entrypoints": {
"main": ["com.straice.smoothdoors.SmoothDoubleDoors"],
"client": ["com.straice.smoothdoors.SmoothDoubleDoorsClient"],
"modmenu": ["com.straice.smoothdoors.compat.ModMenuIntegration"]
},
"mixins": [
"smooth-double-doors.mixins.json",
"smooth-double-doors.client.mixins.json"
],
"depends": {
"fabricloader": ">=0.18.4",
"minecraft": ">=1.21.8 <=1.21.11",
"java": ">=21",
"fabric-api": "*",
"modmenu": "*"
}
}