-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.5 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.5 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
{
"name": "usb-vault",
"version": "1.2.0",
"description": "Local-first password vault backed by a USB identity key.",
"main": "main.js",
"private": true,
"homepage": "https://github.com/iSev7n",
"author": {
"name": "Thomas Davis",
"email": "Tomatarmy@outlook.com"
},
"license": "MIT",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"lint": "eslint \"renderer/**/*.js\"",
"format": "prettier --write \"renderer/**/*.{js,css,html,json,md}\"",
"checksums": "cd dist && find . -maxdepth 1 -type f -print0 | xargs -0 sha256sum > SHA256SUMS.txt"
},
"devDependencies": {
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1"
},
"build": {
"appId": "com.thomas.usbvault",
"productName": "USB Vault",
"afterPack": "build/afterPack.js",
"files": [
"**/*",
"!**/*.md",
"!**/.git/**",
"!dist/**"
],
"directories": {
"buildResources": "build",
"output": "dist"
},
"win": {
"target": [
"nsis"
],
"icon": "build/icons"
},
"linux": {
"target": [
"deb",
"AppImage"
],
"category": "Utility"
},
"deb": {
"afterInstall": "build/linux/afterInstall.sh"
},
"mac": {
"target": [
"dmg"
],
"icon": "build/icons"
}
}
}