-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.33 KB
/
package.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
{
"name": "mindtree",
"description": "Declarative Mindmapping",
"version": "1.1.11",
"chromium-args": "--mixed-context",
"main": "app/index.html",
"window": {
"toolbar": false,
"width": 1200,
"height": 800
},
"dependencies": {
"yaml": "^2.1.1"
},
"devDependencies": {
"nwjs-builder-phoenix": "^1.15.0"
},
"build": {
"appId": "com.skitsanos.apps.mindtree",
"nwVersion": "0.37.2",
"ffmpegIntegration": false,
"excludes": [
"package-lock.json",
"test/*"
],
"packed": true,
"targets": [
"zip"
],
"mac": {
"name": "Mindtree",
"displayName": "Mindtree",
"copyright": "Copyright © 2019, Skitsanos Inc.",
"icon": "./assets/tree.icns",
"plistStrings": {
"CFBundleIdentifier": "com.skitsanos.apps.Mindtree",
"CFBundleDocumentTypes": []
}
},
"win": {
"productName": "Mindtree",
"companyName": "Skitsanos Inc.",
"copyright": "Copyright © 2019, Skitsanos Inc.",
"icon": "./assets/tree.ico"
},
"linux": {
"productName": "Mindtree",
"companyName": "Skitsanos Inc.",
"copyright": "Copyright © 2019, Skitsanos Inc.",
"icon": "./assets/tree.ico"
}
},
"scripts": {
"build": "build --tasks mac-x64,win-x64,linux-x64 --mirror https://dl.nwjs.io/ ."
}
}