-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPowerTree.psd1
More file actions
31 lines (27 loc) · 1.37 KB
/
PowerTree.psd1
File metadata and controls
31 lines (27 loc) · 1.37 KB
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
@{
# Core module information
RootModule = 'PowerTree.psm1'
ModuleVersion = '2.1.2'
GUID = 'bd5a541e-746e-438d-9b57-28f6d9df01a3'
Author = 'Bart Spaans'
CompanyName = 'Personal'
Copyright = '(c) 2025 Bart Spaans. All rights reserved.'
Description = 'Advanced directory tree visualization tool with powerful filtering and display options. More information: https://github.com/spaansba/PowerTree'
# Requirements
PowerShellVersion = '7.0'
CompatiblePSEditions = @('Desktop', 'Core')
# Exports
FunctionsToExport = @('Show-PowerTree', 'Edit-PowerTreeConfig', "Show-PowerTreeRegistry")
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @('ptree', 'Start-PowerTree', 'PowerTree', 'Edit-PtreeConfig', 'Edit-Ptree', 'Edit-PowerTree', "ptreer", "PowerRegistry")
# PowerShell Gallery metadata
PrivateData = @{
PSData = @{
Tags = @('FileSystem', 'Directory', 'Tree', 'Cross-Platform', 'PowerTree', 'File-Management', 'System-Administration')
LicenseUri = 'https://github.com/spaansba/PowerTree/blob/main/LICENSE'
ProjectUri = 'https://github.com/spaansba/PowerTree'
ReleaseNotes = 'Advanced directory tree visualization with filtering, sorting, and size analysis capabilities.'
}
}
}