forked from AlexKman/discord-netflix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.2 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
{
"name": "Netflix",
"version": "2.0.3",
"description": "A Netflix wrapper with Discord Rich Presence",
"main": "src/index.js",
"scripts": {
"start": "electron .",
"dist:mac": "build -m --publish always",
"dist:linux": "build -l --publish always",
"dist:win": "build -w --publish always"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/nirewen/discord-netflix.git"
},
"keywords": [
"discord",
"rich",
"presence",
"netflix"
],
"author": "Nirewen",
"license": "ISC",
"bugs": {
"url": "https://github.com/nirewen/discord-netflix/issues"
},
"build": {
"appId": "com.netflix.nirewen",
"win": {
"target": "nsis-web",
"icon": "./assets/icon.png"
},
"linux": {
"target": "AppImage",
"icon": "./assets/icon.png"
},
"mac": {
"target": "dmg",
"icon": "./assets/icon.png"
}
},
"homepage": "https://github.com/nirewen/discord-netflix#readme",
"dependencies": {
"discord-rpc": "^3.0.1",
"electron-widevinecdm": "^5.0.2",
"moment": "^2.22.2"
},
"devDependencies": {
"electron": "3.0.9",
"electron-builder": "^19.56.2",
"register-scheme": "0.0.2"
}
}