{
  "name": "@mastra/redis",
  "version": "1.4.5",
  "description": "Redis storage provider for Mastra - provides storage capabilities for direct Redis connections",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "author": "Mauro Erta <mauro@vlkstudio.com>",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "license": "Apache-2.0",
  "dependencies": {
    "redis": "5.12.1"
  },
  "devDependencies": {
    "@types/node": "22.20.1",
    "@vitest/coverage-v8": "4.1.10",
    "@vitest/ui": "4.1.10",
    "dotenv": "^17.4.2",
    "eslint": "^10.7.0",
    "ioredis": "^5.11.1",
    "tsdown": "0.22.9",
    "tsx": "^4.23.1",
    "typescript": "^7.0.2",
    "vitest": "4.1.10",
    "@internal/lint": "0.0.133",
    "@internal/storage-test-utils": "0.0.129",
    "@internal/types-builder": "0.0.108",
    "@mastra/core": "1.67.0"
  },
  "peerDependencies": {
    "@mastra/core": ">=1.61.0-0 <2.0.0-0"
  },
  "files": [
    "dist"
  ],
  "homepage": "https://mastra.ai",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mastra-ai/mastra.git",
    "directory": "stores/redis"
  },
  "bugs": {
    "url": "https://github.com/mastra-ai/mastra/issues"
  },
  "engines": {
    "node": ">=22.13.0"
  },
  "scripts": {
    "build": "pnpm build:lib",
    "build:lib": "tsdown --silent --config tsdown.config.ts",
    "build:watch": "tsdown --watch --silent --config tsdown.config.ts",
    "pretest": "docker compose up -d",
    "test": "vitest run",
    "posttest": "docker compose down",
    "lint": "oxlint . && eslint .",
    "lint:fix": "oxlint --fix . && eslint --fix ."
  }
}