-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "@otp-forge/redis-store",
"version": "0.0.1",
"description": "Officially supported Redis store for https://www.npmjs.com/package/@otp-forge/otp-forge.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tsc",
"build": "tsup index.ts --format cjs,esm",
"release": "pnpm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/otp-forge/redis-store.git"
},
"keywords": [
"redis",
"store",
"otp",
"password"
],
"author": "Rushabh Javeri <[email protected]>",
"contributors": [
"Manan Gandhi <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/otp-forge/redis-store/issues"
},
"homepage": "https://github.com/otp-forge/redis-store#readme",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@otp-forge/otp-forge": "^1.0.2",
"@redis/client": "^1.5.17",
"@types/node": "^20.14.12",
"tsup": "^8.2.3",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@otp-forge/otp-forge": ">=1",
"@redis/client": ">=1"
}
}