aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers/lua/dummy-registry/dummy.lua
blob: 4b06f4d1cbb3883dc38d1514bd1dc8addd1d9742 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
return {
    name = "dummy",
    description = [[This is a dummy package.]],
    homepage = "https://example.com",
    licenses = { "MIT" },
    languages = { "DummyLang" },
    categories = { "LSP" },
    source = {
        id = "pkg:mason/dummy@1.0.0",
        ---@async
        ---@param ctx InstallContext
        install = function(ctx) end,
    },
}