Get-DataHash.psd1

#
# Module manifest for module 'Get-DataHash'
#
# Generated by: davidmidlo
#
# Generated on: 3/17/2025
#

@{

    # Script module or binary module file associated with this manifest.
    RootModule = 'Get-DataHash.psm1'
    
    # Version number of this module.
    ModuleVersion = '0.9.0'
    
    # Supported PSEditions
    CompatiblePSEditions = @('Core', 'Desktop')
    
    # ID used to uniquely identify this module
    GUID = 'f40df9ce-7a64-46fa-bab3-dd870cbfc091'
    
    # Author of this module
    Author = 'David Midlo'
    
    # Company or vendor of this module
    # CompanyName = ''
    
    # Copyright statement for this module
    Copyright = '(c) 2025 David Midlo. Licensed under the MIT License.'
    
    # Description of the functionality provided by this module
    Description = 'A PowerShell module for generating hash digests of complex Powershell/.Net data structures, supporting various hashing algorithms, intuitive structural normalization for hash consistency, and circular reference handling. Ideal for data integrity verification and digest generation of powershell objects.'
    
    # Minimum version of the PowerShell engine required by this module
    PowerShellVersion = '7.0'
    
    # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
    DotNetFrameworkVersion = '4.7.2'
    
    # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
    ClrVersion = '4.0'
    
    # Processor architecture (None, X86, Amd64) required by this module
    ProcessorArchitecture = 'None'
    
    # Modules that must be imported into the global environment prior to importing this module
    RequiredModules = @()
    
    # Assemblies that must be loaded prior to importing this module
    RequiredAssemblies = @('private/types/LiteDB.dll', 'private/types/System.Buffers.dll')
    
    # Script files (.ps1) that are run in the caller's environment prior to importing this module.
    ScriptsToProcess = @()
    
    # Type files (.ps1xml) to be loaded when importing this module
    TypesToProcess = @()
    
    # Format files (.ps1xml) to be loaded when importing this module
    FormatsToProcess = @()
    
    # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
    NestedModules = @('private/types/DataHash.psm1', 'private/Mappers/RegisterMappers.ps1')
    
    # Functions to export from this module
    FunctionsToExport = @('Get-DataHash', 'ConvertTo-Bson', 'Normalize-DataStructure')
    
    # Cmdlets to export from this module
    CmdletsToExport = @()
    
    # Variables to export from this module
    VariablesToExport = '*'
    
    # Aliases to export from this module
    AliasesToExport = @()
    
    # DSC resources to export from this module
    DscResourcesToExport = @()
    
    # List of all modules packaged with this module
    ModuleList = @()
    
    # List of all files packaged with this module
    FileList = @(
        'Get-DataHash.psm1',
        'Get-DataHash.psd1',
        'LICENSE',
        'README.md',
        'private/Import-PrivateModules.ps1',
        'private/types/DataHash.psm1',
        'private/types/LiteDB.dll',
        'private/types/LiteDB.xml',
        'private/types/Mappers/Mapper_PSCustomClass_DataHash.ps1',
        'private/types/Mappers/RegisterMappers.ps1',
        'private/types/System.Buffers.dll',
        'public/Get-DataHash.ps1',
        'test.ps1',
        'tests/ComparisonOperators.Tests.ps1',
        'tests/Constructors.Tests.ps1',
        'tests/_isEnumerable.Tests.ps1',
        'tests/_normalizeDict.Tests.ps1',
        'tests/_normalizeList.Tests.ps1',
        'tests/_normalizedValue.Tests.ps1'
    )
    
    # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
    PrivateData = @{
    
        PSData = @{
    
            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = @('hashing', 'data', 'cryptography', 'security', 'PowerShell')
    
            # A URL to the license for this module.
            LicenseUri = 'https://opensource.org/licenses/MIT'
    
            # A URL to the main website for this project.
            ProjectUri = 'https://github.com/davidmidlo/Get-DataHash'
    
            # A URL to an icon representing this module.
            IconUri = 'https://github.com/davidmidlo/Get-DataHash/icon.png'
    
            # ReleaseNotes of this module
            ReleaseNotes = 'Initial release of Get-DataHash module with support for SHA-256, object normalization, and BSON serialization.'
    
            # Prerelease string of this module
            Prerelease = ''
    
            # Flag to indicate whether the module requires explicit user acceptance for install/update/save
            RequireLicenseAcceptance = $false
    
            # External dependent modules of this module
            ExternalModuleDependencies = @()
    
        } # End of PSData hashtable
    
    } # End of PrivateData hashtable
    
    # HelpInfo URI of this module
    HelpInfoURI = 'https://github.com/davidmidlo/Get-DataHash/'
    
    # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
    DefaultCommandPrefix = 'DataHash'
    
    }