-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "chirp-client",
"productName": "Chirp",
"version": "0.5.0",
"main": "main.js",
"author": {
"name": "Jack Hanford",
"email": "[email protected]",
"url": "https://jackhanford.com"
},
"scripts": {
"start": "electron .",
"build": "electron-builder build"
},
"dependencies": {
"electron-context-menu": "^3.1.1",
"electron-google-analytics": "^1.0.2"
},
"devDependencies": {
"electron": "15.1.2",
"electron-builder": "^22.11.7"
},
"build": {
"appId": "com.jackhanford.chirp",
"win": {
"target": "nsis",
"icon": "build/icons/icon.ico"
},
"mac": {
"target": "dmg",
"icon": "build/icons/icon.icns"
},
"linux": {
"target": "AppImage",
"icon": "build/icons/icon.png",
"category": "Network",
"synopsis": "A desktop twitter application built for all platforms.",
"description": "Use the mobile twitter app from the convenience of a desktop application, works on Mac, Linux and windows."
}
}
}