-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "modsync",
"version": "1.0.0",
"description": "Minecraft Modpack Auto-Updater for private servers",
"main": "src/main/main.js",
"scripts": {
"dev": "electron .",
"build:win": "electron-builder --win --publish never",
"build:mac": "electron-builder --mac --publish never",
"build": "electron-builder --win --mac --publish never"
},
"author": "ModSync Team",
"license": "MIT",
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
},
"dependencies": {
"adm-zip": "^0.5.10"
},
"build": {
"appId": "com.modsync.app",
"productName": "ModSync",
"directories": {
"output": "dist"
},
"win": {
"target": "portable",
"signAndEditExecutable": false
},
"mac": {
"target": "dmg",
"category": "public.app-category.games",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
}
}
}