{
	"name": "@keyv/redis",
	"version": "3.0.1",
	"description": "Redis storage adapter for Keyv",
	"type": "module",
	"main": "dist/index.cjs",
	"module": "dist/index.js",
	"types": "dist/index.d.ts",
	"exports": {
		".": {
			"require": "./dist/index.cjs",
			"import": "./dist/index.js"
		}
	},
	"scripts": {
		"build": "rm -rf dist && tsup src/index.ts --format cjs,esm --dts --clean",
		"prepare": "yarn build",
		"test": "xo --fix && vitest run --coverage",
		"test:ci": "xo && vitest --run --sequence.setupFiles=list",
		"clean": "rm -rf node_modules && rm -rf ./coverage"
	},
	"xo": {
		"rules": {
			"import/no-named-as-default": "off",
			"unicorn/prefer-module": "off",
			"unicorn/prefer-event-target": "off",
			"unicorn/prefer-node-protocol": "off",
			"unicorn/no-typeof-undefined": "off",
			"import/extensions": "off",
			"@typescript-eslint/no-unsafe-call": "off",
			"@typescript-eslint/no-unsafe-assignment": "off",
			"@typescript-eslint/no-unsafe-return": "off",
			"unicorn/prefer-ternary": "off",
			"unicorn/no-array-callback-reference": "off",
			"import/no-extraneous-dependencies": "off",
			"@typescript-eslint/no-confusing-void-expression": "off"
		}
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/jaredwray/keyv.git"
	},
	"keywords": [
		"redis",
		"keyv",
		"storage",
		"adapter",
		"key",
		"value",
		"store",
		"cache",
		"ttl"
	],
	"author": "Jared Wray <me@jaredwray.com> (http://jaredwray.com)",
	"license": "MIT",
	"bugs": {
		"url": "https://github.com/jaredwray/keyv/issues"
	},
	"homepage": "https://github.com/jaredwray/keyv",
	"dependencies": {
		"ioredis": "^5.4.1"
	},
	"devDependencies": {
		"@keyv/test-suite": "*",
		"keyv": "^5.0.0",
		"timekeeper": "^2.3.1",
		"tsd": "^0.31.1",
		"xo": "^0.59.3"
	},
	"tsd": {
		"directory": "test"
	},
	"engines": {
		"node": ">= 18"
	},
	"files": [
		"dist",
		"LICENSE"
	]
}
