-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.07 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.07 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
{
"name": "mixx",
"version": "1.0.0",
"description": "A simple drawing app.",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"build": {
"appId": "com.mixx.app",
"asar": true,
"mac": {
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64", "universal"]
},
{
"target": "zip",
"arch": ["x64", "arm64"]
}
],
"icon": "icons/icon.icns",
"fileAssociations": [
{
"ext": "mixx",
"name": "Mixx File",
"role": "Editor",
"icon": "icons/icon.icns"
}
]
},
"win": {
"target": "nsis",
"icon": "icons/icon_256x256.ico",
"fileAssociations": [
{
"ext": "mixx",
"name": "Mixx File",
"role": "Editor",
"icon": "icons/icon_256x256.ico"
}
]
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^32.0.1",
"electron-builder": "^24.13.3"
}
}