Skip to main content

Arcadible ROM Manifest

Every ROM must contain, at the very minimum, a root-level manifest.json file, with precisely that name, which describes essential information about its' contents.

manifest.json

{
/**
* @required
* @type String
*/
"handle": "<handle>",
/**
* @required
* @type String
*/
"index": "./index.html",
/**
* @choices
* "landscape" <description> [default]
* "portrait" <description>
* @required
* @type String
*/
"orientation": "landscape",
/**
* @choices
* "true" <description> [default]
* "false" <description>
* @type Boolean
*/
"private": true,
/**
* @required
* @type SemVer
*/
"version": "<version>"
}