This commit is contained in:
2026-05-30 19:07:01 +02:00
parent 1d6a93be32
commit 4da250ec85
13 changed files with 724 additions and 3 deletions
+29 -3
View File
@@ -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"
}
}
}