{
  "name": "memcache",
  "version": "1.6.0",
  "description": "Nodejs Memcache Client",
  "main": "./dist/index.cjs",
  "type": "module",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "tsdown",
    "prepublishOnly": "pnpm build",
    "lint": "biome check --write --error-on-warnings",
    "test": "pnpm lint && vitest run --coverage",
    "test:ci": "biome check --error-on-warnings && vitest run --coverage",
    "test:services:start": "docker compose up -d",
    "test:services:stop": "docker compose down",
    "clean": "rimraf ./node_modules ./coverage ./dist",
    "benchmark": "pnpm tsx benchmark/set-get.ts"
  },
  "keywords": [
    "memcache",
    "memcached",
    "driver",
    "client",
    "nodejs"
  ],
  "author": "Jared Wray <me@jaredwray.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/jaredwray/memcache"
  },
  "bugs": {
    "url": "https://github.com/jaredwray/memcache/issues"
  },
  "homepage": "https://github.com/jaredwray/memcache#readme",
  "devDependencies": {
    "@biomejs/biome": "^2.4.11",
    "@faker-js/faker": "^10.4.0",
    "@monstermann/tinybench-pretty-printer": "^0.3.0",
    "@types/memcached": "^2.2.10",
    "@types/memjs": "^1.3.3",
    "@types/node": "^25.6.0",
    "@vitest/coverage-v8": "^4.1.4",
    "memcached": "^2.2.2",
    "memjs": "^1.3.2",
    "rimraf": "^6.1.3",
    "tinybench": "^6.0.0",
    "tsdown": "^0.21.7",
    "tsx": "^4.21.0",
    "typescript": "^6.0.2",
    "vitest": "^4.1.4"
  },
  "dependencies": {
    "hookified": "^2.1.1"
  },
  "files": [
    "dist",
    "LICENSE"
  ],
  "module": "./dist/index.mjs"
}
