diff options
Diffstat (limited to 'HyperBooru.psd1')
| -rw-r--r-- | HyperBooru.psd1 | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/HyperBooru.psd1 b/HyperBooru.psd1 new file mode 100644 index 0000000..63ac453 --- /dev/null +++ b/HyperBooru.psd1 @@ -0,0 +1,63 @@ +@{ + RootModule = 'HyperBooru.PowerShell.dll' + ModuleVersion = '0.17' + CompatiblePSEditions = 'Core' + PowershellVersion = '5.1' + GUID = '627c3cbf-7fcc-41b3-9716-610b81ef1032' + Author = 'Jake Mannens' + CompanyName = 'Asger' + Copyright = 'The GNU General Public License v3.0' + Description = 'Cmdlets for managing a remote HyperBooru instance' + ProcessorArchitecture = 'MSIL' + FunctionsToExport = '*' + VariablesToExport = '*' + PrivateData = @{ + PSData = @{ + LicenseUri = 'https://www.gnu.org/licenses/gpl-3.0.en.html' + ProjectUri = 'https://git.asger.xyz/hyperbooru-powershell' + RequireLicenseAcceptance = $true + } + } + AliasesToExport = @( + 'ahbit', + 'ahbmt', + 'cchbs', + 'ghbm', + 'ghbmt', + 'ghbtd', + 'ghbu', + 'ghbuf', + 'nhbtd', + 'nhbu', + 'pbhbm', + 'rhbit', + 'rhbmt', + 'rhbtd', + 'rhbu', + 'shbit', + 'shbmt', + 'shbtd', + 'shbu' + ) + CmdletsToExport = @( + 'Add-HyperBooruImplicitTag', + 'Add-HyperBooruMediaTag', + 'Connect-HyperBooruSession', + 'Get-HyperBooruMedia', + 'Get-HyperBooruMediaTag', + 'Get-HyperBooruTagDefinition', + 'Get-HyperBooruUploadedFile', + 'Get-HyperBooruUser', + 'New-HyperBooruTagDefinition', + 'New-HyperBooruUser', + 'Publish-HyperBooruMedia', + 'Remove-HyperBooruImplicitTag', + 'Remove-HyperBooruMediaTag', + 'Remove-HyperBooruTagDefinition', + 'Remove-HyperBooruUser', + 'Set-HyperBooruImplicitTag', + 'Set-HyperBooruMediaTag', + 'Set-HyperBooruTagDefinition', + 'Set-HyperBooruUser' + ) +} |
