-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "upstash-kv",
"version": "3.0.0",
"description": "Simple Upstash Redis client based on @vercel/kv",
"homepage": "https://github.com/CodeWithShreyans/upstash-kv.git",
"repository": {
"type": "git",
"url": "https://github.com/CodeWithShreyans/upstash-kv.git"
},
"license": "Apache-2.0",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"node": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint --max-warnings=0 .",
"prepublishOnly": "pnpm run build",
"prettier-check": "prettier --check .",
"publint": "pnpx publint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@upstash/redis": "^1.34.3",
"@vercel/kv": "^3.0.0"
},
"devDependencies": {
"@changesets/cli": "2.27.9",
"@types/node": "22.7.7",
"@vercel/style-guide": "^6.0.0",
"eslint": "9.13.0",
"prettier": "3.3.3",
"tsup": "8.3.0",
"typescript": "5.6.3"
},
"engines": {
"node": ">=14.6"
}
}