-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "smb-file-transfer",
"version": "1.0.0",
"description": "Fast SMB file transfer tool for Pro Tools projects",
"main": "main.js",
"homepage": "./",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build-mac": "electron-builder --mac",
"build-dmg": "electron-builder --mac --universal"
},
"devDependencies": {
"electron": "^27.0.0",
"electron-builder": "^24.6.4"
},
"build": {
"appId": "com.filetransfer.app",
"productName": "SMB File Transfer",
"publish": null,
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.utilities",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220,
"type": "file"
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
}
}
}