-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "cacheforge",
"version": "1.3.0",
"description": "A multi-level caching library for Node.js applications, supporting in-memory and Redis, and custom cache levels.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"tags": [
"cache",
"multilevel",
"redis",
"in-memory",
"typescript",
"nodejs"
],
"dependencies": {
"@datastructures-js/heap": "^4.3.7",
"@sesamecare-oss/redlock": "^1.4.0",
"benny": "^3.7.1",
"json-with-bigint": "^3.4.4"
},
"devDependencies": {
"@biomejs/biome": "2.3.0",
"@faker-js/faker": "^9.9.0",
"@testcontainers/redis": "^11.7.1",
"@vitest/coverage-v8": "^3.2.4",
"testcontainers": "^11.7.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"ioredis": ">=5.0.0"
},
"scripts": {
"test": "vitest --coverage",
"test:debug": "vitest --inspect-brk --no-file-parallelism",
"benchmark": "ts-node tests/benchmarks/cache-performance.ts",
"typecheck": "tsc --noEmit",
"build": "tsc",
"lint": "biome check ./src",
"lint:fix": "biome format ./src --write && biome check ./src --write --unsafe",
"prepare": "npm run build"
}
}