-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.98 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
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
{
"name": "vigil",
"private": true,
"version": "0.0.0",
"description": "A password manager with modern UI, security checks, and more.",
"author": "Ryan",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"preview": "vite preview",
"electron:dev": "node electron/build.mjs && node electron/copy-native-modules.mjs && concurrently \"vite\" \"cross-env NODE_ENV=development electron dist-electron/main.js\"",
"electron:build": "tsc -b && vite build && node electron/build.mjs && node electron/copy-native-modules.mjs && electron-builder"
},
"dependencies": {
"@node-rs/argon2": "^2.0.2",
"@types/zxcvbn": "^4.4.5",
"kdbxweb": "^2.1.1",
"keytar": "^7.9.0",
"passport-desktop": "^0.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"detect-libc": "^2.0.3",
"electron": "^29.4.6",
"electron-builder": "^24.13.3",
"esbuild": "^0.20.2",
"node-addon-api": "^8.3.0",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vite-plugin-electron": "^0.28.8",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.4.1"
},
"main": "dist-electron/main.js",
"build": {
"appId": "com.vigil.app",
"productName": "Vigil",
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json"
],
"asar": true,
"extraMetadata": {
"main": "dist-electron/main.js"
},
"mac": {
"target": "dmg",
"icon": "build/icons/icon.icns"
},
"linux": {
"target": "AppImage",
"icon": "build/icons/icon.png"
},
"win": {
"target": "nsis",
"icon": "build/icons/icon.ico"
},
"fileAssociations": [
{
"ext": "kdbx",
"name": "KeePass Database",
"description": "KeePass Password Database",
"role": "Editor",
"icon": "build/icons/icon"
}
]
}
}