-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.59 KB
/
package.json
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
{
"name": "keyv-upstash",
"version": "1.0.8",
"description": "Upstash Redis adapter for Keyv",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepare": "pnpm build",
"test": "vitest run --no-file-parallelism --coverage",
"test:services:start": "docker compose up -d",
"test:services:stop": "docker compose down -v",
"clean": "rimraf ./node_modules ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mahdavipanah/keyv-upstash.git"
},
"keywords": [
"redis",
"keyv",
"storage",
"adapter",
"key",
"value",
"store",
"cache",
"ttl",
"upstash",
"cache-manager",
"node-cache",
"memory"
],
"author": "Hamidreza Mahdavipanah <[email protected]> (https://hamidreza.tech)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mahdavipanah/keyv-upstash/issues"
},
"homepage": "https://github.com/mahdavipanah/keyv-upstash",
"dependencies": {
"@upstash/redis": "^1.34.3",
"keyv": "*"
},
"devDependencies": {
"@keyv/test-suite": "^2.0.2",
"@types/node": "18",
"@vitest/coverage-v8": "^2.1.7",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"type-fest": "^4.29.0",
"typescript": "^5.7.2",
"vitest": "^2.1.7"
},
"engines": {
"node": ">= 18"
},
"files": [
"dist",
"LICENSE"
]
}