{
  "name": "@candoa/workflows",
  "version": "0.1.0",
  "description": "Type-safe workflow SDK for Candoa with Copilot-friendly syntax. Define chat workflows with triggers, actions, and type safety.",
  "keywords": [
    "workflows",
    "typescript",
    "sdk",
    "copilot",
    "chat",
    "automation",
    "triggers",
    "actions",
    "type-safe",
    "developer-friendly",
    "candoa",
    "workflow-engine",
    "business-logic",
    "chatbot-workflows",
    "conversation-flows",
    "ai-workflows",
    "javascript",
    "npm",
    "open-source"
  ],
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "license": "MIT",
  "private": false,
  "homepage": "https://candoa.app",
  "repository": {
    "type": "git",
    "url": "https://github.com/aamancio/candoa-workflows.git"
  },
  "files": [
    "dist",
    "examples",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "tsup src/index.ts --watch --format esm,cjs --dts --sourcemap",
    "build": "tsup src/index.ts --format esm,cjs --dts",
    "sync-workflows": "tsx scripts/sync-workflows.ts",
    "prepublishOnly": "pnpm build",
    "release:patch": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish"
  },
  "dependencies": {
    "tsup": "^7.3.0",
    "typescript": "5.5.4",
    "tsx": "^4.0.0"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@candoa/db": "workspace:*",
    "drizzle-orm": "*"
  }
} 