{
  "name": "@jcblw/grove",
  "version": "0.1.1",
  "type": "module",
  "description": "A CLI tool for managing Claude Code sessions with git worktrees",
  "main": "dist/index.js",
  "bin": {
    "grove": "dist/cli.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/cli.js",
    "lint": "eslint src/**/*.{ts,tsx}",
    "type-check": "tsc --noEmit",
    "test": "node --test dist/tests/*.test.js",
    "test:watch": "node --test --watch dist/tests/*.test.js",
    "test:dev": "npm run build && npm test"
  },
  "keywords": [
    "claude",
    "git",
    "worktree",
    "terminal",
    "cli",
    "development"
  ],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "chalk": "^5.3.0",
    "commander": "^11.1.0",
    "cosmiconfig": "^8.3.6",
    "simple-git": "^3.20.0"
  },
  "devDependencies": {
    "@types/node": "^20.10.0",
    "@typescript-eslint/eslint-plugin": "^6.13.0",
    "@typescript-eslint/parser": "^6.13.0",
    "eslint": "^8.55.0",
    "eslint-plugin-react": "^7.33.2",
    "eslint-plugin-react-hooks": "^4.6.0",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
