forked from sindresorhus/caprine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.03 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
91
92
93
94
{
"name": "caprine",
"productName": "Caprine",
"version": "2.16.0",
"description": "Elegant Facebook Messenger desktop app",
"license": "MIT",
"repository": "sindresorhus/caprine",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"lint": "xo && stylelint '*.css'",
"test": "npm run lint",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --mac --linux --win",
"release": "np --no-publish"
},
"dependencies": {
"electron-context-menu": "^0.10.0",
"electron-debug": "^2.0.0",
"electron-dl": "^1.0.0",
"electron-is-dev": "^0.3.0",
"electron-localshortcut": "^2.0.0",
"electron-log": "^2.0.2",
"electron-store": "^2.0.0",
"electron-updater": "^3.0.3",
"element-ready": "^3.0.0",
"facebook-locales": "^1.0.464"
},
"devDependencies": {
"electron": "2.0.5",
"electron-builder": "20.26.0",
"np": "^3.0.4",
"stylelint": "^9.4.0",
"stylelint-config-xo": "^0.10.0",
"xo": "*"
},
"xo": {
"envs": [
"node",
"browser"
]
},
"stylelint": {
"extends": "stylelint-config-xo",
"rules": {
"declaration-no-important": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"no-duplicate-selectors": null,
"rule-empty-line-before": null
}
},
"build": {
"files": [
"**/*",
"!media${/*}"
],
"appId": "com.sindresorhus.caprine",
"mac": {
"category": "public.app-category.social-networking",
"electronUpdaterCompatibility": ">=2.15.0"
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb",
"snap"
],
"synopsis": "Elegant Facebook Messenger desktop app",
"description": "Caprine is an unofficial and privacy focused Facebook Messenger app with many useful features.",
"category": "Network;Chat"
}
}
}