mirror of
https://github.com/robonen/questlang.git
synced 2026-03-20 02:44:47 +00:00
feat: add QuestLang VS Code extension with syntax highlighting and installation instructions
This commit is contained in:
46
vscode-extension/package.json
Normal file
46
vscode-extension/package.json
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user