{
  "name": "gh-cp",
  "version": "1.3.2",
  "description": "A CLI that copies files and directories from GitHub repo paths and downloads them to a local path",
  "types": "dist/main.d.mts",
  "type": "module",
  "bin": {
    "gh-cp": "./dist/bin/cli.cjs",
    "ghcp": "./dist/bin/cli.cjs"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/main.d.mts",
        "default": "./dist/main.mjs"
      },
      "require": {
        "types": "./dist/main.d.cts",
        "default": "./dist/main.cjs"
      },
      "default": "./dist/main.mjs"
    },
    "./dist/*": {
      "types": "./dist/*.d.mts",
      "import": "./dist/*.mjs",
      "require": "./dist/*.cjs"
    }
  },
  "engines": {
    "pnpm": ">=11.0.0",
    "node": ">=22.0.0"
  },
  "files": [
    "dist",
    "src",
    "bin"
  ],
  "author": {
    "name": "Liran Tal",
    "email": "liran.tal@gmail.com",
    "url": "git+https://github.com/lirantal"
  },
  "publishConfig": {
    "provenance": true,
    "access": "public"
  },
  "license": "Apache-2.0",
  "keywords": [
    "GitHub",
    "GitHub Copy",
    "github cp",
    "copy files",
    "copy directories",
    "git copy",
    "git clone"
  ],
  "homepage": "https://github.com/lirantal/gh-cp",
  "bugs": {
    "url": "https://github.com/lirantal/gh-cp/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/lirantal/gh-cp.git"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.7.0",
    "@changesets/cli": "^2.31.0",
    "@eslint/js": "^10.0.1",
    "@types/node": "^25.7.0",
    "c8": "^11.0.0",
    "eslint": "^10.2.1",
    "eslint-plugin-n": "^18.0.1",
    "eslint-plugin-security": "^4.0.0",
    "husky": "^9.0.11",
    "lint-staged": "^17.0.4",
    "markdownlint-cli": "0.48.0",
    "tsdown": "^0.22.0",
    "tsx": "^4.19.4",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.59.0",
    "validate-conventional-commit": "^1.0.4"
  },
  "lint-staged": {
    "**/*.{js,json}": [
      "pnpm run lint:fix"
    ]
  },
  "c8": {
    "exclude": [
      "dist/**",
      "coverage/**",
      "__tests__/**",
      "**/*.test.ts",
      "**/*.test.js"
    ],
    "include": [
      "src/**"
    ],
    "reporter": [
      "text",
      "lcov",
      "html"
    ]
  },
  "devEngines": {
    "packageManager": {
      "name": "pnpm",
      "version": ">=11.0.0",
      "onFail": "download"
    }
  },
  "scripts": {
    "start": "tsx src/bin/cli.ts",
    "build": "tsc && tsdown",
    "lint": "eslint . && pnpm run lint:markdown",
    "lint:markdown": "pnpm exec markdownlint -c .github/.markdownlint.yml -i '.git' -i '__tests__' -i '.github' -i '.changeset' -i 'CODE_OF_CONDUCT.md' -i 'CHANGELOG.md' -i 'apm_modules' -i 'node_modules' -i 'dist' '**/**.md'",
    "lint:fix": "eslint . --fix",
    "test": "c8 node --import tsx --test __tests__/**/*.test.ts",
    "test:watch": "c8 node --import tsx --test --watch __tests__/**/*.test.ts",
    "coverage:view": "open coverage/lcov-report/index.html",
    "version": "changeset version",
    "release": "changeset publish"
  }
}