diff options
author | SHsuperCM <shsupercm@gmail.com> | 2022-01-21 10:33:11 +0200 |
---|---|---|
committer | SHsuperCM <shsupercm@gmail.com> | 2022-01-21 10:33:11 +0200 |
commit | c3c547c6f950ebbc047cd31672f6a794483a9d0e (patch) | |
tree | 9c183dc64ef7f35a3ab635f389c793e233ebb3fb /defaults/src/main/resources/fabric.mod.json | |
parent | cc08a531122bf5533abe06ae9a80a710a4a625b0 (diff) | |
download | CITResewn-c3c547c6f950ebbc047cd31672f6a794483a9d0e.tar.gz CITResewn-c3c547c6f950ebbc047cd31672f6a794483a9d0e.tar.bz2 CITResewn-c3c547c6f950ebbc047cd31672f6a794483a9d0e.zip |
Added separate project for defaults & set up building
Diffstat (limited to 'defaults/src/main/resources/fabric.mod.json')
-rw-r--r-- | defaults/src/main/resources/fabric.mod.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/defaults/src/main/resources/fabric.mod.json b/defaults/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..004b7a8 --- /dev/null +++ b/defaults/src/main/resources/fabric.mod.json @@ -0,0 +1,30 @@ +{ + "schemaVersion": 1, + "id": "citresewn-defaults", + "version": "${version}", + "name": "CIT Resewn - Defaults", + "description": "Default types and conditions for CIT Resewn", + "authors": [ + "SHsuperCM" + ], + "license": "MIT", + "icon": "assets/citresewn-defaults/logo.png", + + "environment": "client", + "entrypoints": { + }, + "accessWidener" : "citresewn-defaults.accesswidener", + "mixins": [ + "citresewn-defaults.mixins.json" + ], + "custom": { + "modmenu": { + "parent": { + "id": "citresewn" + } + } + }, + "depends": { + "citresewn": "${version}" + } +} |