keyv 5.5.1 → 5.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +9 -7
package/dist/index.cjs
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "keyv",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.2",
|
|
4
4
|
"description": "Simple key-value storage with support for multiple backends",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
"timekeeper": "^2.3.1",
|
|
55
55
|
"tsd": "^0.33.0",
|
|
56
56
|
"vitest": "^3.2.4",
|
|
57
|
-
"@keyv/
|
|
57
|
+
"@keyv/compress-brotli": "^2.0.5",
|
|
58
58
|
"@keyv/compress-lz4": "^1.0.1",
|
|
59
|
+
"@keyv/mongo": "^3.0.3",
|
|
59
60
|
"@keyv/memcache": "^2.0.2",
|
|
61
|
+
"@keyv/compress-gzip": "^2.0.3",
|
|
60
62
|
"@keyv/sqlite": "^4.0.5",
|
|
61
|
-
"@keyv/test-suite": "^2.1.1"
|
|
62
|
-
"@keyv/compress-brotli": "^2.0.5",
|
|
63
|
-
"@keyv/compress-gzip": "^2.0.3"
|
|
63
|
+
"@keyv/test-suite": "^2.1.1"
|
|
64
64
|
},
|
|
65
65
|
"tsd": {
|
|
66
66
|
"directory": "test"
|
|
@@ -71,8 +71,10 @@
|
|
|
71
71
|
],
|
|
72
72
|
"scripts": {
|
|
73
73
|
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
|
|
74
|
-
"
|
|
75
|
-
"
|
|
74
|
+
"lint": "biome check --write --error-on-warnings",
|
|
75
|
+
"lint:ci": "biome check --error-on-warnings",
|
|
76
|
+
"test": "pnpm lint && vitest run --coverage",
|
|
77
|
+
"test:ci": "pnpm lint:ci && vitest --run --sequence.setupFiles=list --coverage",
|
|
76
78
|
"clean": "rimraf ./node_modules ./coverage ./test/testdb.sqlite ./dist"
|
|
77
79
|
}
|
|
78
80
|
}
|