summaryrefslogtreecommitdiff
path: root/HyperBooru.psd1
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-18 16:59:16 +1000
committerJake Mannens <jake@asger.xyz>2026-05-18 16:59:16 +1000
commitab46387d4d02e30b171a7c2fa07947b41ec691a0 (patch)
tree0e3311e320de78476917e073d4f2ef954624a24a /HyperBooru.psd1
parent7b17bd8ef7ee8b3391fea3bf7a9e1866be92e81b (diff)
Diffstat (limited to 'HyperBooru.psd1')
-rw-r--r--HyperBooru.psd163
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'
+ )
+}