{
  "name": "@akiojin/claude-worktree",
  "version": "1.32.2",
  "description": "Interactive Git worktree manager for Claude Code with graphical branch selection",
  "main": "dist/index.js",
  "bin": {
    "claude-worktree": "bin/claude-worktree.js"
  },
  "type": "module",
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "bun ./dist/index.js",
    "prepare": "husky",
    "pretest": "bun run build",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
    "type-check": "tsc --noEmit",
    "clean": "rimraf dist"
  },
  "keywords": [
    "git",
    "worktree",
    "claude",
    "claude code",
    "codex",
    "gpt",
    "cli",
    "interactive",
    "branch",
    "development"
  ],
  "author": "akiojin",
  "license": "MIT",
  "engines": {
    "bun": ">=1.0.0"
  },
  "dependencies": {
    "chalk": "^5.4.1",
    "execa": "^9.6.0",
    "ink": "^6.3.1",
    "ink-select-input": "^6.2.0",
    "ink-text-input": "^6.0.0",
    "react": "^19.2.0",
    "string-width": "^7.2.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.6.2",
    "@commitlint/config-conventional": "^19.6.2",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/commit-analyzer": "^13.0.1",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^12.0.0",
    "@semantic-release/npm": "^13.1.1",
    "@semantic-release/release-notes-generator": "^14.1.0",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.0",
    "@types/node": "^22.16.5",
    "@types/react": "^19.2.2",
    "@typescript-eslint/eslint-plugin": "^8.38.0",
    "@typescript-eslint/parser": "^8.38.0",
    "@vitest/coverage-v8": "^4.0.8",
    "@vitest/ui": "^4.0.8",
    "eslint": "^9.31.0",
    "happy-dom": "^20.0.8",
    "husky": "^9.1.7",
    "ink-testing-library": "^4.0.0",
    "jsdom": "^27.0.1",
    "lint-staged": "^15.2.11",
    "prettier": "^3.6.2",
    "rimraf": "^6.0.1",
    "semantic-release": "^25.0.1",
    "typescript": "^5.8.3",
    "vitest": "^4.0.8"
  },
  "lint-staged": {
    "*.md": "bunx --bun markdownlint-cli -c .markdownlint.json",
    "*.{ts,tsx}": [
      "bunx eslint --max-warnings=0",
      "bunx prettier --check"
    ]
  },
  "files": [
    "dist/",
    "src/",
    "bin/",
    "README.md"
  ]
}
