{ "name": "@keyv/memcache", "version": "2.0.1", "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" } }, "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/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 (https://jaredwray.com)", "license": "MIT", "bugs": { "url": "https://github.com/jaredwray/keyv/issues" }, "homepage": "https://github.com/jaredwray/keyv", "dependencies": { "@keyv/serialize": "*", "buffer": "^6.0.3", "memjs": "^1.3.2" }, "devDependencies": { "@keyv/test-suite": "*", "@types/memjs": "^1.3.3", "keyv": "^5.0.0", "ts-node": "^10.9.2", "tsd": "^0.31.1", "typescript": "^5.5.4", "xo": "^0.59.3" }, "tsd": { "directory": "test" }, "files": [ "dist", "LICENSE" ] }