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

@keyv/serialize

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@keyv/serialize - npm Package Compare versions

Comparing version
1.1.1
to
6.0.0-alpha.1
+21
-15
package.json
{
"name": "@keyv/serialize",
"version": "1.1.1",
"version": "6.0.0-alpha.1",
"description": "Serialization for Keyv",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}

@@ -33,10 +39,8 @@ },

"devDependencies": {
"@biomejs/biome": "^2.2.3",
"@vitest/coverage-v8": "^3.2.4",
"rimraf": "^6.0.1",
"@biomejs/biome": "^2.3.13",
"@vitest/coverage-v8": "^4.0.18",
"rimraf": "^6.1.2",
"tsd": "^0.33.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"@keyv/test-suite": "^2.1.1",
"keyv": "^5.5.0"
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},

@@ -52,6 +56,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 ./dist"
}
}

@@ -11,3 +11,3 @@ # @keyv/serialize [<img width="100" align="right" src="https://jaredwray.com/images/keyv-symbol.svg" alt="keyv">](https://github.com/jaredwra/keyv)

This is the serialization functionality for [Keyv](https://github.com/jaredwray/keyv/tree/main/packages/keyv). It is used to serialize and deserialize data for storage and retrieval. You can also create your own [custom serialization functions](https://github.com/jaredwray/keyv/tree/main/packages/keyv#custom-serializers).
This is the serialization functionality for [Keyv](https://github.com/jaredwray/keyv/tree/main/core/keyv). It is used to serialize and deserialize data for storage and retrieval. You can also create your own [custom serialization functions](https://github.com/jaredwray/keyv/tree/main/core/keyv#custom-serializers).

@@ -14,0 +14,0 @@ ## License