-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
73 lines (73 loc) · 1.4 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "breadboard",
"version": "0.4.5",
"description": "",
"email": "cocktailpeanuts@proton.me",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder -mwl",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "net.candywrap.breadboard",
"extraResources": [
"./script/**"
],
"dmg": {
"background": "./assets/background.png",
"contents": [
{
"x": 130,
"y": 250
},
{
"x": 410,
"y": 80,
"type": "file",
"path": "./script/patch.command"
},
{
"x": 410,
"y": 250,
"type": "link",
"path": "/Applications"
}
]
},
"mac": {
"category": "utility",
"target": [
{
"target": "default",
"arch": [
"x64",
"arm64"
]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
}
},
"author": "https://twitter.com/cocktailpeanut",
"license": "MIT",
"dependencies": {
"breadmachine": "^0.1.5",
"electron-context-menu": "^3.6.1"
},
"devDependencies": {
"electron": "^22.0.0",
"electron-builder": "^23.6.0"
}
}