-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.96 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.96 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
{
"name": "google-authenticator-export-decoder",
"version": "0.1.2",
"description": "PWA to scan Google Authenticator export QR codes and export TOTP secrets to CSV, JSON, or Bitwarden format",
"author": "Karl Bauer <karl.bauer@bauer-group.com>",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "npx vite",
"build": "npx tsc --noEmit && npx vite build",
"preview": "npx vite preview",
"test": "npx vitest",
"test:run": "npx vitest run",
"test:coverage": "npx vitest run --coverage",
"type-check": "npx tsc --noEmit",
"clean": "npx rimraf dist node_modules/.vite",
"generate-icons": "node scripts/generate-icons.mjs"
},
"keywords": [
"2fa",
"google",
"authenticator",
"export",
"migrate",
"totp",
"qr-code",
"bitwarden",
"vaultwarden",
"pwa"
],
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"hi-base32": "^0.5.1",
"html5-qrcode": "^2.3.8",
"i18next": "^25.8.0",
"i18next-browser-languagedetector": "^8.0.4",
"i18next-http-backend": "^3.0.2",
"lucide-react": "^0.563.0",
"protobufjs": "^8.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.4",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.4",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"rimraf": "^6.0.1",
"tailwindcss": "^4.1.4",
"typescript": "^5.8.3",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^4.0.18"
}
}