{
  "name": "@openfn/language-redis",
  "label": "Redis",
  "version": "1.3.19",
  "description": "OpenFn adaptor for Redis",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./types/index.d.ts",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "author": "Open Function Group",
  "license": "LGPLv3",
  "files": [
    "dist/",
    "types/",
    "ast.json",
    "configuration-schema.json"
  ],
  "dependencies": {
    "redis": "^4.7.0",
    "@openfn/language-common": "3.3.1"
  },
  "devDependencies": {
    "assertion-error": "2.0.0",
    "chai": "4.3.6",
    "deep-eql": "4.1.1",
    "rimraf": "3.0.2"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/openfn/adaptors.git"
  },
  "types": "types/index.d.ts",
  "main": "dist/index.cjs",
  "scripts": {
    "build": "pnpm clean && build-adaptor redis",
    "test": "mocha --experimental-specifier-resolution=node --no-warnings",
    "test:watch": "mocha -w --experimental-specifier-resolution=node --no-warnings",
    "clean": "rimraf dist types docs",
    "pack": "pnpm pack --pack-destination ../../dist",
    "lint": "eslint src"
  }
}