{
  "name": "autoworkflow",
  "version": "3.11.0",
  "description": "Automated workflow enforcement for Claude Code via hooks and system prompts",
  "type": "module",
  "bin": {
    "autoworkflow": "bin/cli.js"
  },
  "keywords": [
    "claude",
    "claude-code",
    "workflow",
    "system-prompts",
    "ai-instructions",
    "hooks",
    "automation"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": ""
  },
  "files": [
    "bin/",
    "CLAUDE.md",
    "system/",
    "instructions/",
    ".claude/",
    ".vscode/",
    "scripts/",
    "hooks/",
    ".prettierrc",
    "eslint.config.example.js",
    "tsconfig.example.json"
  ],
  "scripts": {
    "typecheck": "tsc --noEmit",
    "typecheck:watch": "tsc --noEmit --watch",
    "lint": "eslint . --max-warnings 0",
    "lint:fix": "eslint . --fix",
    "verify": "npm run typecheck && npm run lint",
    "verify:full": "npm run typecheck && npm run lint && npm run test",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "audit:ui": "./scripts/check-ui-enforcement.sh",
    "audit:cycles": "npx madge --circular --extensions ts,tsx src/ 2>/dev/null || echo 'No circular dependencies found'",
    "audit:dead-code": "npx ts-prune",
    "audit:deps": "npx depcheck",
    "audit:security": "npm audit",
    "audit:bundle": "npx vite-bundle-analyzer",
    "audit:all": "npm run audit:ui && npm run audit:cycles",
    "validate:feature": "./scripts/check-ui-enforcement.sh",
    "dyad:status": "./scripts/autoworkflow.sh status",
    "dyad:verify": "./scripts/autoworkflow.sh verify",
    "dyad:commit": "./scripts/autoworkflow.sh commit",
    "dyad:full": "./scripts/autoworkflow.sh full",
    "setup:hooks": "cp hooks/* .git/hooks/ 2>/dev/null && chmod +x .git/hooks/* 2>/dev/null || true",
    "postinstall": "npm run setup:hooks 2>/dev/null || true"
  }
}
