-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
47
48
{
"name": "2fauth-browser-extension",
"displayName": "2FAuth",
"version": "1.0.0",
"description": "Official 2FAuth web extension",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Bubka/2FAuth-WebExtension"
},
"scripts": {
"dev": "vite",
"devv": "vite build --watch --mode development",
"build": "npm run build:chrome && npm run build:firefox",
"build:chrome": "TARGET=chrome vite build",
"build:firefox": "cross-env TARGET=firefox vite build",
"lint": "eslint . --fix"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@kyvg/vue3-notification": "^3.0.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/devtools": "^7.7.1",
"@vueuse/components": "^12.0.0",
"@vueuse/core": "^12.0.0",
"axios": "^1.1.2",
"bulma": "0.9.4",
"bulma-checkradio": "2.1.3",
"cross-env": "^7.0.3",
"crypto-js": "^4.2.0",
"eslint-plugin-vue": "^9.30.0",
"lucide-vue-next": "^0.474.0",
"pinia": "^2.2.6",
"pinia-plugin-persistedstate-2": "^2.0.28",
"sass": "1.67",
"unplugin-auto-import": "^0.18.6",
"vite": "^5.4.10",
"vite-plugin-web-extension": "^4.3.1",
"vue-i18n": "^10.0.5",
"vue-router": "^4.5.0",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.12.0"
},
"dependencies": {
"vue": "^3.5.12"
}
}