react-tv icon indicating copy to clipboard operation
react-tv copied to clipboard

Abstract package metadata for multiple platforms

Open ricobl opened this issue 7 years ago • 0 comments

Metadata files like webOS' appinfo.json should be generated from config on the package.json file.

Additionally, the config should allow extending specific platform metadata.

Here is a proposal of the data structure to accomplish this:

{
  "react-tv": {
    "metadata": {
      "generic": {
        "id": "react.tv.app",
        "title": "playkit-tv",
        "...": "..."
      },
      "webos": {
        "vendor": "webos vendor"
      }
    }
  }
}
  • generic is should be common to multiple platforms
  • webos and others should contain platform specific info

ricobl avatar Jan 16 '18 18:01 ricobl