-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.99 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.99 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "vault-pm",
"version": "1.0.0",
"description": "Fully local, zero-internet password manager with AES-256-GCM encryption",
"main": "dist/main/main/main.js",
"scripts": {
"dev": "npm run build:main && concurrently \"npm run dev:renderer\" \"npm run dev:main\" \"npm run dev:electron\"",
"dev:renderer": "vite",
"dev:main": "tsc -p tsconfig.main.json --watch",
"dev:electron": "wait-on http://localhost:5173 && electron .",
"build": "npm run build:renderer && npm run build:main",
"build:renderer": "vite build",
"build:main": "tsc -p tsconfig.main.json",
"build:extension": "tsc -p extension/tsconfig.json",
"start": "electron .",
"package": "electron-builder",
"package:prod": "npm run build && electron-builder --publish never",
"clean": "rimraf dist release",
"test": "vitest",
"test:unit": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"audit:network": "ts-node scripts/audit-network.ts",
"lint": "eslint src --ext .ts,.tsx"
},
"dependencies": {
"argon2": "0.31.2",
"better-sqlite3": "11.3.0",
"bonjour-service": "^1.2.1",
"electron-store": "^8.1.0",
"otpauth": "^9.3.2",
"qrcode": "^1.5.4",
"uuid": "^9.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/chrome": "^0.0.280",
"@types/node": "^20.10.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.12",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^8.2.2",
"electron": "32.0.0",
"electron-builder": "24.13.3",
"electron-rebuild": "3.2.9",
"eslint": "^8.55.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"terser": "^5.31.0",
"typescript": "^5.3.0",
"vite": "^7.3.0",
"vitest": "^4.0.16",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.vault.pm",
"productName": "Vault",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"icon": "assets/icon.png",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"assets/**/*",
"package.json",
"!**/*.map",
"!**/*.test.js",
"!**/*.spec.js",
"!**/test/**",
"!**/tests/**",
"!**/__tests__/**"
],
"asar": true,
"asarUnpack": [
"**/*.node"
],
"compression": "maximum",
"win": {
"icon": "assets/icon.png",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": true
},
"mac": {
"icon": "assets/icon.png",
"target": "dmg"
},
"linux": {
"icon": "assets/icon.png",
"target": "AppImage"
},
"extraResources": [],
"electronLanguages": [
"en-US"
]
}
}