1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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'
)
}
|