{
  "name": "claude-hooks-manager",
  "version": "3.1.1",
  "description": "A comprehensive hook management system for Claude that enforces coding standards, maintains consistency, and automates workflow tasks",
  "main": "index.js",
  "bin": {
    "claude-hooks": "./index.js",
    "claude-hooks-install": "./install.sh"
  },
  "scripts": {
    "test": "./tests/run_tests.sh",
    "test:simple": "./tests/run_tests_simple.sh",
    "test:verbose": "python3 tests/test_hooks.py -v",
    "lint": "echo 'No linting configured yet'",
    "install-hooks": "./install.sh",
    "postinstall": "echo 'Run claude-hooks-install to set up hooks'"
  },
  "keywords": [
    "claude",
    "claude-code",
    "hooks",
    "development",
    "automation",
    "code-quality",
    "linting",
    "git-hooks",
    "workflow",
    "productivity"
  ],
  "author": "webdevtodayjason",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/webdevtodayjason/claude-hooks.git"
  },
  "bugs": {
    "url": "https://github.com/webdevtodayjason/claude-hooks/issues"
  },
  "homepage": "https://github.com/webdevtodayjason/claude-hooks#readme",
  "engines": {
    "node": ">=14.0.0"
  },
  "dependencies": {
    "chalk": "^4.1.2",
    "inquirer": "^8.2.6",
    "ora": "^5.4.1"
  },
  "files": [
    "hooks/*.py",
    "hooks/context-forge/*.py",
    "hooks/context-forge/*.sh",
    "hooks/context-forge/*.md",
    "hooks/context-forge/*.json",
    "install.sh",
    "index.js",
    "settings.example.json",
    "README.md",
    "LICENSE",
    ".claude/*",
    "docs/*",
    "examples/*",
    "tests/*"
  ]
}