-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
94 lines (94 loc) · 2.19 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": "phreshplayer",
"productName": "PhreshPlayer",
"version": "1.1.3",
"description": "Electron media player application.",
"homepage": "https://phresh-it.hu/apps/phreshplayer/",
"author": "Phresh",
"copyright": "© 2018, Krisztián Kis - Phresh-IT",
"license": "MIT",
"repository": "https://github.com/Phreshhh/PhreshPlayer/",
"keywords": [
"Phresh",
"Electron",
"Media",
"Audio",
"Video",
"Player",
"Converter",
"PhreshPlayer"
],
"main": "main.js",
"dependencies": {
"about-window": "1.11.0",
"desktop-env": "1.0.0",
"electron-context-menu": "0.9.1",
"electron-store": "1.3.0",
"electron-updater": "2.19.1",
"electron-window-state": "4.1.1",
"fs-extra": "7.0.1",
"mousetrap": "1.6.1",
"nedb": "1.8.0",
"srt2vtt": "1.3.1",
"request": "2.88.0",
"unzipper": "0.9.11",
"npminstall": "3.22.1"
},
"devDependencies": {
"electron": "2.0.8",
"electron-builder": "19.54.0"
},
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build"
},
"build": {
"appId": "com.phreshplayer",
"productName": "PhreshPlayer",
"copyright": "© 2018, Phresh-IT",
"asar": true,
"fileAssociations": {
"ext": "pppl",
"name": "PhreshPlayer playlist"
},
"publish": [
{
"provider": "generic",
"url": "http://phresh-it.hu/old/apps/phreshplayer/releases/"
}
],
"linux": {
"icon": "build/icons/",
"maintainer": "Krisztian Kis",
"synopsis": "Media player.",
"category": "AudioVideo",
"packageCategory": "video",
"description": "Electron based media player.",
"target": [
"AppImage"
]
},
"win": {
"icon": "app/img/phreshplayer-icon.ico",
"publisherName": "Krisztian Kis",
"target": [
"nsis"
]
},
"nsis": {
"oneClick": true,
"perMachine": true,
"installerIcon": "app/img/phreshplayer-icon.ico",
"createDesktopShortcut": true
},
"mac": {
"icon": "build/icons/phreshplayer-icon.icns",
"category": "public.app-category.video",
"target": [
"zip",
"dmg"
]
}
}
}