-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.09 KB
/
package.json
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
{
"name": "mini-authenticator",
"private": true,
"version": "1.0.0",
"type": "module",
"keywords": [
"authenticator",
"totp",
"chrome extension"
],
"author": "Kelvin Ng",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"daisyui": "^2.31.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"totp-auth": "^1.0.10"
},
"devDependencies": {
"@crxjs/vite-plugin": "^1.0.14",
"@iconify/react": "^4.0.0",
"@types/chrome": "^0.0.197",
"@types/node": "^18.8.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.12",
"postcss": "^8.4.17",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.4",
"vite": "^3.1.4"
},
"bugs": {
"url": "https://github.com/hoishing/mini-authenticator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoishing/mini-authenticator.git"
},
"homepage": "https://github.com/hoishing/mini-authenticator#readme"
}