{
  "name": "@auth0/ai-redis",
  "version": "1.1.2",
  "description": "Auth0 AI ioredis Data Store implementation",
  "repository": {
    "type": "git",
    "url": "https://github.com/auth0/auth0-ai-js"
  },
  "types": "dist/esm/index.d.ts",
  "main": "dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "scripts": {
    "build": "npm run clean && npm run build:esm && npm run build:cjs",
    "build:watch": "run-p 'build:esm -- --watch' 'build:cjs -- -watch'",
    "build:esm": "tsc --project ./tsconfig.build.json --outDir ./dist/esm",
    "build:cjs": "tsc --project ./tsconfig.build.json --module nodenext --moduleResolution nodenext --declaration false --declarationMap false --outDir ./dist/cjs",
    "clean": "rm -rf dist",
    "lint": "eslint .",
    "semantic-release": "npx --no semantic-release",
    "type-check": "tsc --noEmit",
    "test": "vitest run"
  },
  "files": [
    "dist/**/*.{*js,*js.map,d.ts}"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/esm/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "author": {
    "name": "Auth0 Inc.",
    "url": "https://auth0.com"
  },
  "license": "Apache-2.0",
  "dependencies": {
    "@auth0/ai": "*"
  },
  "peerDependencies": {
    "ioredis": "^5.6"
  },
  "devDependencies": {
    "@eslint/compat": "^1.2.7",
    "@types/node": "^22.10.6",
    "eslint": "^9.22.0",
    "typedoc": "^0.27.6",
    "typescript": "^5.7.3",
    "vitest": "^3.0.9"
  },
  "publishConfig": {
    "access": "public"
  }
}
