MyBudgetPowerShellModule.psd1
|
@{ # Script module or binary module file associated with this manifest. RootModule = 'MyBudgetPowerShellModule.psm1' # Version number of this module. ModuleVersion = '0.4.0' # ID used to uniquely identify this module GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890' # Author of this module Author = 'Your Name' # Company or vendor of this module CompanyName = 'Personal' # Copyright statement for this module Copyright = '(c) 2025. All rights reserved.' # Description of the functionality provided by this module Description = 'PowerShell module for personal budget management. Track billers, earnings, accounts, and transactions with projected transaction reporting. Supports multiple budgets and workspace management.' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' # Functions to export from this module FunctionsToExport = @( 'Initialize-BudgetWorkspace', 'New-Budget', 'Get-Budget', 'Get-ActiveBudget', 'Set-ActiveBudget', 'Remove-Budget', 'New-Biller', 'Get-Biller', 'Set-Biller', 'Remove-Biller', 'New-Earning', 'Get-Earning', 'Set-Earning', 'Remove-Earning', 'New-Account', 'Get-Account', 'Set-Account', 'Remove-Account', 'Get-ProjectedTransactions', 'Export-ProjectedTransactions' ) # Cmdlets to export from this module CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # 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 for online galleries Tags = @('Budget', 'Finance', 'Personal', 'Money', 'Management') # A URL to the license for this module LicenseUri = '' # A URL to the main website for this project ProjectUri = '' # ReleaseNotes of this module ReleaseNotes = 'Initial release with basic budget entity management.' } } } |