mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
30 lines
663 B
JavaScript
30 lines
663 B
JavaScript
const path = require("path");
|
|
|
|
exports.DIST_PATH = path.join(__dirname, "../../../dist/app");
|
|
|
|
exports.executableName = {
|
|
win32: "bridge.exe"
|
|
, darwin: "bridge"
|
|
, linux: "bridge"
|
|
};
|
|
|
|
exports.executablePath = {
|
|
win32: "C:\\Program Files\\fx_cast\\"
|
|
, darwin: "/Library/Application Support/fx_cast/"
|
|
, linux: "/opt/fx_cast/"
|
|
};
|
|
|
|
exports.manifestName = "fx_cast_bridge.json";
|
|
|
|
exports.manifestPath = {
|
|
darwin: "/Library/Application Support/Mozilla/NativeMessagingHosts/"
|
|
, linux: ".mozilla/native-messaging-hosts/"
|
|
, win32: "C:\\Program Files\\fx_cast\\"
|
|
};
|
|
|
|
exports.pkgPlatform = {
|
|
win32: "win"
|
|
, darwin: "macos"
|
|
, linux: "linux"
|
|
};
|