-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
52 lines (52 loc) · 1.64 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
{
"name": "pocket-casts",
"version": "0.10.0",
"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",
"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"
},
"build": {
"appId": "tech.feliciano.pocket-casts",
"productName": "Pocket Casts",
"files": [
"!flatpak-build",
"!flatpak",
"!.flatpak-builder"
],
"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": "^7.6.1",
"@electron-forge/maker-deb": "^7.6.1",
"@electron-forge/maker-rpm": "^7.6.1",
"@electron-forge/maker-zip": "^7.6.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.6.1",
"@electron-forge/publisher-github": "^7.6.1",
"electron": "^34.0.1"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0"
}
}