-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"name": "copyguard-desktop",
"version": "1.0.0",
"description": "Desktop app untuk memverifikasi hasil copy folder dan mengumpulkan file yang belum tercopy.",
"main": "src/main.js",
"author": "Codex",
"license": "MIT",
"scripts": {
"start": "electron .",
"build:win": "electron-builder --win portable",
"dist": "electron-builder --win portable"
},
"devDependencies": {
"electron": "^35.1.5",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "com.codex.copyguard",
"productName": "CopyGuard",
"asar": true,
"compression": "maximum",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"assets/**/*",
"package.json"
],
"win": {
"icon": "assets/copyguard.ico",
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
],
"artifactName": "CopyGuard-${version}-portable.${ext}"
},
"portable": {
"artifactName": "CopyGuard-${version}-portable.${ext}",
"requestExecutionLevel": "user"
}
}
}