forked from streamlink/streamlink-twitch-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (94 loc) · 3.56 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
95
96
97
98
99
{
"name": "livestreamer-twitch-gui",
"version": "0.7.2",
"license": "MIT",
"author": "Sebastian Meyer",
"homepage": "https://github.com/bastimeyer/livestreamer-twitch-gui",
"repository": {
"type": "git",
"url": "https://github.com/bastimeyer/livestreamer-twitch-gui.git"
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-concurrent": "1.0.0",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-compress": "0.13.0",
"grunt-contrib-connect": "0.9.0",
"grunt-contrib-copy": "0.8.0",
"grunt-contrib-jshint": "0.11.0",
"grunt-contrib-less": "1.0.0",
"grunt-contrib-qunit": "0.5.2",
"grunt-contrib-requirejs": "0.4.4",
"grunt-contrib-uglify": "0.8.0",
"grunt-contrib-watch": "0.6.1",
"grunt-node-webkit-builder": "1.0.2",
"less-plugin-clean-css": "1.5.0",
"load-grunt-config": "0.16.0",
"q": "1.2.0",
"q-io": "1.12.0"
},
"config": {
"display-name": "Livestreamer Twitch GUI",
"nw-js-version": "0.12.0",
"version-check-days": 7,
"tray-icon": "img/icon-{res}.png",
"livestreamer-exec": "livestreamer",
"livestreamer-fallback-path-unix": "/usr/local/bin",
"livestreamer-version-min": "1.11.1",
"livestreamer-validation-timeout": 10000,
"livestreamer-download-url": "https://github.com/chrippa/livestreamer/releases",
"livestreamer-docs-url": "http://docs.livestreamer.io/en/latest/cli.html#cmdoption{cmd}",
"twitch-chat-url": "http://www.twitch.tv/{channel}/chat",
"twitch-subscribe-url": "http://www.twitch.tv/{channel}/subscribe",
"twitch-oauth-base-uri": "https://api.twitch.tv/kraken/oauth2/authorize?response_type=token&client_id={client-id}&redirect_uri={redirect-uri}&scope={scope}",
"twitch-oauth-client-id": "phiay4sq36lfv9zu7cbqwz2ndnesfd8",
"twitch-oauth-redirect-uri": "app://livestreamer-twitch-gui/oauth.html",
"twitch-oauth-scope": [
"user_read",
"user_blocks_read",
"user_blocks_edit",
"user_follows_edit",
"user_subscriptions",
"chat_login"
],
"language_codes": {
"cs": { "flag": "cz", "lang": "czech" },
"da": { "flag": "dk", "lang": "danish" },
"de": { "flag": "de", "lang": "german" },
"el": { "flag": "gr", "lang": "greek" },
"en": { "flag": "en", "lang": "english" },
"en-gb": { "flag": "gb", "lang": "british" },
"en-us": { "flag": "us", "lang": "american" },
"es": { "flag": "es", "lang": "spanish" },
"es-mx": { "flag": "mx", "lang": "mexican" },
"fi": { "flag": "fi", "lang": "finnish" },
"fr": { "flag": "fr", "lang": "french" },
"hu": { "flag": "hu", "lang": "hungarian" },
"it": { "flag": "it", "lang": "italian" },
"ja": { "flag": "jp", "lang": "japanese" },
"ko": { "flag": "kr", "lang": "korean" },
"nl": { "flag": "nl", "lang": "dutch" },
"no": { "flag": "no", "lang": "norwegian" },
"pl": { "flag": "pl", "lang": "polish" },
"pt": { "flag": "pt", "lang": "portuguese" },
"pt-br": { "flag": "br", "lang": "brazilian" },
"ru": { "flag": "ru", "lang": "russian" },
"sk": { "flag": "sk", "lang": "slovak" },
"sv": { "flag": "se", "lang": "swedish" },
"tr": { "flag": "tr", "lang": "turkish" },
"zh": { "flag": "cn", "lang": "chinese" },
"zh-cn": { "flag": "cn", "lang": "chinese" },
"zh-tw": { "flag": "tw", "lang": "chinese" }
},
"notification-cache-dir": "{os-tmpdir}/livestreamer-twitch-gui/icon-cache",
"notification-cache-time": 7,
"notification-retries": 3,
"notification-interval": 60000,
"stream-reload-interval": 60000
},
"scripts": {
"postinstall": "bower --config.interactive=false install",
"build": "grunt release",
"test": "grunt test"
}
}