Ccmod.json
- WIP*
ccmod.json
is the new manifest file that replaces the soon-to-be deprecated package.json
normally associated with a crosscode mods.
package.json
is normally associated with nodejs. For this reason, creating a new format was necessary to avoid conflicts from properties that both CCLoader and nodejs used.
{
"id": "my-mod",
"version": "1.0.0",
"title" : "My Mod",
"description": "My first mod",
"license": "MIT",
"homepage": "",
"keywords": [],
"authors" : [],
"icons": {},
"dependencies": {},
"assets": [],
"assetsDir": "",
"main": "",
"preload": "",
"postload": "",
"prestart": "",
"poststart": ""
}