{
  "name": "dchk",
  "version": "0.1.1",
  "description": "UNIX-style domain availability checker (RDAP-first)",
  "type": "module",
  "engines": {
    "node": ">=20.0.0"
  },
  "bin": {
    "dchk": "./bin/dchk"
  },
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "npm run clean && npm run build:main && npm run build:esm && npm run build:types",
    "build:main": "esbuild cli/cli.ts --bundle --platform=node --target=node20 --format=cjs --outfile=dist/cli.cjs --sourcemap --log-level=error",
    "build:esm": "esbuild cli/index.ts --bundle --platform=node --target=node20 --format=cjs --outfile=dist/index.cjs --sourcemap --log-level=error",
    "build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
    "clean": "rm -rf dist",
    "dev": "tsx watch cli/cli.ts",
    "test": "vitest run",
    "test:watch": "vitest run --watch",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint . --ext .ts",
    "format": "prettier --write \"cli/**/*.ts\"",
    "format:check": "prettier --check \"cli/**/*.ts\"",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "commander": "^14.0.0",
    "chalk": "^5.4.1",
    "fs-extra": "^11.3.0",
    "picocolors": "^1.1.0"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^22.10.6",
    "@typescript-eslint/eslint-plugin": "^8.19.0",
    "@typescript-eslint/parser": "^8.19.0",
    "esbuild": "^0.24.2",
    "eslint": "^9.17.0",
    "prettier": "^3.4.2",
    "tsx": "^4.19.2",
    "typescript": "^5.8.0",
    "vite-tsconfig-paths": "^5.1.4",
    "vitest": "^3.2.4"
  },
  "keywords": [
    "domain",
    "rdap",
    "availability",
    "cli",
    "unix",
    "whois",
    "dchk"
  ],
  "author": "Carl Rannaberg",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/carlrannaberg/dchk.git"
  },
  "homepage": "https://github.com/carlrannaberg/dchk",
  "bugs": {
    "url": "https://github.com/carlrannaberg/dchk/issues"
  }
}
