Advertisement
YTG123

fabric.mod.json

Nov 15th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.71 KB | None | 0 0
  1. {
  2.   "schemaVersion": 1,
  3.   "id": "modid",
  4.   "version": "${version}",
  5.  
  6.   "name": "Example Mod",
  7.   "description": "This is an example description! Tell everyone what your mod is about!",
  8.   "authors": [
  9.     "Me!"
  10.   ],
  11.   "contact": {
  12.     "homepage": "https://fabricmc.net/",
  13.     "sources": "https://github.com/FabricMC/fabric-example-mod"
  14.   },
  15.  
  16.   "license": "CC0-1.0",
  17.   "icon": "assets/modid/icon.png",
  18.  
  19.   "environment": "*",
  20.   "entrypoints": {
  21.     "main": [
  22.       "net.fabricmc.example.ExampleMod"
  23.     ]
  24.   },
  25.   "mixins": [
  26.     "modid.mixins.json"
  27.   ],
  28.  
  29.   "depends": {
  30.     "fabricloader": ">=0.7.4",
  31.     "fabric": "*",
  32.     "minecraft": "1.16.x"
  33.   },
  34.   "suggests": {
  35.     "another-mod": "*"
  36.   }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement