This repository has been archived by the owner on Jan 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 2.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
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
95
96
97
{
"name": "pocketcaster-app",
"version": "0.0.2",
"description": "PocketCaster App",
"main": "main.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "electron .",
"pack": "electron-builder --dir",
"linux": "electron-builder -l",
"mac": "electron-builder -m",
"win": "electron-builder -w"
},
"build": {
"appId": "PocketCaster",
"appImage": {
"systemIntegration": "ask",
"license": "LICENSE.md"
},
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.entertainment",
"icon": "assets/icons/mac/icon.icns",
"type": "development"
},
"win": {
"target": [
"portable"
],
"icon": "assets/icons/win/icon.ico"
},
"snap": {
"confinement": "strict",
"grade": "devel"
},
"deb": {
"packageCategory": "Audio"
},
"linux": {
"category": "Audio",
"maintainer": "Karl Lensson",
"vendor": "",
"executableName": "pocketcaster",
"synopsis": "An Electron-powered app for PocketCasts",
"description": "Tabs are so last year.",
"icon": "assets/icons/png/256x256.png",
"desktop": {
"Name": "PocketCaster",
"Exec": "pocketcaster",
"Icon": "256x256.png",
"Type": "Application",
"Categories": "Audio"
},
"target": [
"AppImage"
]
}
},
"repository": "https://github.com/jomurgel/PocketCasterApp",
"keywords": [
"Electron",
"pocketcast",
"podcast",
"media"
],
"author": {
"email": "[email protected]",
"name": "jomurgel"
},
"license": "CC0-1.0",
"devDependencies": {
"electron": "^3.0.5",
"electron-builder": "^20.28.4"
},
"dependencies": {},
"build": {
"linux": {
"executableName": "PocketCaster",
"maintainer": "[email protected]",
"icon": "assets/icons/png/256x256.png",
"description": "Unofficial Electron app for PocketCasts",
"category": "Audio",
"target": [
"AppImage",
"deb"
],
"desktop": {
"Name": "PocketCaster",
"Icon": "assets/icons/png/256x256.png",
"Comment": "Unofficial Electron app for PocketCasts",
"Categories": "Audio"
}
}
}
}