-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
{
"name": "short-touch",
"applicationName": "Short Touch",
"version": "1.2.2",
"description": "Application to easily generate short cut buttons on MacBooks with the touch bar.",
"main": "source/app.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --macos",
"postinstall": "electron-builder install-app-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SunstroUS/short-touch.git"
},
"author": "Sunstrous",
"license": "MIT",
"bugs": {
"url": "https://github.com/SunstroUS/short-touch/issues"
},
"homepage": "https://github.com/SunstroUS/short-touch#readme",
"devDependencies": {
"electron": "5.0.0",
"electron-builder": "^21.1.5"
},
"electronVersion": "version",
"build": {
"files": [
"**/*",
"!media${/*}"
],
"appId": "com.sunstrous.short-touch",
"productName": "Short Touch",
"mac": {
"category": "public.app-category.utilities"
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
}
}
}