@harryisfish/gitt
Version:
这是一个命令行工具,用于帮助你管理 Git 仓库与远端仓库,如保持同步、推送、拉取等。
53 lines (52 loc) • 1.23 kB
JSON
{
"name": "@harryisfish/gitt",
"version": "1.0.4",
"description": "这是一个命令行工具,用于帮助你管理 Git 仓库与远端仓库,如保持同步、推送、拉取等。",
"main": "dist/index.js",
"bin": {
"gitt": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"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",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"simple-git": "^3.22.0"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "pnpm@9.14.2",
"files": [
"dist",
"README.md",
"LICENSE"
]
}