-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
68 lines (68 loc) · 1.61 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
{
"name": "@vercel/kv",
"version": "3.0.0",
"description": "Durable Redis",
"homepage": "https://vercel.com",
"repository": {
"type": "git",
"url": "https://github.com/vercel/storage.git",
"directory": "packages/kv"
},
"license": "Apache-2.0",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"require": {
"node": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch --clean=false",
"lint": "eslint --max-warnings=0 .",
"prepublishOnly": "pnpm run build",
"prettier-check": "prettier --check .",
"publint": "npx publint",
"test": "jest --env @edge-runtime/jest-environment .test.ts && jest --env node .test.ts",
"type-check": "tsc --noEmit"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"@upstash/redis": "^1.34.0"
},
"devDependencies": {
"@changesets/cli": "2.27.10",
"@edge-runtime/jest-environment": "2.3.10",
"@edge-runtime/types": "2.2.9",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"eslint": "8.56.0",
"eslint-config-custom": "workspace:*",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"tsconfig": "workspace:*",
"tsup": "8.3.5",
"typescript": "5.6.3"
},
"engines": {
"node": ">=14.6"
}
}