UNPKG

440 BJavaScriptView Raw
1'use strict'
2
3const config = {
4 APP_NAME: process.env.npm_package_name,
5 APP_VERSION: process.env.npm_package_version,
6 AUTH_ENDPOINT: 'https://plex.tv/users/sign_in.json',
7 REQUIRED: {
8 headers: [
9 'X-Plex-Client-Identifier',
10 'X-Plex-Product',
11 'X-Plex-Version'
12 ],
13 options: [
14 'headers',
15 'password',
16 'username'
17 ]
18 }
19}
20
21module.exports = exports = config
22module.exports.default = exports