-
Notifications
You must be signed in to change notification settings - Fork 9
/
JWTPlugin.uplugin
64 lines (64 loc) · 1.41 KB
/
JWTPlugin.uplugin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"FileVersion": 3,
"Version": 1,
"VersionName": "2023.06.02",
"FriendlyName": "EasyJWT",
"Description": "Simple and easy to use sub-system to creat, verify & extract claims from JSON WEB TOKENS",
"Category": "Other",
"CreatedBy": "Dynamic Servers Systems",
"CreatedByURL": "https://www.youtube.com/channel/UCFqsG_gNXKbujdm2XB90wOQ",
"DocsURL": "https://github.com/sha3sha3/JWTPlugin/blob/master/README.md",
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/5a7b13f17ce04fc3b4a571a8faf58b4a",
"SupportURL": "https://discord.com/invite/kFQ2bVcpPf",
"CanContainContent": true,
"IsBetaVersion": false,
"IsExperimentalVersion": false,
"Installed": true,
"Modules": [
{
"Name": "EasyJwt",
"Type": "Runtime",
"LoadingPhase": "PreLoadingScreen",
"PlatformAllowList": [
"Win64",
"Linux",
"LinuxArm64"
],
"WhitelistPlatforms": [
"Win64",
"Linux",
"LinuxAArch64"
]
},
{
"Name": "JwtVerifier",
"Type": "Runtime",
"LoadingPhase": "PreLoadingScreen",
"PlatformAllowList": [
"Win64",
"Linux",
"LinuxArm64"
],
"WhitelistPlatforms": [
"Win64",
"Linux",
"LinuxAArch64"
]
},
{
"Name": "JwtGenerator",
"Type": "Runtime",
"LoadingPhase": "PreLoadingScreen",
"PlatformAllowList": [
"Win64",
"Linux",
"LinuxArm64"
],
"WhitelistPlatforms": [
"Win64",
"Linux",
"LinuxAArch64"
]
}
]
}