{
  "name": "@better-auth/redis-storage",
  "version": "1.6.11",
  "description": "Redis storage for Better Auth secondary storage",
  "type": "module",
  "license": "MIT",
  "homepage": "https://www.better-auth.com/docs/storage",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/better-auth/better-auth.git",
    "directory": "packages/redis-storage"
  },
  "keywords": [
    "auth",
    "redis",
    "storage",
    "typescript",
    "better-auth"
  ],
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "dev-source": "./src/index.ts",
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    }
  },
  "peerDependencies": {
    "ioredis": "^5.0.0",
    "@better-auth/core": "^1.6.11"
  },
  "devDependencies": {
    "@types/node": "^25.3.2",
    "ioredis": "^5.9.3",
    "tsdown": "0.21.1",
    "typescript": "^5.9.3",
    "vitest": "^4.1.5",
    "@better-auth/core": "1.6.11"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "lint:package": "publint run --strict --pack false",
    "lint:types": "attw --profile esm-only --pack .",
    "typecheck": "tsc --noEmit",
    "test": "vitest"
  }
}