Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.68 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.4.0",
  31.     "fabric": "*"
  32.   },
  33.   "suggests": {
  34.     "flamingo": "*"
  35.   }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement