Files
geo/package.json
T
root a9af6c634c
Backend CI / Backend (push) Successful in 13m6s
Deployment Config CI / Deployment Config (push) Successful in 17s
Frontend CI / Frontend (push) Successful in 2m24s
chore(desktop-client): add macOS code-signing and notarization scaffolding
- Move the build config out of package.json into electron-builder.yml so
  the mac block can carry hardenedRuntime, entitlements, universal arch,
  and usage-description Info.plist keys. Drop identity:null (which
  forces unsigned builds) and let CSC_NAME or the keychain decide.
- Add entitlements plist files and three helper scripts: sign-setup.sh
  (one-time keychain prep with notarytool store-credentials),
  sign-mac.sh (sign + notarize + staple, supports keychain or CI env
  vars), and ci-import-cert.sh (CI keychain bootstrap).
- Ignore .env.signing so local credentials don't sneak into the repo,
  and pin @emnapi/{core,runtime} as devDependencies so universal builds
  resolve them deterministically.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-01 16:02:14 +08:00

28 lines
1001 B
JSON

{
"name": "geo-rankly",
"private": true,
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"scripts": {
"dev:admin": "pnpm --filter admin-web dev",
"build:admin": "pnpm --filter admin-web build",
"typecheck:admin": "pnpm --filter admin-web typecheck",
"dev:desktop": "pnpm --filter @geo/desktop-client dev",
"build:desktop": "pnpm --filter @geo/desktop-client build",
"typecheck:desktop": "pnpm --filter @geo/desktop-client typecheck",
"dev:extension": "pnpm --filter browser-extension dev",
"build:extension": "pnpm --filter browser-extension build",
"typecheck:extension": "pnpm --filter browser-extension exec vue-tsc --noEmit"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"electron",
"esbuild"
]
},
"devDependencies": {
"@emnapi/core": "1.9.1",
"@emnapi/runtime": "1.9.1"
}
}