@keyv/valkey
Version:
Valkey storage adapter for Keyv
84 lines • 2.11 kB
JSON
{
"name": "@keyv/valkey",
"version": "1.0.3",
"description": "Valkey 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"
}
},
"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",
"directory": "packages/valkey"
},
"keywords": [
"redis",
"valkey",
"valkeyio",
"ioredis",
"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": {
"iovalkey": "^0.3.1"
},
"devDependencies": {
"rimraf": "^6.0.1",
"timekeeper": "^2.3.1",
"tsd": "^0.31.2",
"xo": "^0.60.0",
"keyv": "^5.2.3",
"@keyv/test-suite": "^2.0.4"
},
"tsd": {
"directory": "test"
},
"engines": {
"node": ">= 18"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"test": "xo --fix && vitest run --coverage",
"test:ci": "xo && vitest --run --sequence.setupFiles=list",
"clean": "rimraf ./node_modules ./coverage ./dist"
}
}