@wayward/types 2.14.0-beta.dev.20241110.1 → 2.14.0-beta.dev.20241112.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/definitions/game/game/meta/prompt/IPrompt.d.ts +32 -31
- package/definitions/game/game/meta/prompt/PromptDescriptions.d.ts +1 -0
- package/definitions/game/language/dictionary/UiTranslation.d.ts +148 -146
- package/definitions/game/steamworks/Steamworks.d.ts +4 -0
- package/definitions/game/ui/screen/screens/menu/menus/options/TabDeveloper.d.ts +2 -0
- package/definitions/hosts/shared/interfaces.d.ts +7 -6
- package/package.json +1 -1
|
@@ -97,37 +97,38 @@ export declare enum Prompt {
|
|
|
97
97
|
MenuMilestoneModifiersImportFailure = 80,
|
|
98
98
|
MenuOptionsReloadGame = 81,
|
|
99
99
|
MenuOptionsChangeReload = 82,
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
100
|
+
MenuOptionsChangeSteamBeta = 83,
|
|
101
|
+
MenuOptionsConfirmUnlockMilestones = 84,
|
|
102
|
+
MenuOptionsConfirmDiscoverActions = 85,
|
|
103
|
+
MenuOptionsConfirmUnlockRecipes = 86,
|
|
104
|
+
MenuOptionsSaveDataClearAll = 87,
|
|
105
|
+
MenuOptionsSaveDataClearCharacters = 88,
|
|
106
|
+
MenuOptionsSaveDataClearHighscores = 89,
|
|
107
|
+
MenuOptionsSaveDataClearMilestones = 90,
|
|
108
|
+
MenuOptionsSaveDataClearOptions = 91,
|
|
109
|
+
MenuOptionsSaveDataClearSaves = 92,
|
|
110
|
+
MenuOptionsSaveDataClearCraftingRecipes = 93,
|
|
111
|
+
MenuOptionsSaveDataClearBindings = 94,
|
|
112
|
+
MenuOptionsConfirmImportGlobalData = 95,
|
|
113
|
+
MenuPauseGhostKeepSave = 96,
|
|
114
|
+
MenuPauseReturnToTitleScreen = 97,
|
|
115
|
+
MenuPauseReturnToTitleScreenChallenge = 98,
|
|
116
|
+
MenuPauseReturnToTitleScreenChallengeMultiplayer = 99,
|
|
117
|
+
MenuPauseReturnToTitleScreenMultiplayer = 100,
|
|
118
|
+
MultiplayerFailedToConnect = 101,
|
|
119
|
+
MultiplayerRestartServerAfterLoadingSave = 102,
|
|
120
|
+
MultiplayerDisconnect = 103,
|
|
121
|
+
MultiplayerDisconnectRejoin = 104,
|
|
122
|
+
MultiplayerServerHasUnpublishedMods = 105,
|
|
123
|
+
SteamworksURLOpenedInBrowser = 106,
|
|
124
|
+
SteamworksWorkshopOpenedInBrowser = 107,
|
|
125
|
+
SteamworksModWithNameAlreadyExists = 108,
|
|
126
|
+
SteamworksModImportSaveGameFailure = 109,
|
|
127
|
+
SteamworksModImportedSaveGame = 110,
|
|
128
|
+
SteamworksOpenFolderFailure = 111,
|
|
129
|
+
SteamworksModPublishModJsonUpdateFailed = 112,
|
|
130
|
+
SteamworksNotAvailableOnSteamDeck = 113,
|
|
131
|
+
UiSaveDrop = 114
|
|
131
132
|
}
|
|
132
133
|
export declare enum PromptType {
|
|
133
134
|
Info = 0,
|
|
@@ -103,6 +103,7 @@ export declare const promptMenuCustomGameOptionsImportFailure: import("@wayward/
|
|
|
103
103
|
export declare const promptMenuMilestoneModifiersConfirmImport: import("@wayward/game/game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
104
104
|
export declare const promptMenuMilestoneModifiersImportFailure: import("@wayward/game/game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
105
105
|
export declare const promptMenuOptionsReloadGame: import("@wayward/game/game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
106
|
+
export declare const promptMenuOptionsChangeSteamBeta: import("@wayward/game/game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
106
107
|
export declare const promptMenuOptionsChangeReload: import("@wayward/game/game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
107
108
|
export declare const promptMenuOptionsConfirmUnlockMilestones: import("@wayward/game/game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
108
109
|
export declare const promptMenuOptionsConfirmDiscoverActions: import("@wayward/game/game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
@@ -802,151 +802,153 @@ declare enum UiTranslation {
|
|
|
802
802
|
MenuOptionsLabelSaveDataRemoval = 787,
|
|
803
803
|
MenuOptionsTooltipDialogOpacity = 788,
|
|
804
804
|
MenuOptionsLabelDialogOpacity = 789,
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
805
|
+
MenuOptionsDeveloperSteamBetas = 790,
|
|
806
|
+
MenuOptionsDeveloperSteamBetaName = 791,
|
|
807
|
+
MenuOptionsDeveloperLogSourceFilterHeading = 792,
|
|
808
|
+
MenuOptionsDeveloperUIExperiments = 793,
|
|
809
|
+
MenuOptionsDeveloperUIExperimentsDescription = 794,
|
|
810
|
+
MenuOptionsAudioVolumeDisplay = 795,
|
|
811
|
+
MenuOptionsAudioInputSoundOnTyping = 796,
|
|
812
|
+
MenuOptionsAudioPlayAudioInBackground = 797,
|
|
813
|
+
MenuOptionsMusicPlaylist = 798,
|
|
814
|
+
MenuOptionsButtonConfigureBindings = 799,
|
|
815
|
+
MenuOptionsButtonSaveCompression = 800,
|
|
816
|
+
MenuOptionsButtonSaveCompressionTooltip = 801,
|
|
817
|
+
MenuOptionsButtonSaveUIDataGlobally = 802,
|
|
818
|
+
MenuOptionsButtonSaveUIDataGloballyTooltip = 803,
|
|
819
|
+
MenuPauseButtonContinueGame = 804,
|
|
820
|
+
MenuPauseButtonReturnToGame = 805,
|
|
821
|
+
MenuPauseButtonOptions = 806,
|
|
822
|
+
MenuPauseButtonGameSettings = 807,
|
|
823
|
+
MenuPauseButtonPaused = 808,
|
|
824
|
+
MenuPauseButtonMultiplayer = 809,
|
|
825
|
+
MenuPauseButtonHelp = 810,
|
|
826
|
+
MenuPauseButtonTitleScreen = 811,
|
|
827
|
+
MenuPauseButtonStopServer = 812,
|
|
828
|
+
MenuPauseButtonQuitWithoutSaving = 813,
|
|
829
|
+
MenuPauseTooltipNotPaused = 814,
|
|
830
|
+
MenuPauseLabelPaused = 815,
|
|
831
|
+
MenuPauseLabelNotPaused = 816,
|
|
832
|
+
MenuModesTitle = 817,
|
|
833
|
+
MenuModesDescription = 818,
|
|
834
|
+
MenuMultiplayerOptionsTitle = 819,
|
|
835
|
+
MenuMultiplayerOptionsDescription = 820,
|
|
836
|
+
MenuMultiplayerOptionsOpenServer = 821,
|
|
837
|
+
MenuMultiplayerOptionsOpenServerDescription = 822,
|
|
838
|
+
MenuMultiplayerOptionsCopyGameCode = 823,
|
|
839
|
+
MenuMultiplayerOptionsCopyGameCodeTooltip = 824,
|
|
840
|
+
MenuMultiplayerOptionsInviteSteamFriends = 825,
|
|
841
|
+
MenuMultiplayerOptionsCheckConnectionHeading = 826,
|
|
842
|
+
MenuMultiplayerOptionsCheckConnectionParagraph = 827,
|
|
843
|
+
MenuMultiplayerOptionsCheckConnectionButton = 828,
|
|
844
|
+
MenuMultiplayerOptionsCheckConnectionResultUnknown = 829,
|
|
845
|
+
MenuMultiplayerOptionsCheckConnectionResultChecking = 830,
|
|
846
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetwork = 831,
|
|
847
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkFail = 832,
|
|
848
|
+
MenuMultiplayerOptionsCheckConnectionResultSteamRelayNetworkUnavailable = 833,
|
|
849
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocket = 834,
|
|
850
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketFail = 835,
|
|
851
|
+
MenuMultiplayerOptionsCheckConnectionResultWebSocketUnavailable = 836,
|
|
852
|
+
MenuMultiplayerOptionsCheckConnectionResultSuccess = 837,
|
|
853
|
+
MenuJoinServerTitle = 838,
|
|
854
|
+
MenuJoinServerDescription = 839,
|
|
855
|
+
MenuJoinServerInputPlaceholder = 840,
|
|
856
|
+
MenuJoinServerChooseModifiersTitle = 841,
|
|
857
|
+
MenuJoinServerChooseModifiersDescription = 842,
|
|
858
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriends = 843,
|
|
859
|
+
MenuSharedMultiplayerChoiceLobbyTypeFriendsDescription = 844,
|
|
860
|
+
MenuSharedMultiplayerChoiceLobbyTypePublic = 845,
|
|
861
|
+
MenuSharedMultiplayerChoiceLobbyTypePublicDescription = 846,
|
|
862
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivate = 847,
|
|
863
|
+
MenuSharedMultiplayerChoiceLobbyTypePrivateDescription = 848,
|
|
864
|
+
MenuSharedMultiplayerChoicePVP = 849,
|
|
865
|
+
MenuSharedMultiplayerChoicePVPDescription = 850,
|
|
866
|
+
MenuSharedMultiplayerChoiceAllowTraveling = 851,
|
|
867
|
+
MenuSharedMultiplayerChoiceAllowTravelingDescription = 852,
|
|
868
|
+
MenuSharedMultiplayerChoiceAllowHardcoreRespawns = 853,
|
|
869
|
+
MenuSharedMultiplayerChoiceAllowHardcoreRespawnsDescription = 854,
|
|
870
|
+
MenuSharedMultiplayerChoicePauseOnDesync = 855,
|
|
871
|
+
MenuSharedMultiplayerChoicePauseOnDesyncDescription = 856,
|
|
872
|
+
MenuSharedMultiplayerDescription = 857,
|
|
873
|
+
MenuSharedMultiplayerMessageOfTheDay = 858,
|
|
874
|
+
MenuSharedMultiplayerMaxPlayers = 859,
|
|
875
|
+
MenuSharedRealTimeTickSpeedTooltip = 860,
|
|
876
|
+
MenuSharedRealTimeTickSpeedLabel = 861,
|
|
877
|
+
MenuSharedButtonDefault = 862,
|
|
878
|
+
MenuSharedValueSeconds = 863,
|
|
879
|
+
MenuSharedValueMilliseconds = 864,
|
|
880
|
+
MenuSharedValueTurns = 865,
|
|
881
|
+
MenuSharedValuePercentage = 866,
|
|
882
|
+
MenuSharedMilestonesNotUnlockable = 867,
|
|
883
|
+
MenuSharedMilestonesNotUnlockableDescription = 868,
|
|
884
|
+
MenuSharedMilestonesNotUnlockableButtonShowMods = 869,
|
|
885
|
+
MenuSharedButtonDisableAll = 870,
|
|
886
|
+
MenuSharedButtonEnableAll = 871,
|
|
887
|
+
MenuSharedMilestoneModifiersSelected = 872,
|
|
888
|
+
MiscSortBy = 873,
|
|
889
|
+
MiscSortCustom = 874,
|
|
890
|
+
MiscSortDirection = 875,
|
|
891
|
+
MiscFilter = 876,
|
|
892
|
+
MiscNone = 877,
|
|
893
|
+
MiscPlayerNameDefault = 878,
|
|
894
|
+
MiscPlayerNameServer = 879,
|
|
895
|
+
MiscSaveNameDefault = 880,
|
|
896
|
+
MiscSaveNameDailyChallenge = 881,
|
|
897
|
+
MiscSaveNameChallenge = 882,
|
|
898
|
+
MiscSaveVersionUnknown = 883,
|
|
899
|
+
MiscVersion = 884,
|
|
900
|
+
MiscVersionBuildInfoTooltip = 885,
|
|
901
|
+
MiscVersionUpdate = 886,
|
|
902
|
+
MiscTime = 887,
|
|
903
|
+
MiscTimeMeridiem = 888,
|
|
904
|
+
MiscError = 889,
|
|
905
|
+
MiscContextMenuCopyTooltip = 890,
|
|
906
|
+
MiscBindableNoBindings = 891,
|
|
907
|
+
MiscBindingIcon = 892,
|
|
908
|
+
MiscBindingIconThen = 893,
|
|
909
|
+
DifficultyOptionsPeaceful = 894,
|
|
910
|
+
DifficultyOptionsAberrantSpawnsDisabled = 895,
|
|
911
|
+
DifficultyOptionsAberrantSpawnsOnly = 896,
|
|
912
|
+
DifficultyOptionsCreatureSpawningDisabled = 897,
|
|
913
|
+
DifficultyOptionsCreatureAlwaysSpawns = 898,
|
|
914
|
+
DifficultyOptionsCreatureSpawnsDefault = 899,
|
|
915
|
+
DifficultyOptionsCreatureSpawnsAberrantOnly = 900,
|
|
916
|
+
DifficultyOptionsCreatureSpawnsNoAberrants = 901,
|
|
917
|
+
DifficultyOptionsSpawnLimit = 902,
|
|
918
|
+
DifficultyOptionsSpawnRateMultiplier = 903,
|
|
919
|
+
DifficultyOptionsDisableScared = 904,
|
|
920
|
+
DifficultyOptionsRespawn = 905,
|
|
921
|
+
DifficultyOptionsEternalNight = 906,
|
|
922
|
+
DifficultyOptionsEternalDay = 907,
|
|
923
|
+
DifficultyOptionsTimeInitial = 908,
|
|
924
|
+
DifficultyOptionsTimeFrozen = 909,
|
|
925
|
+
DifficultyOptionsTimeDayLength = 910,
|
|
926
|
+
DifficultyOptionsTimeDayPercent = 911,
|
|
927
|
+
DifficultyOptionsNoItems = 912,
|
|
928
|
+
DifficultyOptionsRecipes = 913,
|
|
929
|
+
DifficultyOptionsStartingIsland = 914,
|
|
930
|
+
DifficultyOptionsTravelingEffectsDisabled = 915,
|
|
931
|
+
DifficultyOptionsLuck = 916,
|
|
932
|
+
DifficultyOptionsWeightBonus = 917,
|
|
933
|
+
DifficultyOptionsStatInitial = 918,
|
|
934
|
+
DifficultyOptionsStatMax = 919,
|
|
935
|
+
DifficultyOptionsStatMultiplier = 920,
|
|
936
|
+
DifficultyOptionsStatusStartWith = 921,
|
|
937
|
+
DifficultyOptionsStatusUntreatable = 922,
|
|
938
|
+
DifficultyOptionsStatusPassChanceMultiplier = 923,
|
|
939
|
+
DifficultyOptionsNoRandomSkills = 924,
|
|
940
|
+
DifficultyOptionsSkillStartingCount = 925,
|
|
941
|
+
DifficultyOptionsSkillGainMultiplier = 926,
|
|
942
|
+
DifficultyOptionsSkillInitial = 927,
|
|
943
|
+
DifficultyOptionsStatusPermanent = 928,
|
|
944
|
+
DifficultyOptionsStatusRateMultiplier = 929,
|
|
945
|
+
DifficultyOptionsStatusMultiplier = 930,
|
|
946
|
+
DifficultyOptionsItemDurabilityMultiplier = 931,
|
|
947
|
+
DifficultyOptionsItemDecayMultiplier = 932,
|
|
948
|
+
DifficultyOptionsTileContainersEnabled = 933,
|
|
949
|
+
TabCrafting = 934,
|
|
950
|
+
TabDismantle = 935,
|
|
951
|
+
WindowTitleContainer = 936,
|
|
952
|
+
WindowTitleInventory = 937
|
|
951
953
|
}
|
|
952
954
|
export default UiTranslation;
|
|
@@ -17,6 +17,7 @@ import type { ModInformation } from "@wayward/game/mod/ModInformation";
|
|
|
17
17
|
import type { IJoinServerOptions, ServerInfo } from "@wayward/game/multiplayer/IMultiplayer";
|
|
18
18
|
import type { IBuild, IDedicatedServerInfo, IModPath, ISteamworksEvents, SteamStatTypeValues } from "@wayward/game/steamworks/ISteamworks";
|
|
19
19
|
import { SteamStatArea } from "@wayward/game/steamworks/ISteamworks";
|
|
20
|
+
import type { ISteamBeta } from "@wayward/hosts/shared/interfaces";
|
|
20
21
|
import { type IMatchmakingServer, type INapiDiscordPresenceInfo, type IRemoteFile, type ISteamFriend, type ISteamId, type ISteamworksNetworking, type IWaywardPreload, type IWorkshopItem, type LobbyType } from "@wayward/hosts/shared/interfaces";
|
|
21
22
|
import EventEmitter from "@wayward/utilities/event/EventEmitter";
|
|
22
23
|
export default class Steamworks extends EventEmitter.Host<ISteamworksEvents> {
|
|
@@ -119,6 +120,9 @@ export default class Steamworks extends EventEmitter.Host<ISteamworksEvents> {
|
|
|
119
120
|
*/
|
|
120
121
|
incrementStat<T extends SteamStatArea>(area: T, type: SteamStatTypeValues<T>, name: string): void;
|
|
121
122
|
getGlobalStatInt(name: string): number | undefined;
|
|
123
|
+
getCurrentBetaName(): string | undefined;
|
|
124
|
+
getBetas(): ISteamBeta[] | undefined;
|
|
125
|
+
setActiveBeta(betaName: string): boolean;
|
|
122
126
|
isContentTracingRecording(): boolean;
|
|
123
127
|
toggleContentTracingRecording(): Promise<boolean>;
|
|
124
128
|
startPlaytimeTracking(): void;
|
|
@@ -85,12 +85,7 @@ export interface ISteamworks {
|
|
|
85
85
|
getCurrentGameInstallDir(): string;
|
|
86
86
|
getSteamId(): ISteamId;
|
|
87
87
|
getCurrentBetaName(): string;
|
|
88
|
-
getBetas():
|
|
89
|
-
buildId: number;
|
|
90
|
-
name: string;
|
|
91
|
-
description: string;
|
|
92
|
-
flags: number;
|
|
93
|
-
}>;
|
|
88
|
+
getBetas(): ISteamBeta[];
|
|
94
89
|
setActiveBeta(name: string): boolean;
|
|
95
90
|
onGameOverlayActive(cb: (isActive: boolean) => void): void;
|
|
96
91
|
onLobbyCreated(cb: (success: boolean, lobbyId: string, result?: number) => void): void;
|
|
@@ -128,6 +123,12 @@ export interface ISteamworksNetworking {
|
|
|
128
123
|
setSteamNetworkingSendRates(min: number, max: number): void;
|
|
129
124
|
setSteamNetworkingDebugCallback(callback: (type: number, message: string) => void): void;
|
|
130
125
|
}
|
|
126
|
+
export interface ISteamBeta {
|
|
127
|
+
buildId: number;
|
|
128
|
+
name: string;
|
|
129
|
+
description: string;
|
|
130
|
+
flags: number;
|
|
131
|
+
}
|
|
131
132
|
export interface ISteamFriend {
|
|
132
133
|
name?: string;
|
|
133
134
|
steamId: string;
|
package/package.json
CHANGED