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

return Pkg.new {
    name = "json-lsp",
    desc = [[Language Server Protocol implementation for JSON.]],
    homepage = "https://github.com/microsoft/vscode-json-languageservice",
    languages = { Pkg.Lang.JSON },
    categories = { Pkg.Cat.LSP },
    install = npm.packages { "vscode-langservers-extracted", bin = { "vscode-json-language-server" } },
}