The error was a comma at the end of entitlements
"entitlements": {
"process": true,
},
the extension ran and installed fine during development.
I had to remove the comma to get it to submit.
"entitlements": {
"process": true
},