this repo has no description
at develop 949 B view raw
1export const extensionsDir = "extensions"; 2export const distDir = "dist"; 3export const coreExtensionsDir = "core-extensions"; 4export const repoUrlFile = ".moonlight-repo-url"; 5export const installedVersionFile = ".moonlight-installed-version"; 6 7export const ipcNodePreloadKickoff = "_moonlight_nodePreloadKickoff"; 8export const ipcGetOldPreloadPath = "_moonlight_getOldPreloadPath"; 9 10export const ipcGetAppData = "_moonlight_getAppData"; 11export const ipcGetInjectorConfig = "_moonlight_getInjectorConfig"; 12export const ipcMessageBox = "_moonlight_messageBox"; 13export const ipcSetCorsList = "_moonlight_setCorsList"; 14export const ipcSetBlockedList = "_moonlight_setBlockedList"; 15 16export const apiLevel = 2; 17 18export const mainRepo = "https://moonlight-mod.github.io/extensions-dist/repo.json"; 19// If you're updating this, update `defaultConfig` in core as well 20export const builtinExtensions = ["moonbase", "disableSentry", "noTrack", "noHideToken"];