@keyv/memcache
Version:
Memcache storage adapter for Keyv
87 lines • 2.26 kB
JSON
{
"name": "@keyv/memcache",
"version": "2.0.2",
"description": "Memcache 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/no-array-reduce": "off",
"n/prefer-global/process": "off",
"node/prefer-global/process": "off",
"unicorn/prefer-object-from-entries": "off",
"unicorn/prefer-node-protocol": "off",
"@typescript-eslint/consistent-type-imports": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/no-empty-function": "off",
"import/extensions": "off",
"no-promise-executor-return": "off",
"import/no-extraneous-dependencies": "off"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredwray/keyv.git"
},
"keywords": [
"memcache",
"keyv",
"storage",
"adapter",
"key",
"value",
"store",
"cache",
"ttl"
],
"author": "Jared Wray <me@jaredwray.com> (https://jaredwray.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaredwray/keyv/issues"
},
"homepage": "https://github.com/jaredwray/keyv",
"dependencies": {
"buffer": "^6.0.3",
"memjs": "^1.3.2",
"@keyv/serialize": "^1.0.3"
},
"peerDependencies": {
"keyv": "^5.3.4"
},
"devDependencies": {
"@types/memjs": "^1.3.3",
"@vitest/coverage-v8": "^3.2.3",
"rimraf": "^6.0.1",
"tsd": "^0.32.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.3",
"xo": "^1.1.0",
"@keyv/compress-gzip": "^2.0.3",
"@keyv/test-suite": "^2.0.7"
},
"tsd": {
"directory": "test"
},
"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"
}
}