-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.72 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
{
"name": "weekflow-electron",
"version": "26.07.04",
"description": "WeekFlow Electron desktop editor",
"private": true,
"main": "electron/main.cjs",
"scripts": {
"electron:dev": "electron .",
"electron:bridge": "powershell -NoProfile -ExecutionPolicy Bypass -File .scripts/build_electron_bridge.ps1",
"electron:pack": "powershell -NoProfile -ExecutionPolicy Bypass -File .scripts/build_electron_bridge.ps1 && powershell -NoProfile -ExecutionPolicy Bypass -File .scripts/run_electron_builder.ps1 --dir && powershell -NoProfile -ExecutionPolicy Bypass -File .scripts/finalize_electron_dist.ps1",
"electron:dist": "powershell -NoProfile -ExecutionPolicy Bypass -File .scripts/build_electron_bridge.ps1 && powershell -NoProfile -ExecutionPolicy Bypass -File .scripts/run_electron_builder.ps1 --dir && powershell -NoProfile -ExecutionPolicy Bypass -File .scripts/finalize_electron_dist.ps1"
},
"devDependencies": {
"electron": "^31.7.7",
"electron-builder": "^24.13.3",
"rcedit": "5.0.2"
},
"build": {
"appId": "app.weekflow.desktop",
"productName": "WeekFlow",
"directories": {
"output": "dist-electron"
},
"files": [
"electron/**/*",
"package.json",
"src/weekflow_logo.ico"
],
"extraFiles": [
{
"from": "data",
"to": "data",
"filter": [
"**/*"
]
}
],
"extraResources": [
{
"from": "dist/bridge",
"to": "bridge",
"filter": [
"**/*"
]
}
],
"win": {
"icon": "src/weekflow_logo.ico",
"signAndEditExecutable": false,
"target": [
"portable"
]
}
}
}