{
  "name": "@generacy-ai/generacy-plugin-cloud-build",
  "version": "0.1.1",
  "description": "Google Cloud Build integration plugin for Generacy - enables triggering builds, monitoring status, streaming logs, and managing triggers",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "dependencies": {
    "@generacy-ai/latency": "^0.1.0",
    "@generacy-ai/latency-plugin-ci-cd": "^0.1.0",
    "@google-cloud/cloudbuild": "^4.7.0",
    "@google-cloud/storage": "^7.14.0",
    "pino": "^9.0.0",
    "zod": "^3.23.0"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "typescript": "^5.6.0",
    "vitest": "^3.2.4",
    "tsx": "^4.0.0"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "cloud-build",
    "gcp",
    "ci-cd",
    "plugin",
    "generacy"
  ],
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/generacy-ai/generacy.git",
    "directory": "packages/generacy-plugin-cloud-build"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsx watch src/index.ts",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint src tests --ext .ts",
    "typecheck": "tsc --noEmit"
  }
}