1
mirror of https://github.com/thepeacockproject/Peacock synced 2024-11-22 22:12:45 +01:00
Peacock/components/generatedPeacockRequireTable.ts

275 lines
11 KiB
TypeScript
Raw Normal View History

/*
* The Peacock Project - a HITMAN server replacement.
* Copyright (C) 2021-2023 The Peacock Project Team
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import * as configSwizzleManager from "./configSwizzleManager"
2023-04-25 06:41:46 +02:00
import * as controller from "./controller"
import * as databaseHandler from "./databaseHandler"
import * as discordRp from "./discordRp"
import * as entitlementStrategies from "./entitlementStrategies"
import * as eventHandler from "./eventHandler"
import * as evergreen from "./evergreen"
import * as flags from "./flags"
import * as hooksImpl from "./hooksImpl"
import * as hotReloadService from "./hotReloadService"
import * as inventory from "./inventory"
import * as loadouts from "./loadouts"
import * as loggingInterop from "./loggingInterop"
import * as menuData from "./menuData"
import * as oauthToken from "./oauthToken"
import * as officialServerAuth from "./officialServerAuth"
import * as ownership from "./ownership"
import * as platformEntitlements from "./platformEntitlements"
import * as playStyles from "./playStyles"
2023-04-25 06:41:46 +02:00
import * as profileHandler from "./profileHandler"
import * as scoreHandler from "./scoreHandler"
import * as sessionSerialization from "./sessionSerialization"
import * as smfSupport from "./smfSupport"
2023-04-25 06:41:46 +02:00
import * as utils from "./utils"
import * as webFeatures from "./webFeatures"
import * as legacyContractHandler from "./2016/legacyContractHandler"
import * as legacyEventRouter from "./2016/legacyEventRouter"
import * as legacyMenuData from "./2016/legacyMenuData"
import * as legacyMenuSystem from "./2016/legacyMenuSystem"
import * as legacyProfileRouter from "./2016/legacyProfileRouter"
import * as challengeHelpers from "./candle/challengeHelpers"
import * as challengeService from "./candle/challengeService"
import * as masteryService from "./candle/masteryService"
import * as progressionService from "./candle/progressionService"
import * as contractRouting from "./contracts/contractRouting"
2023-04-25 06:41:46 +02:00
import * as contractsModeRouting from "./contracts/contractsModeRouting"
import * as dataGen from "./contracts/dataGen"
import * as elusiveTargetArcades from "./contracts/elusiveTargetArcades"
import * as elusiveTargets from "./contracts/elusiveTargets"
import * as hitsCategoryService from "./contracts/hitsCategoryService"
import * as missionsInLocation from "./contracts/missionsInLocation"
import * as reportRouting from "./contracts/reportRouting"
import * as client from "./discord/client"
import * as ipc from "./discord/ipc"
import * as liveSplitClient from "./livesplit/liveSplitClient"
import * as liveSplitManager from "./livesplit/liveSplitManager"
import * as campaigns from "./menus/campaigns"
import * as destinations from "./menus/destinations"
import * as favoriteContracts from "./menus/favoriteContracts"
import * as imageHandler from "./menus/imageHandler"
import * as menuSystem from "./menus/menuSystem"
import * as planning from "./menus/planning"
import * as playnext from "./menus/playnext"
import * as sniper from "./menus/sniper"
import * as multiplayerMenuData from "./multiplayer/multiplayerMenuData"
import * as multiplayerService from "./multiplayer/multiplayerService"
import * as multiplayerUtils from "./multiplayer/multiplayerUtils"
import * as contextListeners from "./statemachines/contextListeners"
import * as contractCreation from "./statemachines/contractCreation"
import * as challenges from "./types/challenges"
import * as events from "./types/events"
import * as gameSchemas from "./types/gameSchemas"
import * as livesplit from "./types/livesplit"
import * as mastery from "./types/mastery"
import * as score from "./types/score"
import * as scoring from "./types/scoring"
import * as types from "./types/types"
import * as escalationService from "./contracts/escalations/escalationService"
export default {
2023-04-25 06:41:46 +02:00
"@peacockproject/core/configSwizzleManager": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...configSwizzleManager,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/controller": { __esModule: true, ...controller },
"@peacockproject/core/databaseHandler": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...databaseHandler,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/discordRp": { __esModule: true, ...discordRp },
"@peacockproject/core/entitlementStrategies": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...entitlementStrategies,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/eventHandler": { __esModule: true, ...eventHandler },
"@peacockproject/core/evergreen": { __esModule: true, ...evergreen },
"@peacockproject/core/flags": { __esModule: true, ...flags },
"@peacockproject/core/hooksImpl": { __esModule: true, ...hooksImpl },
"@peacockproject/core/hotReloadService": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...hotReloadService,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/inventory": { __esModule: true, ...inventory },
"@peacockproject/core/loadouts": { __esModule: true, ...loadouts },
"@peacockproject/core/loggingInterop": {
__esModule: true,
...loggingInterop,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/menuData": { __esModule: true, ...menuData },
"@peacockproject/core/oauthToken": { __esModule: true, ...oauthToken },
"@peacockproject/core/officialServerAuth": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...officialServerAuth,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/ownership": { __esModule: true, ...ownership },
"@peacockproject/core/platformEntitlements": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...platformEntitlements,
},
"@peacockproject/core/playStyles": { __esModule: true, ...playStyles },
2023-04-25 06:41:46 +02:00
"@peacockproject/core/profileHandler": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...profileHandler,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/scoreHandler": { __esModule: true, ...scoreHandler },
"@peacockproject/core/sessionSerialization": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...sessionSerialization,
},
"@peacockproject/core/smfSupport": { __esModule: true, ...smfSupport },
2023-04-25 06:41:46 +02:00
"@peacockproject/core/utils": { __esModule: true, ...utils },
"@peacockproject/core/webFeatures": { __esModule: true, ...webFeatures },
"@peacockproject/core/2016/legacyContractHandler": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...legacyContractHandler,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/2016/legacyEventRouter": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...legacyEventRouter,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/2016/legacyMenuData": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...legacyMenuData,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/2016/legacyMenuSystem": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...legacyMenuSystem,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/2016/legacyProfileRouter": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...legacyProfileRouter,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/candle/challengeHelpers": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...challengeHelpers,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/candle/challengeService": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...challengeService,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/candle/masteryService": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...masteryService,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/candle/progressionService": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...progressionService,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/contracts/contractRouting": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...contractRouting,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/contracts/contractsModeRouting": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...contractsModeRouting,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/contracts/dataGen": { __esModule: true, ...dataGen },
"@peacockproject/core/contracts/elusiveTargetArcades": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...elusiveTargetArcades,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/contracts/elusiveTargets": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...elusiveTargets,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/contracts/hitsCategoryService": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...hitsCategoryService,
},
"@peacockproject/core/contracts/missionsInLocation": {
__esModule: true,
...missionsInLocation,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/contracts/reportRouting": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...reportRouting,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/discord/client": { __esModule: true, ...client },
"@peacockproject/core/discord/ipc": { __esModule: true, ...ipc },
"@peacockproject/core/livesplit/liveSplitClient": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...liveSplitClient,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/livesplit/liveSplitManager": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...liveSplitManager,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/menus/campaigns": { __esModule: true, ...campaigns },
"@peacockproject/core/menus/destinations": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...destinations,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/menus/favoriteContracts": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...favoriteContracts,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/menus/imageHandler": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...imageHandler,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/menus/menuSystem": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...menuSystem,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/menus/planning": { __esModule: true, ...planning },
"@peacockproject/core/menus/playnext": { __esModule: true, ...playnext },
"@peacockproject/core/menus/sniper": { __esModule: true, ...sniper },
"@peacockproject/core/multiplayer/multiplayerMenuData": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...multiplayerMenuData,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/multiplayer/multiplayerService": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...multiplayerService,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/multiplayer/multiplayerUtils": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...multiplayerUtils,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/statemachines/contextListeners": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...contextListeners,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/statemachines/contractCreation": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...contractCreation,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/types/challenges": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...challenges,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/types/events": { __esModule: true, ...events },
"@peacockproject/core/types/gameSchemas": {
__esModule: true,
2023-04-25 06:41:46 +02:00
...gameSchemas,
},
2023-04-25 06:41:46 +02:00
"@peacockproject/core/types/livesplit": { __esModule: true, ...livesplit },
"@peacockproject/core/types/mastery": { __esModule: true, ...mastery },
"@peacockproject/core/types/score": { __esModule: true, ...score },
"@peacockproject/core/types/scoring": { __esModule: true, ...scoring },
"@peacockproject/core/types/types": { __esModule: true, ...types },
"@peacockproject/core/contracts/escalations/escalationService": {
__esModule: true,
...escalationService,
},
}