UNPKG

sync-worktrees

Version:

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

89 lines 2.46 kB
{ "name": "sync-worktrees", "version": "2.2.0", "type": "module", "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", "cli-table3": "^0.6.5", "cron-parser": "^5.4.0", "fast-folder-size": "^2.4.0", "glob": "^13.0.0", "ink": "^6.4.0", "node-cron": "^4.2.0", "p-limit": "^7.2.0", "react": "^19.2.0", "simple-git": "^3.28.0", "yargs": "^18.0.0" }, "devDependencies": { "@changesets/cli": "^2.29.5", "@eslint/js": "^9.30.1", "@types/node": "^24.0.10", "@types/node-cron": "^3.0.11", "@types/react": "^19.2.2", "@types/yargs": "^17.0.33", "@typescript-eslint/eslint-plugin": "^8.35.1", "@typescript-eslint/parser": "^8.35.1", "@vitest/coverage-v8": "^4.0.6", "@vitest/ui": "^4.0.6", "esbuild": "^0.25.10", "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", "happy-dom": "^20.0.10", "ink-testing-library": "^4.0.0", "prettier": "^3.6.2", "ts-node": "^10.9.2", "typescript": "^5.8.3", "vitest": "^4.0.6" }, "scripts": { "build": "node esbuild.config.js", "start": "node dist/index.js", "watch": "tsc --watch", "lint": "eslint .", "lint:fix": "eslint . --fix", "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.spec.json", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "test:ui": "vitest --ui", "changeset": "changeset", "version": "changeset version", "release": "pnpm run build && changeset publish" } }