UNPKG

sync-worktrees

Version:

Automatically synchronize Git worktrees with remote branches - perfect for multi-branch development workflows

78 lines 2.14 kB
{ "name": "sync-worktrees", "version": "1.7.1", "description": "Automatically synchronize Git worktrees with remote branches - perfect for multi-branch development workflows", "main": "dist/index.js", "bin": { "sync-worktrees": "./dist/index.js" }, "keywords": [ "git", "worktree", "sync", "automation", "branch-management", "git-worktrees", "devops" ], "author": "Yordan Kanchelov <yordan.kanchelov@gmail.com>", "license": "MIT", "engines": { "node": ">=22.0.0" }, "files": [ "dist", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "git+https://github.com/yordan-kanchelov/sync-worktrees.git" }, "bugs": { "url": "https://github.com/yordan-kanchelov/sync-worktrees/issues" }, "homepage": "https://github.com/yordan-kanchelov/sync-worktrees#readme", "dependencies": { "@inquirer/prompts": "^7.6.0", "node-cron": "^4.2.0", "simple-git": "^3.28.0", "yargs": "^18.0.0" }, "devDependencies": { "@changesets/cli": "^2.29.5", "@eslint/js": "^9.30.1", "@jest/globals": "^30.0.4", "@types/jest": "^30.0.0", "@types/node": "^24.0.10", "@types/node-cron": "^3.0.11", "@types/yargs": "^17.0.33", "@typescript-eslint/eslint-plugin": "^8.35.1", "@typescript-eslint/parser": "^8.35.1", "eslint": "^9.30.1", "eslint-import-resolver-typescript": "^4.4.4", "eslint-plugin-import": "^2.32.0", "eslint-plugin-prettier": "^5.5.1", "globals": "^16.3.0", "jest": "^30.0.4", "prettier": "^3.6.2", "ts-jest": "^29.4.0", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "scripts": { "build": "tsc", "dev": "ts-node src/index.ts", "start": "node dist/index.js", "watch": "tsc --watch", "lint": "eslint .", "lint:fix": "eslint . --fix", "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.spec.json", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "changeset": "changeset", "version": "changeset version", "release": "pnpm run build && changeset publish" } }