Keyman Package Metadata files
- Used by:
- Keyman applications on all platforms except web.
- Description:
- The files
kmp.infandkmp.jsonare metadata for a Keyman package file. - Details:
When Keyman Developer compiles a Keyman package source file (.kps), it creates and automatically adds
kmp.infandkmp.jsoninto the Keyman Package file (.kmp).Keyman mobile products use
kmp.jsonto install the touch keyboards (.js) in the package.Keyman on all platforms now use
kmp.jsonto install the keyboards (.kmx) in the package.Older versions of Keyman Desktop for Windows use
kmp.inf, a parallel format of the package metadata. Note: the lexical model compiler does not addkmp.inf, and future versions of Keyman Developer will stop supportingkmp.inf.- Package purposes:
A Keyman Package file can be used to distribute keyboards (most common), lexical models, or user interface localizations for Keyman Desktop.
KMP.JSON
The package object
The kmp.json file is a base object described as
systemObjectSystemobject.optionsObjectAn
Optionsobject.startMenuObjectStart Menuobject.infoObjectInfoobject.filesObjectArray of objects, each containing a name and description of each file in in the package
keyboardsObjectArray of
Keyboardobjects.lexicalModelsObjectArray of
LexicalModelobjects.
The System object
The System object is used by Keyman Desktop to install keyboards
keymanDeveloperVersionstringThe version of Keyman Developer used to create the package file. If undefined, use
'0.0.0.0'fileVersion,string
The Options object
The Options object is used by Keyman Desktop to install keyboards
readmeFilestringThe file for the keyboard package documentation
graphicFilestringThe image associated with the keyboard package.
The Start Menu object
The StartMenu object is used by Keyman Desktop to install windows
folderstringThe folder that Keyman Desktop will create
itemsArrayAn array of Item objects
The Item Object
The Item object
namestringThe item name
filenamestringThe filename of the item
locationstringThe location for Keyman Desktop to place the item
The Info object
The Info object describes the Keyman package
namestringThe Keyman package name
versionstringThe version number of the package in dotted number format. Defaults to
'1.0'if missingcopyrightstringoptionalCopyright information
authorstringoptionalThe Keyman package author and email address
websitestringoptionalDescription and URL for additional Keyboard package documentation
The Keyboard object
The Keyboard object describes an individual keyboard in the Keyman package. A package cannot contain both lexical models and keyboards.
namestringName of keyboard
idstringID of the keyboard, always matches the filename of the keyboard
rtlbooleanoptionaltrueif the keyboard targets a right-to-left script.falseif absent.versionstringversion number of the keyboard in dotted number format. Defaults to
'1.0'if missinglanguagesArrayAn array of
Languageobjects linked to the keyboard.displayFontstringoptionalThe filename of the font for input fields (and OSK, if
oskFontis not present).oskFontstringoptionalThe filename of the font for the OSK
The Language object
The Language object describes the language that can be typed with the keyboard
namestringThe name of the language
idstring
The LexicalModel object
The LexicalModel object describes an individual model in the Keyman package. A package cannot contain both lexical models and keyboards.
namestringName of model
idstringID of the model, always matches the filename of the model
rtlbooleanoptionaltrueif the model targets a right-to-left script.falseif absent.versionstringversion number of the model in dotted number format.
languagesArrayAn array of
Languageobjects linked to the model.


