PSReadLinee.psd1

@{
    RootModule        = 'PSReadLinee.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'fd5e3955-4875-4ae3-ae00-cedd51a37188'
    Author            = 'Skyler Collins'
    CompanyName       = 'Skyler Collins'
    Copyright         = '(c) Skyler Collins. All rights reserved.'
    Description       = 'Efficient extensions'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PSReadLineeStatus', 'Initialize-PSReadLinee')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}