-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1008 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 1008 Bytes
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
{
"name": "otplib-cli",
"version": "13.4.0",
"description": "CLI tool for managing encrypted OTP vaults",
"license": "MIT",
"author": "Gerald Yeo <support@yeojz.dev>",
"type": "module",
"bin": {
"otplib": "./dist/index.cjs",
"otplibx": "./dist/otplibx.cjs"
},
"main": "./dist/index.cjs",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/yeojz/otplib.git",
"directory": "packages/otplib-cli"
},
"keywords": [
"otp",
"totp",
"hotp",
"2fa",
"cli",
"vault"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist .tsbuildinfo",
"dev": "tsup --watch",
"test": "vitest",
"test:ci": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src/"
},
"dependencies": {
"commander": "^14.0.3",
"otplib": "workspace:*"
},
"devDependencies": {
"@types/node": "^25.3.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}