From 7372e631e902a3cd9a38f45f4ae072806f8fe462 Mon Sep 17 00:00:00 2001 From: Big Duckie Date: Fri, 29 Nov 2024 12:36:52 -0700 Subject: [PATCH] Mark mod as library. --- src/main/resources/fabric.mod.json | 61 +++++++++++++++++------------- 1 file changed, 34 insertions(+), 27 deletions(-) diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 53536be..6762cb1 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,29 +1,36 @@ { - "schemaVersion": 1, - "id": "static-content", - "version": "${version}", - "name": "Static Content", - "description": "Wrapper for Static Data that allows for easy registration of game content with cross-mod compatibility.", - "authors": [ - "Big Duckie", - "Draylar" - ], - "contact": { - "homepage": "https://fabricmc.net/", - "sources": "https://github.com/FabricMC/fabric-example-mod" - }, - "license": "MIT", - "icon": "assets/static-content/icon.png", - "environment": "*", - "entrypoints": { - "main": [ - "dev.bigduckie.staticcontent.StaticContent" - ] - }, - "depends": { - "fabricloader": ">=0.16.7", - "minecraft": "~1.20.1", - "java": ">=17", - "fabric-api": "*" - } + "schemaVersion": 1, + "id": "static-content", + "version": "${version}", + "name": "Static Content", + "description": "Wrapper for Static Data that allows for easy registration of game content with cross-mod compatibility.", + "authors": [ + "Big Duckie", + "Draylar" + ], + "contact": { + "homepage": "https://fabricmc.net/", + "sources": "https://github.com/FabricMC/fabric-example-mod" + }, + "license": "MIT", + "icon": "assets/static-content/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + "dev.bigduckie.staticcontent.StaticContent" + ] + }, + "custom": { + "modmenu": { + "badges": [ + "library" + ] + } + }, + "depends": { + "fabricloader": ">=0.16.7", + "minecraft": "~1.20.1", + "java": ">=17", + "fabric-api": "*" + } } \ No newline at end of file