-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.31 KB
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
{
"name": "WinKey",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"keywords": [
"Authenticator",
"2FA",
"MFA",
"OTP",
"TOTP"
],
"author": "BeastCodZ",
"homepage": "https://github.com/BeastCodZ/WinKey",
"license": "ISC",
"description": "A Electron based 2FA Authenticator with TOTP support. It is designed to be a aesthethic and easy-to-use application for generating one-time passwords for two-factor authentication.",
"devDependencies": {
"electron": "^32.3.3",
"electron-builder": "^25.0.5"
},
"dependencies": {
"@getstation/electron-google-oauth2": "^14.0.0",
"axios": "^1.10.0",
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.3",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"electron-google-oauth": "^2.0.0",
"electron-store": "^10.1.0",
"express": "^4.21.0",
"googleapis": "^150.0.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.9.0",
"mongoose": "^8.6.3",
"otplib": "^12.0.1",
"qrcode": "^1.5.4"
},
"build": {
"appId": "com.beastcodz.winkey",
"mac": {
"target": "dmg",
"icon": "favicon"
},
"win": {
"target": "nsis",
"icon": "favicon"
},
"linux": {
"target": "AppImage",
"icon": "favicon"
}
}
}