-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "advanced-cache-design",
"version": "1.0.0",
"description": "A collection of advanced cache design algorithms including LRU, LFU, ARC, TinyLFU, Count-Min Sketch, and Segmented LRU, implemented in TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"test": "echo \"No tests defined yet\"",
"example:lru": "node dist/examples/test-lru.js",
"example:lfu": "node dist/examples/test-lfu.js",
"example:arc": "node dist/examples/test-arc.js",
"example:tiny": "node dist/examples/test-tiny-lfu.js",
"example:slru": "node dist/examples/test-slru.js"
},
"keywords": [
"cache",
"lru",
"lfu",
"arc",
"tiny-lfu",
"count-min-sketch",
"slru",
"cache-algorithms",
"systems-design",
"typescript",
"nodejs",
"eviction-policy",
"high-performance"
],
"author": "Kavi Castelo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kavicastelo/advanced-cache-design.git"
},
"devDependencies": {
"typescript": "^5.6.3"
}
}