You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

keyv

Package Overview
Dependencies
Maintainers
2
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

keyv - npm Package Compare versions

Comparing version
5.5.1
to
5.5.2
+1
-1
dist/index.cjs

@@ -912,3 +912,3 @@ "use strict";

const results = [];
for (const key of keyPrefixed) {
for (const key of keys) {
results.push(await this.has(key));

@@ -915,0 +915,0 @@ }

@@ -886,3 +886,3 @@ // src/index.ts

const results = [];
for (const key of keyPrefixed) {
for (const key of keys) {
results.push(await this.has(key));

@@ -889,0 +889,0 @@ }

{
"name": "keyv",
"version": "5.5.1",
"version": "5.5.2",
"description": "Simple key-value storage with support for multiple backends",

@@ -57,9 +57,9 @@ "type": "module",

"vitest": "^3.2.4",
"@keyv/compress-brotli": "^2.0.5",
"@keyv/compress-lz4": "^1.0.1",
"@keyv/mongo": "^3.0.3",
"@keyv/compress-lz4": "^1.0.1",
"@keyv/memcache": "^2.0.2",
"@keyv/compress-gzip": "^2.0.3",
"@keyv/sqlite": "^4.0.5",
"@keyv/test-suite": "^2.1.1",
"@keyv/compress-brotli": "^2.0.5",
"@keyv/compress-gzip": "^2.0.3"
"@keyv/test-suite": "^2.1.1"
},

@@ -75,6 +75,8 @@ "tsd": {

"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"test": "biome check --write && vitest run --coverage",
"test:ci": "biome check && vitest --run --sequence.setupFiles=list --coverage",
"lint": "biome check --write --error-on-warnings",
"lint:ci": "biome check --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "pnpm lint:ci && vitest --run --sequence.setupFiles=list --coverage",
"clean": "rimraf ./node_modules ./coverage ./test/testdb.sqlite ./dist"
}
}