{
  "name": "create-claudook",
  "version": "2.7.6",
  "description": "Transform Claude into Your AI Development Powerhouse - Pure JavaScript Edition",
  "main": "bin/create-claudook.js",
  "type": "module",
  "bin": {
    "create-claudook": "./bin/create-claudook.js"
  },
  "scripts": {
    "test": "node test/test-all-hooks.js",
    "test:integration": "node test/integration-test.js",
    "test:all": "npm run test && npm run test:integration",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint .claude/hooks/claudook/*.js --fix",
    "format": "prettier --write .claude/hooks/claudook/*.js",
    "validate": "npm run format && npm run lint && npm run test",
    "claudook:test": "node .claude/hooks/claudook/security_guard.js test",
    "claudook:status": "node .claude/hooks/claudook/analytics_tracker.js status"
  },
  "keywords": [
    "claude",
    "ai",
    "automation",
    "hooks",
    "development",
    "npx",
    "create",
    "cli"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/bacoco/claudook.git"
  },
  "homepage": "https://github.com/bacoco/claudook#readme",
  "bugs": {
    "url": "https://github.com/bacoco/claudook/issues"
  },
  "files": [
    "bin/",
    ".claude/",
    "README.md",
    "LICENSE"
  ],
  "author": "Claudook Team",
  "license": "MIT",
  "dependencies": {
    "chalk": "^5.3.0",
    "inquirer": "^9.2.0",
    "fs-extra": "^11.1.1"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^20.0.0",
    "eslint": "^8.50.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-node": "^11.1.0",
    "jest": "^29.7.0",
    "prettier": "^3.0.0"
  },
  "jest": {
    "testEnvironment": "node",
    "testMatch": [
      "**/*.test.js"
    ],
    "collectCoverageFrom": [
      ".claude/hooks/claudook/*.js",
      "!.claude/hooks/claudook/*.test.js"
    ]
  },
  "eslintConfig": {
    "env": {
      "node": true,
      "es2021": true,
      "jest": true
    },
    "extends": [
      "eslint:recommended",
      "plugin:node/recommended",
      "prettier"
    ],
    "parserOptions": {
      "ecmaVersion": 2021
    },
    "rules": {
      "node/no-unpublished-require": "off",
      "node/no-missing-require": "off",
      "no-process-exit": "off"
    }
  },
  "prettier": {
    "semi": true,
    "singleQuote": true,
    "tabWidth": 2,
    "printWidth": 100
  }
}
