forked from Authenticator-Extension/Authenticator
-
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.46 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.46 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": "vaultotp",
"version": "0.1.0",
"description": "Open-source 2FA authenticator browser extension for TOTP and HOTP one-time passwords.",
"keywords": [
"vaultotp",
"2fa",
"totp",
"hotp",
"otp",
"authenticator",
"two-factor-authentication",
"two-step-verification",
"chrome-extension",
"browser-extension"
],
"scripts": {
"check": "npm run check:i18n && tsc --noEmit --pretty false && npm run chrome",
"check:i18n": "node scripts/check-i18n.js",
"compile": "bash scripts/build.sh firefox",
"dev:chrome": "npm run chrome",
"package:chrome": "node scripts/package-chrome.js",
"chrome": "bash scripts/build.sh chrome",
"firefox": "bash scripts/build.sh firefox",
"edge": "bash scripts/build.sh edge",
"prod": "bash scripts/build.sh prod",
"pretest": "bash scripts/build.sh test",
"test": "node scripts/test-runner.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WSL0809/Authenticator.git"
},
"author": "VaultOTP contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/WSL0809/Authenticator/issues"
},
"homepage": "https://chromewebstore.google.com/detail/kghimfkkjamkpinfgmpmfngpjiofbkbn",
"devDependencies": {
"@types/argon2-browser": "^1.18.4",
"@types/chai": "^4.2.14",
"@types/chrome": "^0.0.266",
"@types/crypto-js": "^4.2.2",
"@types/dragula": "^3.7.5",
"@types/mocha": "^10.0.6",
"@types/sinon": "^17.0.2",
"@types/sinon-chai": "^3.2.12",
"@types/sinon-chrome": "^2.2.10",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-vue": "^6.0.2",
"@vue/compiler-sfc": "^3.5.35",
"@vue/test-utils": "^2.4.11",
"chai": "^4.2.0",
"eslint": "^8.56.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"npm-license-generator": "^2.0.0",
"nyc": "^15.1.0",
"prettier": "2.2.1",
"puppeteer": "^22.11.2",
"sass": "^1.26.11",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"sinon-chrome": "^3.0.1",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vite-svg-loader": "^5.1.1"
},
"dependencies": {
"@types/lodash": "^4.14.166",
"argon2-browser": "^1.18.0",
"crypto-js": "^4.2.0",
"dragula": "^3.7.3",
"jsqr": "^1.3.1",
"node-gost-crypto": "^1.0.2",
"qrcode-generator": "^1.4.4",
"qrcode-reader": "^1.0.4",
"tldts": "^7.4.8",
"vue": "^3.5.35",
"vuex": "^4.1.0"
}
}