gitset
Version:
Enhanced git init with user configuration management
75 lines (74 loc) • 1.77 kB
JSON
{
"name": "gitset",
"version": "0.1.1",
"description": "Enhanced git init with user configuration management",
"type": "module",
"main": "dist/cli/index.js",
"bin": {
"gitset": "./dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm run clean && pnpm run build && pnpm test -- --run"
},
"keywords": [
"git",
"cli",
"initialization",
"configuration",
"git-init",
"developer-tools",
"version-control",
"setup"
],
"author": {
"name": "bytesnack114",
"email": "bytesnack114@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bytesnack114/gitset.git"
},
"homepage": "https://github.com/bytesnack114/gitset#readme",
"bugs": {
"url": "https://github.com/bytesnack114/gitset/issues"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"cross-spawn": "^7.0.3",
"email-validator": "^2.0.4",
"figlet": "^1.7.0",
"inquirer": "^9.2.12",
"ora": "^7.0.1"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/figlet": "^1.5.8",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^8.55.0",
"prettier": "^3.1.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
}
}