Files
dsProject/dsLightRag/Algodoo/thyme-syntax-highlight/package.json
2025-08-14 15:45:08 +08:00

29 lines
676 B
JSON

{
"name": "thyme-syntax-highlight",
"displayName": "Thyme Syntax Highlight",
"description": "Syntax highlighting for Algodoo Thyme script language",
"version": "0.0.1",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "thyme",
"aliases": ["Thyme", "thyme"],
"extensions": [".thyme"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "thyme",
"scopeName": "source.thyme",
"path": "./syntaxes/thyme.tmLanguage.json"
}
]
}
}