mirror of
https://github.com/JonasunderscoreJones/McWebserver.git
synced 2025-10-23 11:29:19 +02:00
Added base mod
base mod with basic http server and simple config system
This commit is contained in:
commit
ec3c622896
231 changed files with 3298 additions and 0 deletions
39
build/resources/main/fabric.mod.json
Normal file
39
build/resources/main/fabric.mod.json
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "mcwebserver",
|
||||
"version": "v0.1.0",
|
||||
|
||||
"name": "McWebserver",
|
||||
"description": "A simple webserver that runs alongside the Minecraft Server",
|
||||
"authors": [
|
||||
"Jonas_Jones"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://jonasjones.me/McWebserver",
|
||||
"sources": "https://github.com/J-onasJones/McWebserver",
|
||||
"issues": "https://github.com/J-onasJones/McWebserver/issues"
|
||||
},
|
||||
|
||||
"license": "CC0-1.0",
|
||||
"icon": "assets/mcwebserver/icon.png",
|
||||
|
||||
"environment": "server",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"me.jonasjones.mcwebserver.McWebserver"
|
||||
]
|
||||
},
|
||||
"mixins": [
|
||||
"mcwebserver.mixins.json"
|
||||
],
|
||||
|
||||
"depends": {
|
||||
"fabricloader": ">=0.14.6",
|
||||
"fabric": "*",
|
||||
"minecraft": "~1.19",
|
||||
"java": ">=17"
|
||||
},
|
||||
"suggests": {
|
||||
"another-mod": "*"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue