-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "result-cache",
"version": "0.0.4",
"author": {
"name": "Jon Lambert",
"email": "[email protected]",
"url": "https://jonlambert.co.uk"
},
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jonlambert/repeat-cache"
},
"devDependencies": {
"@redis/client": "^1.5.5",
"concurrently": "^8.0.1",
"ioredis": "^5.3.1",
"semantic-release": "^20.1.0",
"tsup": "^6.6.2",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vitest": "^0.28.4"
},
"peerDependencies": {
"@redis/client": "^1.5.5",
"ioredis": "^5.3.1"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
},
"@redis/client": {
"optional": true
}
},
"scripts": {
"dev": "concurrently 'tsup --watch --sourcemap --dts --onSuccess \"tsc --emitDeclarationOnly --declaration\"'",
"build": "tsup --minify --clean --onSuccess \"tsc --emitDeclarationOnly --declaration\"",
"lint": "npx eslint",
"release": "npx semantic-release"
},
"release": {
"branches": [
"main"
]
}
}