{
  "name": "rdapify",
  "version": "0.4.0",
  "description": "Unified, secure, high-performance RDAP client with built-in SSRF protection and privacy controls",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/types/index.d.ts"
    },
    "./worker": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./node": {
      "types": "./dist/types/index.d.ts",
      "require": "./dist/cjs/index.js",
      "import": "./dist/esm/index.js"
    },
    "./deno": {
      "types": "./dist/types/index.d.ts",
      "default": "./dist/esm/index.js"
    },
    "./errors": {
      "types": "./dist/types/shared/errors/base.error.d.ts",
      "require": "./dist/cjs/shared/errors/base.error.js",
      "import": "./dist/esm/shared/errors/base.error.js"
    },
    "./types": {
      "types": "./dist/types/shared/types/index.d.ts",
      "require": "./dist/cjs/shared/types/index.js",
      "import": "./dist/esm/shared/types/index.js"
    },
    "./validators": {
      "types": "./dist/types/shared/utils/validators/index.d.ts",
      "require": "./dist/cjs/shared/utils/validators/index.js",
      "import": "./dist/esm/shared/utils/validators/index.js"
    }
  },
  "bin": {
    "rdapify": "./dist/cli/index.js"
  },
  "sideEffects": false,
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "dev": "tsc --watch",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:types": "tsc -p tsconfig.types.json",
    "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
    "clean": "rimraf dist",
    "test": "jest --runInBand",
    "test:unit": "jest --testPathPattern=unit",
    "test:integration": "jest --testPathPattern=integration",
    "test:security": "jest --testPathPattern=unit/ssrf-protection",
    "test:live": "LIVE_TESTS=1 jest --config jest.live.config.js --runInBand --no-coverage",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts,.tsx",
    "lint:fix": "eslint src --ext .ts,.tsx --fix",
    "typecheck": "tsc --noEmit",
    "format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
    "format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
    "verify:api": "node scripts/verify-api.js",
    "verify:api:update": "npm run build && node scripts/verify-api.js",
    "verify:versions": "node scripts/verify-versions.js",
    "verify": "npm run lint && npm run typecheck && npm test && npm run build && npm run verify:api && npm run verify:versions",
    "version": "node scripts/update-templates.js && git add templates/ examples/",
    "prepublishOnly": "npm run verify",
    "prepack": "npm run build",
    "prepare": "husky install",
    "playground": "npm run build && cd playground && npm install && npm start",
    "playground:dev": "npm run build && cd playground && npm install && npm run dev"
  },
  "keywords": [
    "rdap",
    "whois",
    "domain",
    "dns",
    "registry",
    "ip",
    "ipv4",
    "ipv6",
    "asn",
    "registration-data",
    "privacy",
    "gdpr",
    "ccpa",
    "pii-redaction",
    "security",
    "ssrf-protection",
    "enterprise",
    "typescript",
    "iana",
    "bootstrap",
    "verisign",
    "arin",
    "ripe",
    "apnic",
    "lacnic"
  ],
  "author": {
    "name": "RDAPify Contributors"
  },
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rdapify/RDAPify.git"
  },
  "bugs": {
    "url": "https://github.com/rdapify/RDAPify/issues"
  },
  "homepage": "https://rdapify.com",
  "engines": {
    "node": ">=20.0.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.11",
    "@types/node": "^25.5.0",
    "@typescript-eslint/eslint-plugin": "^8.53.1",
    "@typescript-eslint/parser": "^8.53.1",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-prettier": "^5.1.3",
    "eslint-plugin-security": "^3.0.1",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "prettier": "^3.2.4",
    "rimraf": "^6.1.3",
    "ts-jest": "^29.1.1",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "ipaddr.js": "^2.3.0",
    "tslib": "^2.8.1"
  },
  "peerDependencies": {
    "rdapify-nd": ">=0.1.0"
  },
  "peerDependenciesMeta": {
    "rdapify-nd": {
      "optional": true
    }
  }
}
