The initial pass referenced zxp-sign-cmd@0.2.2 which never shipped (latest is 2.0.0) and used the v1.x callback API. v2 is promise-based — rewrote build-zxp.mjs accordingly. Also commits the freshly-generated self-signed cert + passphrase from the first local build run. From now on every build reuses these so Adobe's ZXP signature-continuity rule is satisfied across versions. Verified end-to-end: `npm install && node build-zxp.mjs` produces dist/dragonflight-premiere-panel-1.0.0.zxp (34.7 KB), signature verifies, cert valid until 2051. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
18 lines
563 B
JSON
18 lines
563 B
JSON
{
|
|
"name": "dragonflight-premiere-panel-build",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "Build pipeline for the Dragonflight Premiere Pro CEP panel — produces a signed .zxp and a Windows .exe installer.",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build:zxp": "node build-zxp.mjs",
|
|
"build:exe": "pwsh -NoProfile -ExecutionPolicy Bypass -File build-installer.ps1",
|
|
"build": "pwsh -NoProfile -ExecutionPolicy Bypass -File build-all.ps1"
|
|
},
|
|
"devDependencies": {
|
|
"zxp-sign-cmd": "^2.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|