{
  "name": "@workflow-worlds/redis",
  "version": "0.2.2",
  "description": "Redis World implementation for Workflow DevKit using BullMQ",
  "author": "Dustin Townsend",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mizzle-dev/workflow-worlds.git",
    "directory": "packages/redis"
  },
  "homepage": "https://github.com/mizzle-dev/workflow-worlds/tree/main/packages/redis#readme",
  "bugs": {
    "url": "https://github.com/mizzle-dev/workflow-worlds/issues"
  },
  "type": "module",
  "main": "dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "engines": {
    "node": ">=22"
  },
  "dependencies": {
    "@workflow/errors": "4.1.0-beta.14",
    "@workflow/world": "4.1.0-beta.2",
    "bullmq": "^5.34.0",
    "cbor-x": "1.6.0",
    "ioredis": "^5.4.2",
    "ulid": "^2.3.0"
  },
  "devDependencies": {
    "@testcontainers/redis": "^10.18.0",
    "@types/node": "^22.0.0",
    "@workflow/world-testing": "4.1.0-beta.54",
    "typescript": "^5.7.0",
    "vitest": "^3.0.0",
    "@workflow-worlds/testing": "0.2.1"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "workflow",
    "world",
    "redis",
    "bullmq",
    "durable-functions"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "pnpm --filter @workflow-worlds/testing build && pnpm build && vitest run",
    "test:only": "pnpm --filter @workflow-worlds/testing build && vitest run",
    "typecheck": "tsc --noEmit"
  }
}