forked from wojtkowiak/meteor-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
86 lines (86 loc) · 2.64 KB
/
settings.json
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
{
"name": "My Meteor App",
"version": "0.0.1",
"projectName": "MyMeteorApp",
"devTools": true,
"devtron": true,
"desktopHCP": true,
"desktopHCPIgnoreCompatibilityVersion": false,
"autoUpdateFeedUrl": "http://127.0.0.1/update/:platform/:version",
"autoUpdateFeedHeaders": {},
"autoUpdateCheckOnStart": true,
"rebuildNativeNodeModules": false,
"webAppStartupTimeout": 60000,
"exposeLocalFilesystem": false,
"window": {
"icon": "@assets/meteor.png",
"_windows": {
"icon": "@assets/meteor.ico"
}
},
"windowDev": {
},
"uglify": true,
"plugins": {
"meteor-desktop-splash-screen": {
"version": "0.3.0",
"windowSettings": {
"width": 800,
"height": 600
}
},
"meteor-desktop-localstorage": "0.0.11"
},
"dependencies": {},
"packageJsonFields": {
"description": "My Meteor App",
"author": "Me, Myself And I",
"private": true
},
"builderOptions": {
"win": {
"title": "My Meteor App",
"authors": "Me, Myself And I",
"target": "squirrel"
},
"squirrelWindows": {
"iconUrl": "https://github.com/wojtkowiak/meteor-desktop/blob/beta/scaffold/assets/meteor.ico?raw=true",
"loadingGif": ".desktop/assets/loading.gif"
},
"icon": ".desktop/assets/meteor.ico",
"appId": "meteor.app",
"productName": "My Meteor App",
"compression": "maximum",
"mac": {
"icon": ".desktop/assets/meteor.icns"
},
"dmg": {
"icon": ".desktop/assets/meteor.icns",
"background": ".desktop/assets/dmgBackground.png",
"iconSize": 54,
"contents": [
{ "x": 377, "y": 190, "type": "link", "path": "/Applications" },
{ "x": 63, "y": 190, "type": "file" }
],
"window": {
"width": 480,
"height": 300
}
} },
"packagerOptions": {
"icon": ".desktop/assets/meteor.ico",
"_osx": {
"icon": ".desktop/assets/meteor.icns"
},
"version-string": {
"CompanyName": "My Company",
"LegalCopyright": "Copyright 2016 My Company - All rights reserved.",
"FileDescription": "MyMeteorApp",
"OriginalFilename": "MyMeteorApp.exe",
"FileVersion": "@version",
"ProductVersion": "@version",
"ProductName": "MyMeteorApp",
"InternalName": "MyMeteorApp.exe"
}
}
}