-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.86 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.86 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "cacheable",
"version": "2.3.3",
"description": "High Performance Layer 1 / Layer 2 Caching with Keyv Storage",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredwray/cacheable.git",
"directory": "packages/cacheable"
},
"author": "Jared Wray <me@jaredwray.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepublish": "pnpm build",
"lint": "biome check --write --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
"clean": "rimraf ./dist ./coverage ./node_modules"
},
"devDependencies": {
"@keyv/redis": "^5.1.5",
"@keyv/valkey": "^1.0.11",
"@qified/redis": "^0.9.0",
"lru-cache": "^11.2.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@cacheable/memory": "workspace:^",
"@cacheable/utils": "workspace:^",
"hookified": "^1.15.0",
"keyv": "^5.6.0",
"qified": "^0.9.0"
},
"keywords": [
"cacheable",
"high performance",
"layer 1 caching",
"layer 2 caching",
"distributed caching",
"Keyv storage engine",
"memory caching",
"LRU cache",
"expiration",
"CacheableMemory",
"offline support",
"distributed sync",
"secondary store",
"primary store",
"non-blocking operations",
"cache statistics",
"layered caching",
"fault tolerant",
"scalable cache",
"in-memory cache",
"distributed cache",
"lruSize",
"lru",
"multi-tier cache"
],
"files": [
"dist",
"LICENSE"
]
}