Simple powershell module for conversion between HJSON and JSON. It't wrapper of hjson-cs. You can found more information about hjson at https://hjson.org/.
Install-Module -Name HJSON
Convert Json to HJson
$hjsonString = ConvertTo-HJson -Path "C:\someJsonFile.json"
Convert HJson to Json
$jsonString = ConvertFrom-HJson -Path "C:\someHJsonFile.hjson"