-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "webpeek",
"version": "0.0.1",
"description": "This is an Electron-based RSS client client that tries to imitate user experience of newsboat but with decent GUI",
"repository": "ssh://git@git.home:33222/tony/webpeek.git",
"homepage": "https://git.home/tony/webpeek",
"main": "./index.js",
"maintainers": [
{
"name": "Tony Miller",
"email": "maintainer@tmlr.xyz"
}
],
"scripts": {
"start": "electron .",
"test": "standard --verbose | snazzy",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"author": {
"name": "Tony Miller",
"email": "maintainer@tmlr.xyz"
},
"license": "ISC",
"dependencies": {
"dbus": "^1.0.7",
"yargs": "^16.2.0"
},
"devDependencies": {
"electron": "^11.2.0",
"electron-builder": "^22.9.1",
"electron-packager": "^15.2.0",
"snazzy": "^9.0.0",
"standard": "^16.0.3"
},
"standard": {
"globals": [],
"ignore": [
"dist/**/*"
]
},
"build": {
"appId": "xyz.tmlr.webpeek",
"productName": "webpeek",
"linux": {
"target": [
"deb",
"zip"
]
}
}
}