-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.79 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.79 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
113
114
115
116
{
"name": "locky",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "echo 'Using pre-built icons from assets/build/ directory'",
"build:mac": "electron-builder --mac --x64 --arm64",
"build:win": "electron-builder --win --x64",
"build:win:arm64": "electron-builder --win --arm64",
"build:linux": "electron-builder --linux --x64",
"build:linux:arm64": "electron-builder --linux --arm64",
"build:linux:armv7l": "electron-builder --linux --armv7l",
"build:linux:deb": "electron-builder --linux deb --x64",
"build:linux:rpm": "electron-builder --linux rpm --x64",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"encryption",
"security",
"file-vault"
],
"author": {
"name": "Cogrow4",
"email": "[email protected]"
},
"license": "Unlicense",
"description": "A secure file vault application with encryption",
"homepage": "https://github.com/cogrow4/Locky",
"dependencies": {
"crypto-js": "^4.2.0",
"fs-extra": "^11.3.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"electron": "^28.1.0",
"electron-builder": "^26.0.12",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.4"
},
"build": {
"appId": "com.cogrow4.locky",
"productName": "Locky",
"directories": {
"output": "dist",
"buildResources": "assets",
"app": "."
},
"extraResources": [
{
"from": "assets",
"to": "assets",
"filter": ["icon.*"]
}
],
"files": [
"**/*",
"!assets/build/icon.iconset",
"!assets/build/icon.icns.icns",
"!assets/icon.svg",
"!scripts",
"!.github",
"!.gitignore",
"!README.md",
"!LICENSE",
"!package-lock.json",
"!**/*.md",
"!**/.DS_Store"
],
"mac": {
"icon": "assets/icon.icns",
"target": ["dmg", "zip"],
"category": "public.app-category.utilities"
},
"win": {
"icon": "assets/icon.ico",
"target": ["nsis", "msi", "portable"]
},
"linux": {
"icon": "assets/icon.png",
"target": ["AppImage", "deb", "rpm"],
"category": "Utility",
"maintainer": "Cogrow4 <[email protected]>"
},
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
},
{
"target": "nsis",
"arch": ["x64", "arm64"]
},
{
"target": "portable",
"arch": ["x64", "arm64"]
},
{
"target": "AppImage",
"arch": ["x64", "arm64", "armv7l"]
},
{
"target": "deb",
"arch": ["x64", "arm64", "armv7l"]
},
{
"target": "rpm",
"arch": ["x64", "arm64", "armv7l"]
}
],
"publish": {
"provider": "github",
"releaseType": "draft"
}
}
}