aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/css-lsp/init.lua
blob: be94b4761dcefe91f5298e57805597bd0a574856 (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 = "css-lsp",
    desc = [[Language Server Protocol implementation for CSS, SCSS & LESS.]],
    homepage = "https://github.com/microsoft/vscode-css-languageservice",
    languages = { Pkg.Lang.CSS, Pkg.Lang.SCSS, Pkg.Lang.LESS },
    categories = { Pkg.Cat.LSP },
    install = npm.packages { "vscode-langservers-extracted", bin = { "vscode-css-language-server" } },
}