gitsu-cli
Version:
Interactive command line util for quickly & easily switching git users
84 lines (83 loc) • 2.55 kB
JSON
{
"name": "gitsu-cli",
"version": "1.0.7",
"description": "Interactive command line util for quickly & easily switching git users",
"author": "Jamie Weavis",
"homepage": "https://github.com/jamieweavis/gitsu#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jamieweavis/gitsu.git"
},
"bugs": {
"url": "https://github.com/jamieweavis/gitsu/issues"
},
"main": "./lib/src/app.js",
"bin": {
"gitsu": "./lib/src/app.js"
},
"keywords": [
"git",
"gitconfig",
"user",
"switch",
"gitsu",
"su",
"switch-user"
],
"scripts": {
"start": "node ./lib/src/app.js",
"dev": "ts-node-dev --respawn ./src/app.ts",
"build": "tsc",
"lint": "biome check src",
"lint:write": "npm run lint -- --write",
"format": "biome format src",
"format:write": "npm run format -- --write",
"prepare": "husky"
},
"dependencies": {
"@types/configstore": "^6.0.2",
"@types/inquirer": "^9.0.7",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"configstore": "^7.0.0",
"cosmiconfig": "^8.3.6",
"inquirer": "^12.5.0",
"log-symbols": "^7.0.0",
"typescript": "^5.8.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
},
"release": {
"branches": ["main"],
"plugins": [
"@semantic-release/changelog",
"@semantic-release/commit-analyzer",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github",
"@semantic-release/release-notes-generator"
]
},
"lint-staged": {
"*.ts": ["biome format --write", "biome lint --write"]
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
}
}