DJScratchLooper.psd1

@{
    # Module manifest for DJScratchLooper
    RootModule = 'DJScratchLooper.psm1'
    ModuleVersion = '1.0.0.2'
    GUID = 'c42541db-7135-4baa-b1a7-59d5916fc081'
    Author = 'Adam Bacon'
    CompanyName = 'Home'
    Copyright = '(c) 2026 Adam Bacon'
    Description = 'PowerShell module for launching a WPF DJ Scratch Looper interface.'
    PowerShellVersion = '7.0'
    ProcessorArchitecture = 'MSIL'
    CompatiblePSEditions = @('Desktop')
    FileList = @(
        'DJScratchLooper.psm1',
        'Invoke-DJScratchLooper.ps1',
        'lib\',
        'resources\'
    )
    FunctionsToExport = @('Invoke-DJScratchLooper')
    CmdletsToExport = @()
    VariablesToExport = @()
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            Tags = @('WPF','Audio','Looper','DJ','PitchShift')
            LicenseUri = 'https://powershellmagic.netlify.app/'
            ProjectUri = 'https://www.youtube.com/shorts/bAkoUGaa8W0'
            ReleaseNotes = 'Initial module release.'
        }
    }
}