{
  "name": "git-jiggy",
  "description": "A fresh collection of node git utilities.",
  "version": "2.1.1",
  "author": {
    "name": "Michael Novotny",
    "email": "manovotny@gmail.com",
    "url": "https://manovotny.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/manovotny/git-jiggy.git"
  },
  "keywords": [
    "add",
    "amend",
    "commands",
    "commit",
    "date",
    "git",
    "modified",
    "node",
    "staged",
    "utilities",
    "utility"
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "type": "module",
  "main": "dist/index",
  "types": "dist/index.d.mts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc --build",
    "build:local": "npm run clean && npm run build",
    "check": "npm-check -u",
    "clean": "tsc --build --clean",
    "lint": "eslint",
    "lint-staged": "lint-staged",
    "prettier": "prettier --write --ignore-unknown .",
    "prettier:check": "prettier --check --ignore-unknown .",
    "test": "npm run lint && npm run prettier:check && tsc"
  },
  "git": {
    "pre-commit": "lint-staged"
  },
  "lint-staged": {
    "*": "prettier --write --ignore-unknown"
  },
  "dependencies": {
    "execa": "9.5.2"
  },
  "devDependencies": {
    "@vercel/git-hooks": "1.0.0",
    "eslint": "9.26.0",
    "lint-staged": "15.5.2",
    "npm-check": "6.0.1",
    "prettier": "3.5.3",
    "typescript": "5.8.3"
  }
}
