Jwt.psd1
|
@{ RootModule = 'Jwt.psm1' ModuleVersion = '1.9.5' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = '245e25e7-6d78-4fff-b973-0726b845f4e9' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2026 PSModule. All rights reserved.' Description = 'A PowerShell module to work with Json Web Tokens (JWTs)' PowerShellVersion = '5.1' ProcessorArchitecture = 'None' TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = @( 'ConvertFrom-Base64UrlString' 'ConvertTo-Base64UrlString' 'Get-JwtHeader' 'Get-JwtPayload' 'New-Jwt' 'Test-Jwt' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @( 'Verify-JwtSignature' ) ModuleList = @() FileList = @( 'Jwt.psm1' ) PrivateData = @{ PSData = @{ Tags = @( 'Authentication' 'JSON' 'JWT' 'Linux' 'MacOS' 'PSEdition_Core' 'PSEdition_Desktop' 'PSModule' 'Security' 'Token' 'Windows' ) LicenseUri = 'https://github.com/PSModule/Jwt/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/Jwt' IconUri = 'https://raw.githubusercontent.com/PSModule/Jwt/main/icon/icon.png' } } } |