OpenGraph.psd1

@{
    RootModule = 'OpenGraph.psm1'
    ModuleVersion = '0.1.2'
    GUID = 'be4e4070-1ea6-4a2e-8b6a-c6b7755e5ace'
    Author = 'James Brundage'
    CompanyName = 'Start-Automating'
    Copyright = '(c) 2025-2026 Start-Automating'
    Description = 'Get OpenGraph with PowerShell'
    FunctionsToExport = 'Get-OpenGraph'
    AliasesToExport = 'OpenGraph', 'ogp', 'Test-OpenGraph', 'Test-OGP'
    TypesToProcess = 'OpenGraph.types.ps1xml'
    PrivateData = @{
        PSData = @{
            Tags = @('OpenGraph','SEO','Web','PoshWeb','OpenGraphProtocol')
            ProjectURI = 'https://github.com/PoshWeb/OpenGraph'
            LicenseURI = 'https://github.com/PoshWeb/OpenGraph/blob/main/LICENSE'
            ReleaseNotes = @'
## OpenGraph 0.1.2

* `Test-OpenGraph` and `Test-OGP` are aliases of `Get-OpenGraph` (#22).
  * Additionally, `Get-OpenGraph` now outputs `$false` when no OpenGraph tags are found.
* `Get-OpenGraph` now accepts any pipeline input and number of arguments (#21)
* `Get-OpenGraph` correctly outputs cached results (#20)
* `Get-OpenGraph` internally encapsulates each scenario into a filter (#25)

---

Please:

* [Like](https://github.com/PoshWeb/OpenGraph)
* [Share](https://github.com/PoshWeb/OpenGraph)
* [Subscribe](https://github.com/PoshWeb/)
* [Support](https://github.com/sponsors/StartAutomating)

Additional history found available in the [CHANGELOG.md](https://github.com/PoshWeb/OpenGraph/blob/main/CHANGELOG.md)
'@
        
        }
    }
}