-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 941 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 941 Bytes
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
{
"name": "nodeauth-browser-extension",
"version": "1.0.2",
"description": "NodeAuth Browser Extension - Secure 2FA/TOTP Assistant",
"private": true,
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"build:chrome": "node scripts/build.js --platform=chrome",
"build:firefox": "node scripts/build.js --platform=firefox",
"build:source": "node scripts/build.js --platform=source",
"build:all": "npm run build:chrome && npm run build:firefox && npm run build:source",
"preview": "vite build",
"test": "vitest"
},
"dependencies": {
"qrcode": "^1.5.4",
"vue": "^3.5.34",
"vue-i18n": "^11.4.2"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^11.1.2",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/test-utils": "^2.4.10",
"happy-dom": "^20.9.0",
"vite": "^8.0.11",
"vitest": "^4.1.5"
}
}