feat: add QuestLang VS Code extension with syntax highlighting and installation instructions

This commit is contained in:
2025-09-01 03:10:30 +07:00
parent 96d6131c2c
commit 65018dfcc6
8 changed files with 510 additions and 88 deletions

View File

@@ -0,0 +1,46 @@
{
"publisher": "questlang",
"name": "questlang-syntax",
"displayName": "QuestLang Syntax Highlighting",
"version": "1.0.0",
"description": "Syntax highlighting for QuestLang - a domain-specific language for interactive quests",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/robonen/questlang.git"
},
"keywords": [
"questlang",
"quest",
"syntax highlighting",
"dsl"
],
"categories": [
"Programming Languages"
],
"engines": {
"vscode": "^1.60.0"
},
"contributes": {
"languages": [
{
"id": "questlang",
"aliases": [
"QuestLang",
"questlang"
],
"extensions": [
".ql"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "questlang",
"scopeName": "source.questlang",
"path": "./syntaxes/questlang.tmLanguage.json"
}
]
}
}