mirror of
https://github.com/SymboScript/symboscript-vs.git
synced 2024-11-05 21:33:58 +03:00
41 lines
879 B
JSON
41 lines
879 B
JSON
{
|
|
"name": "symboscript-vs",
|
|
"displayName": "SymboScript-vs",
|
|
"description": "Official language support for SymboScrypt",
|
|
"version": "0.6.0",
|
|
"publisher": "symboscript",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/symboscript/symboscript-vs"
|
|
},
|
|
"icon": "icon.png",
|
|
"engines": {
|
|
"vscode": "^1.85.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "symboscript",
|
|
"aliases": [
|
|
"SymboScript",
|
|
"symboscript"
|
|
],
|
|
"extensions": [
|
|
".syms"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "symboscript",
|
|
"scopeName": "source.symboscript",
|
|
"path": "./syntaxes/symboscript.tmLanguage.json"
|
|
}
|
|
]
|
|
}
|
|
}
|