{
  "name": "dns-caching",
  "version": "0.2.7",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/jellyseerr/dns-caching"
  },
  "scripts": {
    "test": "sudo docker compose  -f compose.test.yml up --no-log-prefix --abort-on-container-exit",
    "build": "npm run build:cjs && npm run build:esm",
    "build:esm": "tsc -p tsconfig.json",
    "build:cjs": "tsc -p tsconfig.cjs.json"
  },
  "keywords": [
    "dns",
    "caching",
    "cache"
  ],
  "author": "",
  "license": "MIT",
  "description": "",
  "exports": {
    "require": "./dist/cjs/index.js",
    "import": "./dist/esm/index.js",
    "types": "./dist/index.d.ts"
  },
  "files": [
    "LICENSE",
    "README.md",
    "dist"
  ],
  "dependencies": {
    "lru-cache": "^11.1.0"
  },
  "devDependencies": {
    "@jest/globals": "^30.0.5",
    "@types/node": "^24.0.3",
    "jest": "^30.0.5",
    "ts-jest": "^29.4.1",
    "typescript": "^5.8.3"
  }
}
