Terminal.Gui.PowerShell.Git.psd1 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. #
  2. # Module manifest for module 'Terminal.Gui.PowerShell.Git'
  3. #
  4. # Generated by: Brandon Thetford
  5. #
  6. # Generated on: 4/26/2024
  7. #
  8. @{
  9. # Script module or binary module file associated with this manifest.
  10. RootModule = ''
  11. # Version number of this module.
  12. ModuleVersion = '1.0.0'
  13. # Supported PSEditions
  14. CompatiblePSEditions = 'Core'
  15. # ID used to uniquely identify this module
  16. GUID = '33a6c4c9-c0a7-4c09-b171-1da0878f93ea'
  17. # Author of this module
  18. Author = 'Brandon Thetford (GitHub @dodexahedron)'
  19. # Company or vendor of this module
  20. CompanyName = 'The Terminal.Gui Project'
  21. # Copyright statement for this module
  22. Copyright = 'Brandon Thetford (GitHub @dodexahedron), provided to the Terminal.Gui project and you under the MIT license'
  23. # Description of the functionality provided by this module
  24. Description = 'Simple helper commands for common git operations.'
  25. # Minimum version of the PowerShell engine required by this module
  26. PowerShellVersion = '7.4'
  27. # Name of the PowerShell host required by this module
  28. PowerShellHostName = 'ConsoleHost'
  29. # Minimum version of the PowerShell host required by this module
  30. PowerShellHostVersion = '7.4.0'
  31. # Processor architecture (None, MSIL, X86, IA64, Amd64, Arm, or an empty string) required by this module. One value only.
  32. # Set to AMD64 here because development on Terminal.Gui isn't really supported on anything else.
  33. # Has nothing to do with runtime use of Terminal.Gui.
  34. ProcessorArchitecture = ''
  35. # Modules that must be imported into the global environment prior to importing this module
  36. RequiredModules = @(
  37. @{
  38. ModuleName='Microsoft.PowerShell.Utility'
  39. ModuleVersion='7.0.0'
  40. },
  41. @{
  42. ModuleName='Microsoft.PowerShell.Management'
  43. ModuleVersion='7.0.0'
  44. },
  45. @{
  46. ModuleName='PSReadLine'
  47. ModuleVersion='2.3.4'
  48. }
  49. )
  50. # Script files (.ps1) that are run in the caller's environment prior to importing this module.
  51. ScriptsToProcess = @()
  52. # Type files (.ps1xml) to be loaded when importing this module
  53. TypesToProcess = @()
  54. # Format files (.ps1xml) to be loaded when importing this module
  55. FormatsToProcess = @()
  56. # Modules to import as nested modules.
  57. NestedModules = @("./Terminal.Gui.PowerShell.Git.psm1")
  58. # Functions to export from this module.
  59. FunctionsToExport = @('New-GitBranch')
  60. # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
  61. CmdletsToExport = @()
  62. # Variables to export from this module
  63. VariablesToExport = @()
  64. # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
  65. AliasesToExport = @()
  66. # DSC resources to export from this module
  67. DscResourcesToExport = @()
  68. # List of all modules packaged with this module
  69. ModuleList = @('./Terminal.Gui.PowerShell.Git.psm1')
  70. # 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.
  71. PrivateData = @{
  72. PSData = @{
  73. # Tags applied to this module. These help with module discovery in online galleries.
  74. # Tags = @()
  75. # A URL to the license for this module.
  76. # LicenseUri = ''
  77. # A URL to the main website for this project.
  78. # ProjectUri = ''
  79. # A URL to an icon representing this module.
  80. # IconUri = ''
  81. # ReleaseNotes of this module
  82. # ReleaseNotes = ''
  83. # Prerelease string of this module
  84. # Prerelease = ''
  85. # Flag to indicate whether the module requires explicit user acceptance for install/update/save
  86. # RequireLicenseAcceptance = $false
  87. # External dependent modules of this module
  88. # ExternalModuleDependencies = @()
  89. } # End of PSData hashtable
  90. } # End of PrivateData hashtable
  91. # HelpInfo URI of this module
  92. # HelpInfoURI = ''
  93. # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
  94. # DefaultCommandPrefix = ''
  95. }