56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "centvrion",
|
|
"displayName": "centvrion",
|
|
"description": "Latin-inspired esoteric programming language with Roman numeral literals",
|
|
"version": "0.0.2",
|
|
"engines": {
|
|
"vscode": "^1.68.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"activationEvents": [
|
|
"onLanguage:cent"
|
|
],
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "cent",
|
|
"aliases": ["CENTVRION", "cent"],
|
|
"extensions": [".cent"],
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "cent",
|
|
"scopeName": "source.cent",
|
|
"path": "./syntaxes/cent.tmLanguage.json"
|
|
}],
|
|
"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"
|
|
}
|
|
}
|