{
  "name": "@zhushanwen/coding-workflow",
  "version": "0.1.3",
  "description": "Agent-agnostic CLI for coding-workflow engine",
  "type": "module",
  "main": "./dist/types.js",
  "types": "./dist/types.d.ts",
  "license": "MIT",
  "engines": {
    "node": ">=20"
  },
  "bin": {
    "cw": "./dist/cli.js"
  },
  "exports": {
    ".": "./dist/types.js",
    "./dispatch": "./dist/dispatch.js"
  },
  "files": [
    "dist",
    "skill",
    "scripts",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/zhushanwen321/coding-workflow.git"
  },
  "homepage": "https://github.com/zhushanwen321/coding-workflow#readme",
  "bugs": {
    "url": "https://github.com/zhushanwen321/coding-workflow/issues"
  },
  "scripts": {
    "build": "tsc",
    "check": "tsc --noEmit",
    "check:tests": "tsc --noEmit -p tsconfig.test.json",
    "check:all": "npm run check && npm run check:tests",
    "lint": "eslint src/ tests/",
    "test": "vitest run",
    "postinstall": "bash scripts/install-skill.sh",
    "preuninstall": "bash scripts/uninstall-skill.sh"
  },
  "dependencies": {
    "@sinclair/typebox": "^0.34.0",
    "minimist": "^1.2.8"
  },
  "devDependencies": {
    "@types/minimist": "^1.2.5",
    "@types/node": "^22.0.0",
    "eslint": "^9.0.0",
    "eslint-plugin-simple-import-sort": "^13.0.0",
    "typescript": "^5.7.0",
    "typescript-eslint": "^8.64.0",
    "vitest": "^3.0.0"
  }
}
