cleanarch.psd1

# cleanarch.psd1
@{
    RootModule = 'cleanarch.psm1'
    ModuleVersion = '2.0.4'
    GUID = 'b8e9c4d2-f5a6-4b7e-9d3c-1a2b3c4d5e6f'
    Author = 'Yusuf Yildirim'
    CompanyName = 'Yusuf Yildirim'
    Copyright = '(c) 2026 Yusuf Yildirim. All rights reserved.'
    Description = 'Clean Architecture Template Generator for .NET, React, Next.js, and Mobile (Expo) with TUI support.'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('cleanarch-new', 'cleanarch-version', 'cleanarch-update', 'cleanarch-uninstall')
    CmdletsToExport = @()
    VariablesToExport = @()
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            Tags = @('CleanArchitecture', 'DotNet', 'React', 'NextJS', 'Scaffolding', 'TUI', 'Generator', 'i18n')
            LicenseUri = 'https://opensource.org/licenses/MIT'
        }
    }
}