aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/nxls/init.lua
blob: fb955b5e61c8a2db88b0df5efba852bacff9bee3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
local Pkg = require "mason-core.package"
local npm = require "mason-core.managers.npm"

return Pkg.new {
    name = "nxls",
    desc = [[A language server that provides code completion and more for Nx workspaces.]],
    homepage = "https://github.com/nrwl/nx-console/tree/master/apps/nxls",
    languages = {
        Pkg.Lang.JSON,
    },
    categories = { Pkg.Cat.LSP },
    install = npm.packages { "nxls", bin = { "nxls" } },
}