Karabiner.psd1

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
@{
    Description          = 'Remap keys on MacOS with Karabiner-Elements.'
    ModuleVersion        = '0.1.6'
    HelpInfoURI          = 'https://pages.github.com/fsackur/Karabiner'

    # Only for MacOS
    CompatiblePSEditions = @('Core')
    PowerShellVersion    = '7.1'

    GUID                 = '36ccc2ae-a266-43b7-8fed-da48ff570483'

    Author               = 'Freddie Sackur'
    CompanyName          = 'DustyFox'
    Copyright            = '(c) 2022 Freddie Sackur. All rights reserved.'

    RootModule           = 'Karabiner.psm1'

    AliasesToExport      = @()
    FunctionsToExport    = @(
        'Get-KarabinerConfig',
        'Get-KarabinerProfile',
        'Get-KarabinerRule',
        'Set-KarabinerConfig',
        'Set-KarabinerProfile',
        'Set-KarabinerRule',
        'Switch-KarabinerProfile'
    )

    FormatsToProcess     = @()

    PrivateData          = @{
        PSData = @{
            LicenseUri = 'https://raw.githubusercontent.com/fsackur/Karabiner/main/LICENSE'
            ProjectUri = 'https://github.com/fsackur/Karabiner'
            Tags       = @(
                'KeyBinding',
                'Keyboard',
                'KeyMap',
                'KeyMapping',
                'Shortcut',
                'HotKey',
                'Karabiner',
                'Karabiner-Elements'
            )
        }
    }
}