{
  "name": "@eastjin616/code-drive",
  "version": "0.3.2",
  "description": "Code Drive — a CLI for Code-Driven Development. Turn code into docs, architecture context, changelogs, and AI-ready prompt packs.",
  "type": "module",
  "bin": {
    "cdd": "dist/cli.js"
  },
  "files": [
    "dist",
    "README.md",
    "STABILITY.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsx src/cli.ts",
    "start": "node dist/cli.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint src/",
    "lint:fix": "eslint src/ --fix",
    "format": "prettier --write 'src/**/*.ts'",
    "format:check": "prettier --check 'src/**/*.ts'",
    "verify:repo": "npm run dev -- verify .",
    "verify:repo:ci": "npm run dev -- sync . && git diff --exit-code -- docs/README.md ARCHITECTURE.md DESIGN.md docs/api AGENTS.md && git checkout -- CHANGELOG.md",
    "ci:check": "npm run lint && npm run format:check && npm run build && npm test && npm run verify:repo:ci",
    "prepublishOnly": "npm run build && npm test",
    "postinstall": "node -e \"console.log('Run \\\"npm run build\\\" to compile')\""
  },
  "keywords": [
    "code-driven",
    "code-driven-development",
    "cdd",
    "documentation-generator",
    "cli"
  ],
  "license": "MIT",
  "dependencies": {
    "@clack/prompts": "^1.5.1",
    "chalk": "^5.3.0",
    "chokidar": "^5.0.0",
    "commander": "^12.0.0",
    "glob": "^13.0.6",
    "ora": "^9.4.0",
    "typescript": "^5.6.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.0.0",
    "@types/node": "^22.0.0",
    "eslint": "^9.0.0",
    "prettier": "^3.4.0",
    "tsx": "^4.19.0",
    "typescript-eslint": "^8.0.0",
    "vitest": "^4.1.9"
  },
  "engines": {
    "node": ">=20.19.0"
  }
}
