forked from oscartbeaumont/ElectronPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1013 Bytes
/
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
{
"name": "electronplayer",
"version": "2.0.3",
"description": "An Electron Based Web Video Services Player. Supporting Netflix, Youtube, Twitch, Floatplane And More",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"test": "echo 'TODO: Tests'",
"build": "electron-builder -p never"
},
"repository": "https://github.com/oscartbeaumont/ElectronPlayer.git",
"author": "Oscar Beaumont <[email protected]> (https://otbeaumont.me)",
"license": "MIT",
"devDependencies": {
"electron": "^3.1.7",
"electron-builder": "^20.39.0"
},
"dependencies": {
"electron-store": "^3.2.0",
"electron-widevinecdm": "^7.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"build": {
"appId": "me.otbeaumont.ElectronPlayer",
"mac": {
"category": "public.app-category.entertainment"
},
"win": {
"target": "msi"
},
"linux": {
"category": "Video",
"target": [
"AppImage",
"snap"
]
}
}
}