JSFiddle - React, Tailwind, and code Playground

JavaScript

var reponse = "{\"renditions\": {\"live\": \"true\",\" type\": \"default\",\"rendition\": {\"name\": \"Live \",\"url\": \"http: //mysite\"}}}";

var json = JSON.parse(reponse);
if (!Array.isArray(json.renditions.rendition)) {
    json.renditions.rendition = [json.renditions.rendition];
}

document.body.innerHTML = JSON.stringify(json);