coc-vala
Version:
Vala and Genie language server extension using vala-language-server for coc.nvim.
57 lines (56 loc) • 1.3 kB
JSON
{
"name": "coc-vala",
"version": "0.1.4",
"description": "Vala and Genie language server extension using vala-language-server for coc.nvim.",
"author": "blacklotus231 <blacklotus231@proton.me>",
"license": "MIT",
"homepage": "https://bitbucket.org/blacklotus231/coc-vala",
"repository": {
"type": "git",
"url": "git+https://bitbucket.org/blacklotus231/coc-vala"
},
"main": "lib/index.js",
"keywords": [
"coc.nvim",
"vala",
"genie",
"coc-vala",
"vala-language-server"
],
"engines": {
"coc": "^0.0.82"
},
"scripts": {
"watch": "node esbuild.mjs --watch",
"build": "node esbuild.mjs",
"prepare": "node esbuild.mjs"
},
"devDependencies": {
"coc.nvim": "^0.0.83-next.18",
"esbuild": "^0.19.8",
"typescript": "^5.3.3"
},
"activationEvents": [
"onLanguage:vala",
"onLanguage:genie"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-vala configuration",
"properties": {
"coc-vala.enabled": {
"type": "boolean",
"default": true,
"description": "Enable coc-vala extension"
}
}
},
"commands": [
{
"command": "coc-vala.Command",
"title": "coc-vala command title"
}
]
}
}