-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
149 lines (149 loc) · 4.74 KB
/
Copy pathpackage.json
File metadata and controls
149 lines (149 loc) · 4.74 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "work-day-with-god",
"version": "1.4.9",
"private": true,
"author": "Work Day with God",
"description": "A free offline devotional companion for Windows, Android, and iOS.",
"desktopName": "com.mcographics.workdaywithgod.desktop",
"main": "electron/main.cjs",
"scripts": {
"content:generate": "node scripts/generate-content.cjs",
"branding:generate": "node scripts/generate-branding.cjs",
"scenes:process": "node scripts/process-scenes.cjs",
"scenes:build-library": "node scripts/build-scenes-from-library.cjs",
"dev": "concurrently -k \"vite --host 127.0.0.1 --port 5183 --strictPort\" \"wait-on http://127.0.0.1:5183 && electron .\"",
"build": "vite build",
"android:add": "cap add android",
"android:sync": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/build-android.ps1 -SyncOnly",
"android:open": "cap open android",
"android:debug": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/build-android.ps1",
"android:release": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/build-android.ps1 -Release",
"ios:add": "cap add ios --packagemanager SPM",
"ios:assets": "node scripts/generate-ios-assets.cjs",
"ios:sync": "npm run build && npm run ios:assets && cap sync ios",
"ios:open": "cap open ios",
"preview": "vite preview",
"start": "electron .",
"test": "node --test tests/*.test.cjs",
"dist:win": "npm run branding:generate && npm run build && npx --yes electron-builder@26.15.3 --win nsis",
"dist:linux": "npm run branding:generate && npm run build && npx --yes electron-builder@26.15.3 --linux --x64 --publish never",
"dist:linux:docker": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/build-linux.ps1"
},
"devDependencies": {
"@capacitor/cli": "^8.5.0",
"@vitejs/plugin-react": "^4.4.1",
"concurrently": "^9.1.2",
"electron": "^43.2.0",
"lucide-react": "^0.511.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sharp": "^0.35.3",
"vite": "^6.3.5",
"wait-on": "^8.0.3"
},
"build": {
"appId": "com.mcographics.workdaywithgod.windows",
"productName": "Work Day with God",
"copyright": "Copyright © 2026 Work Day with God",
"directories": {
"output": "release",
"buildResources": "build"
},
"files": [
"dist/**/*",
"electron/**/*",
"build/icon.png",
"build/icon.ico",
"icon.png",
"package.json"
],
"extraResources": [
{
"from": "build/icon.ico",
"to": "icon.ico"
}
],
"asar": true,
"win": {
"target": "nsis",
"icon": "build/icon.ico",
"artifactName": "Work-Day-with-God-Setup-${version}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Work Day with God",
"deleteAppDataOnUninstall": false,
"runAfterFinish": true
},
"publish": [
{
"provider": "github",
"owner": "mcographics",
"repo": "WorkDaywithGod"
}
],
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"icon": "build/icon.png",
"syncDesktopName": true,
"category": "Utility",
"maintainer": "Kenneth Salmon <kenneth.salmon87@outlook.com>",
"vendor": "Work Day with God",
"synopsis": "An ambient desktop devotional companion.",
"description": "A free, offline desktop devotional companion with daily Scripture, reflection, prayer, reminders, reading history, and scenic artwork.",
"artifactName": "Work-Day-with-God-${version}-linux-${arch}.${ext}"
},
"deb": {
"depends": [
"libgtk-3-0",
"libnotify4",
"libnss3",
"libxss1",
"libxtst6",
"xdg-utils",
"libatspi2.0-0",
"libuuid1",
"libsecret-1-0",
"libasound2t64 | libasound2"
],
"recommends": [
"libappindicator3-1"
]
},
"rpm": {
"depends": [
"gtk3",
"libnotify",
"nss",
"libXScrnSaver",
"(libXtst or libXtst6)",
"xdg-utils",
"at-spi2-core",
"(libuuid or libuuid1)",
"alsa-lib"
]
}
},
"dependencies": {
"@capacitor/android": "^8.5.0",
"@capacitor/app": "^8.0.1",
"@capacitor/browser": "^8.0.4",
"@capacitor/core": "^8.5.0",
"@capacitor/filesystem": "^8.1.2",
"@capacitor/geolocation": "^8.2.0",
"@capacitor/ios": "8.5.0",
"@capacitor/local-notifications": "^8.2.1",
"@capacitor/preferences": "^8.0.1",
"@capacitor/share": "^8.0.1",
"@capacitor/status-bar": "^8.0.3",
"electron-updater": "6.8.9"
}
}