{
  "name": "username-checker",
  "version": "0.2.1",
  "description": "TypeScript-first username checking for Node.js, inspired by Sherlock's site intelligence.",
  "keywords": [
    "checker",
    "cli",
    "osint",
    "reconnaissance",
    "sherlock",
    "social media",
    "username",
    "username availability",
    "username checker"
  ],
  "homepage": "https://github.com/mastermunj/username-checker#readme",
  "bugs": {
    "url": "https://github.com/mastermunj/username-checker/issues"
  },
  "license": "MIT",
  "author": "Munjal Dhamecha",
  "repository": {
    "type": "git",
    "url": "https://github.com/mastermunj/username-checker.git"
  },
  "bin": {
    "uc": "./dist/cli.js",
    "username-checker": "./dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "scripts": {
    "build": "npm run clean && tsc -p tsconfig.json",
    "build:watch": "npm run build -- --watch",
    "clean": "rimraf dist coverage",
    "commit": "git-cz",
    "format": "oxfmt --check --config ./node_modules/@mastermunj/oxc-config/.oxfmtrc.json .",
    "format:fix": "oxfmt --write --config ./node_modules/@mastermunj/oxc-config/.oxfmtrc.json .",
    "lint": "oxlint --type-aware .",
    "lint:fix": "npm run lint -- --fix",
    "prepare": "husky",
    "sync-sites": "node scripts/sync-sites.mjs",
    "sync-sites:strict": "node scripts/sync-sites.mjs --strict-schema",
    "test": "vitest run --coverage"
  },
  "dependencies": {
    "chalk": "^5.6.2",
    "commander": "^14.0.3",
    "https-proxy-agent": "^9.0.0",
    "socks-proxy-agent": "^10.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^20.5.0",
    "@commitlint/config-conventional": "^20.5.0",
    "@faker-js/faker": "^10.4.0",
    "@mastermunj/oxc-config": "^0.0.4",
    "@types/node": "^25.6.0",
    "@vitest/coverage-v8": "^4.1.4",
    "ajv": "^8.18.0",
    "cz-conventional-changelog": "^3.3.0",
    "husky": "^9.1.7",
    "lint-staged": "^16.4.0",
    "oxfmt": "^0.45.0",
    "oxlint": "^1.60.0",
    "oxlint-tsgolint": "^0.21.0",
    "rimraf": "^6.1.3",
    "typescript": "^6.0.2",
    "vitest": "^4.1.4"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "engines": {
    "node": ">=20.10.0"
  }
}
