-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPowerShellDevToolkit.psd1
More file actions
104 lines (99 loc) · 2.61 KB
/
Copy pathPowerShellDevToolkit.psd1
File metadata and controls
104 lines (99 loc) · 2.61 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
@{
RootModule = 'PowerShellDevToolkit.psm1'
ModuleVersion = '1.2.0'
GUID = '882e07c2-69ad-46e6-aea6-07adb025f6b3'
Author = 'PowerShell Dev Toolkit Contributors'
CompanyName = 'Community'
Copyright = '(c) 2025 PowerShell Dev Toolkit Contributors. All rights reserved.'
Description = 'A comprehensive collection of PowerShell productivity tools for Windows developers. SSH tunneling, project management, AI integration, dev servers, and more.'
PowerShellVersion = '5.1'
FunctionsToExport = @(
# Original commands
'Connect-SSH'
'Connect-SSHTunnel'
'Copy-ToClipboard'
'Find-InProject'
'Get-GitQuick'
'Get-PortProcess'
'Get-ProjectContext'
'Get-ProjectInfo'
'Get-ServiceStatus'
'Invoke-Artisan'
'Invoke-QuickRequest'
'New-AIRules'
'Set-ProjectEnv'
'Show-Help'
'Show-RecentCommands'
'Start-DevServer'
'Watch-LogFile'
# File & editor commands
'Edit-File'
'Edit-Profile'
'Edit-Hosts'
'Use-NppForGit'
'Set-FileTimestamp'
'Open-Item'
# Directory commands
'Get-DirectoryListing'
'New-DirectoryAndEnter'
'Set-TempLocation'
# Utility commands
'Get-CommandLocation'
'Invoke-Elevated'
'Add-Path'
'Invoke-ProfileReload'
# Network commands
'Get-IPAddress'
'Clear-DNSCache'
# Toolkit management
'Update-Toolkit'
'Test-ToolkitUpdate'
)
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @(
# Original aliases
'cssh'
'tunnel'
'tssh'
'gs'
'serve'
'port'
'search'
'tail'
'context'
'proj'
'art'
'http'
'useenv'
'services'
'clip'
'ai-rules'
'rc'
'helpme'
# File & editor aliases
'e'
'npp'
'touch'
'open'
# Directory aliases
'll'
'mkcd'
'temp'
# Utility aliases
'which'
'sudo'
'reload'
'grep'
# Network aliases
'ip'
'Flush-DNS'
)
PrivateData = @{
PSData = @{
Tags = @('Windows', 'Developer', 'Productivity', 'SSH', 'DevTools')
LicenseUri = 'https://github.com/joshuaevan/powershell-dev-toolkit/blob/main/LICENSE'
ProjectUri = 'https://github.com/joshuaevan/powershell-dev-toolkit'
}
}
}