Some checks failed
/ test (push) Failing after 4m46s
The prepare script caused npm ci to fail during Gitea Actions because it ran 'npm run build' before node_modules/.bin was properly linked, resulting in 'tsc: not found' errors.
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"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",
|
|
"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"
|
|
}
|
|
} |