-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 1.88 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "keepdesktop",
"productName": "Keep Desktop",
"version": "0.3.1",
"description": "Google Keep Desktop App",
"electronVersion": "0.36.0",
"main": "app/index.js",
"files": [
"build",
"app"
],
"scripts": {
"start": "electron .",
"lint": "standard",
"pack": "electron-builder --dir",
"dist": "npm run dist:mac && npm run dist:linux && npm run dist:win",
"dist:mac": "electron-builder --mac",
"dist:linux": "electron-builder --linux",
"dist:win": "electron-builder --win",
"postinstall": "electron-builder install-app-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukassr/keep-desktop"
},
"keywords": [
"electron-app",
"electron",
"google",
"keep"
],
"author": "Lukas Svicarovic <[email protected]> (https://github.com/lukassr)",
"bugs": {
"url": "https://github.com/lukassr/keep-desktop/issues"
},
"homepage": "https://github.com/lukassr/keep-desktop",
"dependencies": {
"array-unique": "^0.3.2",
"electron-config": "^1.0.0",
"electron-debug": "^1.0.1"
},
"devDependencies": {
"electron": "^3.0.7",
"electron-builder": "^22.2.0",
"standard": "^10.0.3"
},
"build": {
"appId": "com.lukassr.keep-desktop",
"directories": {
"output": "build"
},
"files": [
"**/*"
],
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"category": "Utility",
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": [
"nsis"
]
}
}
}