-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 974 Bytes
/
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
{
"name": "otp-mgr",
"version": "0.1.0",
"description": "A nodejs library that handles the generation, storage and verification of OTPs.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tsc",
"build": "tsup index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/rushabhhere/otp-mgr.git"
},
"keywords": [
"otp",
"password",
"2fa",
"verify"
],
"author": "Rushabh Javeri <rushabhworks247@gmail.com>",
"contributors": [
"Manan Gandhi <ardumanan@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rushabhhere/otp-mgr/issues"
},
"homepage": "https://github.com/rushabhhere/otp-mgr#readme",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/node": "^20.14.12",
"tsup": "^8.2.3",
"typescript": "^5.5.4"
}
}