{
  "name": "argzod",
  "version": "0.6.3",
  "description": "Minimalistic typescript-first CLI parser powerd with Zod",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nsonidotdev/argzod.git"
  },
  "homepage": "https://github.com/nsonidotdev/argzod.git",
  "files": [
    "dist"
  ],
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "keywords": [
    "cli",
    "cli-parser",
    "zod"
  ],
  "author": "Anton Stetsiura <anton.stecyura.pr1@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.17.3",
    "@changesets/cli": "^2.27.11",
    "@types/node": "^22.10.5",
    "@typescript-eslint/eslint-plugin": "^8.21.0",
    "@typescript-eslint/parser": "^8.21.0",
    "eslint": "^9.18.0",
    "eslint-config-prettier": "^10.0.1",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-prefer-arrow": "^1.2.3",
    "eslint-plugin-prettier": "^5.2.3",
    "eslint-plugin-unused-imports": "^4.1.4",
    "globals": "^15.14.0",
    "nodemon": "^3.1.9",
    "prettier": "^3.4.2",
    "tsup": "^8.3.5",
    "tsx": "^4.19.2",
    "typescript": "^5.7.2",
    "zod": "^3.24.1"
  },
  "peerDependencies": {
    "zod": "^3.24.1"
  },
  "dependencies": {
    "chalk": "^5.4.1"
  },
  "scripts": {
    "dev": "tsup src/index.ts --format esm --watch",
    "build": "tsup src/index.ts --format esm,cjs --dts --minify",
    "format": "prettier -c ./src --write",
    "lint": "eslint --cache ./src",
    "lint:fix": "eslint --cache --fix ./src",
    "check-exports": "attw --pack .",
    "play": "nodemon --watch . -e ts -x tsx playground",
    "types:check": "tsc --project tsconfig.json"
  }
}