SPIRV-Tools/utils/vscode/package.json
Ben Clayton cdd6829a3e utils/vscode: Add SPIR-V language server support
Supports:
* Syntax highlighting.
* Red squiggles for parse errors.
* Basic sanity checking of operand types.
* Jump to definition of id.
* Find all uses of id.
* Rename id.
* Hover definition of id.
* Format file.
2019-11-13 13:48:11 -05:00

40 lines
895 B
JSON

{
"name": "spirvls",
"description": "Language support for SPIR-V disassembly files",
"author": "Google",
"license": "Apache-2.0",
"version": "0.0.1",
"private": true,
"publisher": "Google",
"engines": {
"vscode": "^0.10.10"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "spirv",
"extensions": [
"spvasm"
]
}
],
"grammars": [
{
"language": "spirv",
"scopeName": "source.spirv",
"path": "spirv.json"
}
]
},
"dependencies": {
"vscode-languageclient": "~4.3.0"
},
"activationEvents": [
"*"
],
"main": "./extension.js"
}