{
  "name": "@ehubbell/gitty",
  "description": "A simple CLI that will fetch, store, and clone Github repos.",
  "homepage": "https://github.com/ehubbell/gitty",
  "version": "0.5.0",
  "license": "ISC",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "gitty": "dist/index.js"
  },
  "files": [
    "dist"
  ],
  "author": {
    "name": "Eric Hubbell",
    "email": "eric@erichubbell.com",
    "url": "https://github.com/ehubbell"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ehubbell/gitty.git"
  },
  "bugs": {
    "url": "https://github.com/ehubbell/gitty/issues"
  },
  "keywords": [
    "git",
    "gitty",
    "git clone",
    "git download",
    "git tarball",
    "playbooks"
  ],
  "scripts": {
    "dev": "vite build --mode development --minify false --watch",
    "start": "vite build --mode development --minify false",
    "build": "vite build --mode production --minify true && npm run build:ts",
    "build:ts": "tsc --project tsconfig.json --noEmit false && tsc-alias",
    "clean": "npm run lint:fix",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "format": "prettier src",
    "format:fix": "prettier --write src",
    "docs:start": "vitepress dev docs",
    "docs:build": "vitepress build docs",
    "docs:preview": "vitepress preview docs",
    "commit": "scripts/commit.sh",
    "deploy": "scripts/deploy.sh",
    "git": "git push --tags",
    "test": "jest",
    "prepare": "husky"
  },
  "dependencies": {
    "@octokit/core": "^6.1.2",
    "archiver": "^7.0.1",
    "chalk": "^5.4.1",
    "enquirer": "^2.4.1",
    "fs-extra": "^11.2.0",
    "fstream": "^1.0.12",
    "ora": "^8.2.0",
    "sade": "^1.8.1",
    "simple-git": "^3.24.0",
    "unzip-stream": "^0.3.4",
    "vite-plugin-size": "^0.1.3"
  },
  "devDependencies": {
    "@ehubbell/configs": "^0.1.0",
    "@types/jest": "^29.5.1",
    "@types/react": "^18.0.26",
    "@types/react-dom": "^18.0.9",
    "eslint": "^8.57.1",
    "husky": "^9.1.7",
    "jest": "^29.5.0",
    "prettier": "^3.6.1",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.9.1",
    "tsc-alias": "^1.8.16",
    "tslib": "^2.8.1",
    "typescript": "^5.8.3",
    "vite": "^7.0.0"
  },
  "exports": {
    "types": "./dist/index.d.ts",
    "require": "./dist/index.cjs",
    "import": "./dist/index.js"
  }
}
