Official modding guide

Home / Data Files

modInfo.json

The modInfo.json file is an optional file containing a bunch of keys to describe properties of your mod to control things such as js file load order, mod load priority, and general information. The following keys have functionality:

Additionally, you can add as many other keys as you want to this file to allow other mods such as mod menus to get information about yours, such as a version, name, or description.

Here's an example of a modInfo.json with the default values:

{
	"loadPriority": 0,
	"reverseJSLoadOrder": false
}

GitHub repositoryOfficial modding guide