EasyGUI.psd1

@{
    RootModule        = 'EasyGUI.psm1'
    CompanyName       = 'SercretProgrammer'
    GUID              = '073a96f3-19fb-4e78-bc56-f3f371168224'
    ModuleVersion     = '1.2.0'
    Author            = 'SercretProgrammer'
    Description       = 'EasyGUI is a lightweight PowerShell module for quickly creating graphical user interfaces (GUIs). It provides simple, easy-to-use functions for creating windows, buttons, input boxes, dropdowns, radio buttons, tabs, and more. Designed for simplicity and rapid development, EasyGUI lets PowerShell users build GUIs efficiently for scripts, tools, or utilities.'
    HelpInfoUri       = 'https://sercretprogrammer.github.io/EasyGUI/'
    FunctionsToExport = @(
        "PrepareWindow",
        "Window.Text",
        "Window.AddButton",
        "Window.AddInputBox",
        "Window.InputApply",
        "Window.AddOption",
        "Window.AddTabControl",
        "Window.AddTab",
        "Window.AddRadioButtonApply",
        "Window.AddRadioOption",
        "Window.AddDropDown",
        "Window.AddSuperApplyButton",
        "Window.AddApplyOptionButton",
        "Window.Close",
        "Window.ControlLockCheckBox",
        "Window.ControlLockEntireRadioID",
        "IsOptionChecked",
        "Select-Path",
        "ShowWindow",
        "Get-GUIWindow",
        "Set-GUIWindow",
        "Adjust.ControlSizes",
        "Set.WindowSize",
        "Window.Title",
        "Window.AddImage",
        "Window.ProgressBar",
        "Window.GroupBox",
        "Window.GetID",
        "Window.SetID",
        "Window.ContextMenu",
        "Window.MenuItem",
        "Window.NumericUpDown",
        "Window.TreeView"
    )
    CmdletsToExport   = @()
    PrivateData       = @{
        PSData = @{
            Tags        = @('GUI','Forms','PowerShell','Easy','Simple')
            LicenseUri  = 'https://github.com/SercretProgrammer/EasyGUI/blob/main/LICENSE'
            ProjectUri  = 'https://github.com/SercretProgrammer/EasyGUI'
            IconUri     = 'https://raw.githubusercontent.com/SercretProgrammer/EasyGUI/main/Icon.png'
            ReleaseNotes = 'Version 1.2.0: Added TreeView and DateTimePicker controls, improved GUI reliability, and enhanced module functions.'
            MinimumVersion = '5.1'
        }
    }
}