-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 864 Bytes
/
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
{
"name": "penpot-desktop",
"version": "0.0.3",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder build"
},
"author": "KorbsStudio",
"devDependencies": {
"electron": "^18.0.0",
"electron-builder": "^23.3.3"
},
"build": {
"appId": "com.korbsstudio.penpot",
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage",
"category": "Network",
"synopsis": "Use PenPot, right from your desktop",
"description": "Use PenPot, right from your desktop"
},
"publish": [
{
"provider": "generic",
"url": "https://updates.korbsstudio.com/penpot-desktop/",
"channel": "latest"
}
]
},
"dependencies": {
"electron-log": "^4.4.8",
"electron-updater": "^5.2.1"
}
}