diff options
| author | plutorocks <> | 2026-02-24 17:15:29 -0500 |
|---|---|---|
| committer | plutorocks <> | 2026-02-24 17:15:29 -0500 |
| commit | d23825b05ec9cba95429c6ef693f469e99e37b36 (patch) | |
| tree | dffe3ed7d3ddd5590591df381f84c33f6d329abb /src/main/resources/fabric.mod.json | |
Initial commit
Diffstat (limited to 'src/main/resources/fabric.mod.json')
| -rw-r--r-- | src/main/resources/fabric.mod.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..3bc9b56 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,31 @@ +{ + "schemaVersion": 1, + "id": "minecraftirc", + "version": "${version}", + "name": "MinecraftIRC", + "description": "Bare-bones Fabric mod that can interact with IRC servers in-game", + "authors": [ + "plutorocks" + ], + "contact": { + "homepage": "https://plutorocks.dev/", + "sources": "https://github.com/FabricMC/fabric-example-mod" + }, + "license": "GPL-3.0-only", + "icon": "assets/minecraftirc/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + "dev.plutorocks.MinecraftIRC" + ] + }, + "mixins": [ + "minecraftirc.mixins.json" + ], + "depends": { + "fabricloader": ">=0.18.4", + "minecraft": "~1.21.4", + "java": ">=21", + "fabric-api": "*" + } +}
\ No newline at end of file |
