🐐 LSP
This commit is contained in:
@@ -2,13 +2,17 @@
|
||||
"name": "centvrion",
|
||||
"displayName": "centvrion",
|
||||
"description": "Latin-inspired esoteric programming language with Roman numeral literals",
|
||||
"version": "0.0.1",
|
||||
"version": "0.0.2",
|
||||
"engines": {
|
||||
"vscode": "^1.68.0"
|
||||
},
|
||||
"categories": [
|
||||
"Programming Languages"
|
||||
],
|
||||
"main": "./out/extension.js",
|
||||
"activationEvents": [
|
||||
"onLanguage:cent"
|
||||
],
|
||||
"contributes": {
|
||||
"languages": [{
|
||||
"id": "cent",
|
||||
@@ -24,6 +28,28 @@
|
||||
"snippets": [{
|
||||
"language": "cent",
|
||||
"path": "./snippets/cent.json"
|
||||
}]
|
||||
}],
|
||||
"configuration": {
|
||||
"title": "CENTVRION",
|
||||
"properties": {
|
||||
"centvrion.languageServer.path": {
|
||||
"type": "string",
|
||||
"default": "centvrion-lsp",
|
||||
"description": "Path to the centvrion-lsp executable (or just the name if on PATH)."
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"compile": "tsc -p ./",
|
||||
"watch": "tsc -watch -p ./"
|
||||
},
|
||||
"dependencies": {
|
||||
"vscode-languageclient": "^9.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.0.0",
|
||||
"@types/vscode": "^1.68.0",
|
||||
"typescript": "^5.4.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user