package.json1.9 KBView on GitHub
{
  "name": "cedar-aws",
  "private": true,
  "type": "module",
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "print-secrets:staging": "CEDAR_AWS_ENV=staging pnpm exec tsx ./scripts/sync-secrets.ts --mode plan",
    "print-secrets:prod": "CEDAR_AWS_ENV=prod pnpm exec tsx ./scripts/sync-secrets.ts --mode plan",
    "synth": "cdk synth",
    "synth:staging": "CEDAR_AWS_ENV=staging cdk synth",
    "synth:prod": "CEDAR_AWS_ENV=prod cdk synth",
    "synth:all": "CEDAR_AWS_ENV=all cdk synth",
    "diff": "cdk diff",
    "deploy": "cdk deploy",
    "secrets:plan": "pnpm exec tsx ./scripts/sync-secrets.ts --mode plan",
    "secrets:sync": "pnpm exec tsx ./scripts/sync-secrets.ts --mode sync",
    "publish:api-image": "bash ./scripts/publish-service-image.sh api",
    "publish:chat-image": "bash ./scripts/publish-service-image.sh chat",
    "publish:worker-image": "bash ./scripts/publish-service-image.sh worker",
    "publish:frontend": "bash ./scripts/publish-frontend-assets.sh",
    "deploy:surface": "bash ./scripts/deploy-surface.sh",
    "backfill:plan": "pnpm exec tsx ./scripts/print-backfill-plan.ts",
    "backfill:manifest": "pnpm exec tsx ./scripts/generate-backfill-manifest.ts",
    "backfill:threads-hotset": "pnpm exec tsx ./scripts/generate-threads-hotset-manifest.ts",
    "backfill:threads-prefix-report": "pnpm exec tsx ./scripts/report-threads-prefix-activity.ts",
    "backfill:crm-active": "pnpm exec tsx ./scripts/generate-active-crm-content-manifest.ts",
    "backfill:copy": "pnpm exec tsx ./scripts/run-backfill-copy.ts",
    "bootstrap:surface": "bash ./scripts/bootstrap-surface.sh"
  },
  "devDependencies": {
    "@aws-sdk/client-secrets-manager": "^3.995.0",
    "@types/node": "^24.3.0",
    "aws-cdk": "^2.1013.0",
    "tsx": "^4.20.5",
    "typescript": "^5.8.3"
  },
  "dependencies": {
    "aws-cdk-lib": "^2.196.0",
    "constructs": "^10.4.2"
  }
}