vue2-grammar/package.json

26 lines
662 B
JSON
Raw Normal View History

2019-11-26 14:02:14 +01:00
{
2019-11-28 06:37:37 +01:00
"name": "swmf-grammar",
"displayName": "swmf-grammar",
"description": "SWMF Configuration grammar for VS Code",
2019-11-26 14:02:14 +01:00
"version": "0.0.1",
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "swmf",
"aliases": ["SWMF Config", "swmf"],
"extensions": [".in",".IN"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "swmf",
"scopeName": "source.swmf",
"path": "./syntaxes/swmf.tmLanguage.json"
}]
}
2019-11-28 06:37:37 +01:00
}