CsdyPasswordGenerator.psd1

# AuraPasswordGenerator.psd1
@{
    # Module Information
    ModuleToProcess     = 'CsdyPasswordGenerator.psm1'
    ModuleVersion       = '1.1.0'
    GUID                = 'd3584c41-95aa-45a9-81ce-efc97426bd05'
    Author              = 'Jason Cassidy'
    CompanyName         = 'Csdy'
    Description         = 'Generate a password with a shareable URL based on the below parameter types;
     
    Standard [get-password]
    - Exactly 12 characters
    - Uppercase & Lowercase characters
    - 2 numerical characters
    - Uppercase & Lowercase
    - 1 Symbol excluding .
    - No adjacent duplicate characters
 
    Complex [get-password complex]
    - Exactly 16 Characters
    - Random Uppercase & Lowercase characters
    - Random Numerical characters
    - 4 Symbols
    - No adjacent duplicate characters'

    CmdletsToExport     = 'get-password'
    PowerShellVersion   = '2.0'
    Copyright           = '(c) 2025 Csdy. All rights reserved.'
    
    # Private Data
    PrivateData = @{
        PSData = @{
            Tags = @('password', 'pwpush.com', 'passwordgenerator', 'password.ninja')
            ReleaseNotes = '[1.1.0]
1. Revised console output phrasing.
2. Extended password expiry URL from 3 to 7 days.
 
[1.0.0]
1. Release'

        }
    }
}