Bookmarks.psd1

@{
    # Version number of this module.
    ModuleVersion = '3.0.1'

    # ID used to uniquely identify this module
    GUID = '4e3c5eaa-2799-4e0f-b5fc-dbc5ffce1bf1'

    # Author of this module
    Author = 'Dmitry Stadub'

    # Company or vendor of this module
    CompanyName = ''

    # Copyright statement for this module
    Copyright = '(c) Dmitry Stadub. All rights reserved.'

    # Description of the functionality provided by this module
    Description = 'Create/Restore directory bookmark. Full documentation at the Github: https://github.com/stadub/PowershellScripts/tree/master/Bookmarks'

    # HelpInfo URI of this module
    HelpInfoURI = 'https://github.com/stadub/PowershellScripts/blob/master/Bookmarks/README.md'

    # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
    # DefaultCommandPrefix = ''

    # Functions to export from this module
    FunctionsToExport = @(
        'Add-PSBookmark',
        'Remove-PSBookmark',
        'Remove-AllPSBookmarks',
        'Open-PSBookmark',
        'Get-PSBookmarks',
        'Update-PSBookmark'
    )

    # Aliases to export from this module
    AliasesToExport = @('*')

    # Private data to pass to the module specified in RootModule/ModuleToProcess
    PrivateData = @{
        PSData = @{
            # Tags applied to this module
            Tags = @('bookmarks', 'bookmark', 'pushd', 'list-directory', 'navigation', 'workspaces', 'cd', 'directorymarks', 'directory', 'folder')

            # A URL to the license for this module
            LicenseUri = 'http://opensource.org/licenses/MIT'

            # A URL to the main website for this project
            ProjectUri = 'https://github.com/stadub/PowershellScripts/tree/master/Bookmarks'

            # A URL to an icon representing this module
            IconUri = 'https://raw.githubusercontent.com/stadub/Powerscripts/master/Bookmarks/Assets/Icon.ico'

            # ReleaseNotes of this module
            ReleaseNotes = '*Mkae multyplatform *Remove Update checker * Restrucutre Module'
        } # End of PSData hashtable
    } # End of PrivateData hashtable
}