@akiojin/claude-worktree
Version:
Interactive Git worktree manager for Claude Code with graphical branch selection
52 lines • 1.14 kB
JSON
{
"name": "@akiojin/claude-worktree",
"version": "0.5.6",
"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",
"keywords": [
"git",
"worktree",
"claude",
"cli",
"interactive",
"branch",
"development"
],
"author": "akiojin",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@inquirer/core": "^10.1.15",
"@inquirer/prompts": "^6.0.1",
"chalk": "^5.4.1",
"execa": "^9.6.0",
"string-width": "^7.2.0"
},
"devDependencies": {
"@types/node": "^22.16.5",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.31.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"files": [
"dist/",
"bin/",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"clean": "rimraf dist"
}
}