forked from FelicianoTech/pocket-casts-desktop-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.15 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
{
"name": "pocket-casts",
"version": "0.7.0-dev",
"description": "Pocket Casts is one of the best podcast / podcatchers out there. This is their webapp packaged as a desktop app. The actual webapp itself is the official code from Pocket Casts/NPR. This snap was packaged by Ricardo N Feliciano (FelicianoTech).",
"homepage": "https://github.com/felicianotech/pocket-casts-desktop-app",
"license": "MIT",
"main": "main.js",
"author": {
"name": "Ricardo N Feliciano",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/felicianotech/pocket-casts-desktop-app.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron-forge start",
"dist-flatpak": "rm -rf dist/flatpak && flatpak-builder --repo=dist/flatpak flatpak-build flatpak/tech.feliciano.pocket-casts.yml --force-clean && flatpak build-bundle dist/flatpak dist/pocket-casts.flatpak tech.feliciano.pocket-casts stable",
"package": "electron-forge package",
"make": "electron-forge make"
},
"build": {
"appId": "tech.feliciano.pocket-casts",
"productName": "Pocket Casts",
"files": [
"!flatpak-build",
"!flatpak",
"!.flatpak-builder"
],
"linux": {
"synopsis": "The Pocket Casts webapp, packaged for the desktop.",
"category": "Audio;AudioVideo",
"target": [
{
"target": "deb"
},
{
"target": "snap"
}
],
"icon": "icon.png"
},
"snap": {
"summary": "The Pocket Casts webapp, packaged for the desktop.",
"confinement": "strict",
"grade": "stable"
},
"deb": {
"desktop": {
"Icon": "/usr/share/icons/hicolor/0x0/apps/pocket-casts.png"
}
},
"extraResources": [
{
"from": "tray-icon.png",
"to": "tray-icon.png"
}
]
},
"devDependencies": {
"@electron-forge/cli": "^6.0.1",
"@electron-forge/maker-deb": "^6.0.1",
"@electron-forge/maker-zip": "^6.0.0-beta.63",
"electron": "^21.2.3"
},
"config": {
"forge": {
"packagerConfig": {},
"makers": [
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {}
}
]
}
}
}