UNPKG

@harryisfish/gitt

Version:

A command-line tool to help you manage Git repositories and remote repositories, such as keeping in sync, pushing, pulling, etc.

65 lines (64 loc) 1.59 kB
{ "name": "@harryisfish/gitt", "version": "1.6.8", "description": "A command-line tool to help you manage Git repositories and remote repositories, such as keeping in sync, pushing, pulling, etc.", "main": "dist/index.js", "bin": { "gitt": "./dist/index.js" }, "scripts": { "build": "tsc", "start": "tsx src/index.ts", "dev": "tsx watch src/index.ts", "test": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest --coverage", "prepare": "pnpm run build", "dev:link": "pnpm build && pnpm link --global", "dev:unlink": "pnpm unlink --global" }, "keywords": [ "git", "cli", "git-tools", "git-automation" ], "author": "harryisfish", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/harryisfish/gitt.git" }, "bugs": { "url": "https://github.com/harryisfish/gitt/issues" }, "homepage": "https://github.com/harryisfish/gitt#readme", "devDependencies": { "@types/node": "^20.11.24", "@vitest/ui": "^4.0.14", "ts-node": "^10.9.2", "tsx": "^4.7.1", "typescript": "^5.3.3", "vitest": "^4.0.14" }, "dependencies": { "@inquirer/prompts": "^3.3.0", "@types/minimatch": "^6.0.0", "@types/update-notifier": "^6.0.8", "chalk": "4", "commander": "^14.0.2", "listr2": "^8.0.0", "minimatch": "^10.1.1", "simple-git": "^3.22.0", "update-notifier": "^7.3.1" }, "engines": { "node": ">=14.0.0" }, "packageManager": "pnpm@9.14.2", "files": [ "dist", "README.md", "LICENSE" ] }