{
  "name": "@manehorizons/cadence-core",
  "version": "1.53.0",
  "engines": {
    "node": ">=22"
  },
  "description": "CADENCE engine — the DRAFT→BUILD→SETTLE loop, configurable quality gates, and the host-agnostic `cadence` CLI for AI-assisted development.",
  "license": "MIT",
  "author": "Thomas Powers",
  "homepage": "https://github.com/manehorizons/cadence#readme",
  "bugs": "https://github.com/manehorizons/cadence/issues",
  "keywords": [
    "cadence",
    "ai",
    "llm",
    "agents",
    "code-review",
    "quality-gates",
    "tdd",
    "workflow",
    "claude",
    "cli"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "bin": {
    "cadence": "./bin/cadence.cjs"
  },
  "files": [
    "dist",
    "bin",
    "!dist/tsconfig.tsbuildinfo"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/manehorizons/cadence.git",
    "directory": "packages/core"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.100.1",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "commander": "^14.0.0",
    "zod": "^4.4.3",
    "@manehorizons/cadence-types": "1.53.0"
  },
  "devDependencies": {
    "vitest": "^2.1.0",
    "@manehorizons/cadence-testkit": "1.4.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run",
    "lint": "eslint src",
    "clean": "rm -rf dist .turbo"
  }
}