Initial commit: git-agent-sync CLI tool
This commit is contained in:
54
.package.json
Normal file
54
.package.json
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
{
|
||||||
|
"name": "git-agent-sync",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "A CLI tool that manages isolated git worktrees for AI coding agents, enabling parallel development without conflicts",
|
||||||
|
"main": "dist/index.js",
|
||||||
|
"types": "dist/index.d.ts",
|
||||||
|
"bin": {
|
||||||
|
"git-agent-sync": "./bin/git-agent-sync",
|
||||||
|
"gas": "./bin/git-agent-sync"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"build": "tsc",
|
||||||
|
"watch": "tsc --watch",
|
||||||
|
"test": "jest",
|
||||||
|
"test:unit": "jest --testPathPattern=tests/unit",
|
||||||
|
"test:integration": "jest --testPathPattern=tests/integration",
|
||||||
|
"test:coverage": "jest --coverage",
|
||||||
|
"lint": "eslint src/**/*.ts",
|
||||||
|
"format": "prettier --write src/**/*.ts",
|
||||||
|
"prepare": "npm run build",
|
||||||
|
"dev": "ts-node src/index.ts"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"git",
|
||||||
|
"worktree",
|
||||||
|
"cli",
|
||||||
|
"ai-agent",
|
||||||
|
"developer-tools"
|
||||||
|
],
|
||||||
|
"author": "",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"chalk": "^5.3.0",
|
||||||
|
"commander": "^11.1.0",
|
||||||
|
"diff": "^5.1.0",
|
||||||
|
"execa": "^8.0.1",
|
||||||
|
"fs-extra": "^11.2.0",
|
||||||
|
"inquirer": "^9.2.12",
|
||||||
|
"ora": "^7.0.1",
|
||||||
|
"simple-git": "^3.21.0",
|
||||||
|
"zod": "^3.22.4"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/diff": "^5.0.8",
|
||||||
|
"@types/fs-extra": "^11.0.4",
|
||||||
|
"@types/inquirer": "^9.0.7",
|
||||||
|
"@types/jest": "^29.5.11",
|
||||||
|
"@types/node": "^20.10.5",
|
||||||
|
"jest": "^29.7.0",
|
||||||
|
"ts-jest": "^29.1.1",
|
||||||
|
"ts-node": "^10.9.2",
|
||||||
|
"typescript": "^5.3.3"
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user