{ "name": "keyv", "version": "5.2.3", "description": "Simple key-value storage with support for multiple backends", "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-node-protocol": "off", "@typescript-eslint/consistent-type-definitions": "off", "unicorn/no-typeof-undefined": "off", "unicorn/prefer-event-target": "off", "import/no-extraneous-dependencies": "off", "import/extensions": "off", "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/no-unsafe-call": "off", "@typescript-eslint/no-for-in-array": "off", "guard-for-in": "off", "no-await-in-loop": "off", "@typescript-eslint/no-unsafe-return": "off", "@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-unsafe-argument": "off", "@typescript-eslint/naming-convention": "off", "@typescript-eslint/consistent-type-assertions": "off", "@typescript-eslint/no-confusing-void-expression": "off", "@typescript-eslint/no-var-requires": "off", "@typescript-eslint/prefer-ts-expect-error": "off" } }, "repository": { "type": "git", "url": "git+https://github.com/jaredwray/keyv.git" }, "keywords": [ "key", "value", "store", "cache", "ttl", "key-value", "storage", "backend", "adapter", "redis", "mongodb", "sqlite", "mysql", "postgresql", "memory", "node-cache", "lru-cache", "lru", "cache-manager" ], "author": "Jared Wray (http://jaredwray.com)", "license": "MIT", "bugs": { "url": "https://github.com/jaredwray/keyv/issues" }, "homepage": "https://github.com/jaredwray/keyv", "dependencies": { "@keyv/serialize": "^1.0.2" }, "devDependencies": { "rimraf": "^6.0.1", "timekeeper": "^2.3.1", "tsd": "^0.31.2", "xo": "^0.60.0", "@keyv/compress-brotli": "^2.0.2", "@keyv/compress-gzip": "^2.0.2", "@keyv/memcache": "^2.0.1", "@keyv/mongo": "^3.0.1", "@keyv/sqlite": "^4.0.1", "@keyv/test-suite": "^2.0.3" }, "tsd": { "directory": "test" }, "files": [ "dist", "LISCENCE" ], "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 ./test/testdb.sqlite ./dist" } }