-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.25 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "authenticator",
"productName": "Authenticator",
"version": "1.2.8",
"description": "Valorant & Riot Mobile authenticator for desktop (2FA): Riot Mobile MFA enrollment, rolling TOTP codes, and one-tap push login approvals for Riot Games accounts (Valorant, League of Legends). Local-first, secrets encrypted at rest. Windows, Electron.",
"author": "dancer <dancer@users.noreply.github.com>",
"license": "MIT",
"homepage": "https://github.com/dancer/authenticator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dancer/authenticator.git"
},
"bugs": {
"url": "https://github.com/dancer/authenticator/issues"
},
"keywords": [
"riot",
"riot-games",
"valorant",
"league-of-legends",
"2fa",
"two-factor-authentication",
"mfa",
"totp",
"hotp",
"otp",
"one-time-password",
"authenticator",
"riot-mobile",
"push-authentication",
"electron",
"desktop",
"windows",
"security"
],
"main": "src/main.cjs",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "electron .",
"test": "node --test test/totp.test.cjs test/push-config.test.cjs",
"package:win": "electron-builder --win nsis",
"publish:r2": "node scripts/publish-release.cjs",
"github:record": "node scripts/github-release.cjs",
"release:win": "npm run package:win && node scripts/publish-release.cjs && node scripts/github-release.cjs"
},
"build": {
"appId": "by.cryba.authenticator",
"productName": "Authenticator",
"electronVersion": "43.1.0",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"renderer/**/*",
"build/icon.png",
"build/icon.ico",
"node_modules/**/*",
"push.config.json"
],
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Authenticator",
"artifactName": "Authenticator-Setup-${version}.exe"
}
},
"dependencies": {
"@eneris/push-receiver": "^4.3.1"
},
"devDependencies": {
"electron": "^43.1.0",
"electron-builder": "^26.15.3",
"wrangler": "^4.111.0"
}
}