2018-11-25 21:19:02 +00:00
|
|
|
{
|
|
|
|
"name": "upsilon-language-extension",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.29.1"
|
|
|
|
},
|
|
|
|
"activationEvents": [
|
|
|
|
"onLanguage:upsilon"
|
|
|
|
],
|
|
|
|
"main": "./out/extension",
|
|
|
|
"contributes": {
|
|
|
|
"languages": [
|
|
|
|
{
|
|
|
|
"id": "upsilon",
|
|
|
|
"aliases": [
|
|
|
|
"Upsilon"
|
|
|
|
],
|
|
|
|
"extensions": [
|
|
|
|
".yup",
|
|
|
|
".lua"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2018-11-26 11:50:46 +00:00
|
|
|
"grammars": [
|
|
|
|
{
|
|
|
|
"language": "upsilon",
|
|
|
|
"scopeName": "source.upsilon",
|
|
|
|
"path": "./syntaxes/upsilon.tmLanguage.json"
|
|
|
|
}
|
|
|
|
],
|
2018-11-25 21:19:02 +00:00
|
|
|
"configuration": {
|
|
|
|
"type": "object",
|
|
|
|
"title": "Example configuration",
|
|
|
|
"properties": {
|
|
|
|
"upsilonLanguageServer.maxNumberOfProblems": {
|
|
|
|
"type": "number",
|
|
|
|
"default": 100,
|
|
|
|
"description": "Controls the maximum number of problems produced by the server."
|
|
|
|
},
|
|
|
|
"upsilonLanguageServer.trace.server": {
|
|
|
|
"scope": "window",
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
"off",
|
|
|
|
"messages",
|
|
|
|
"verbose"
|
|
|
|
],
|
|
|
|
"default": "off",
|
|
|
|
"description": "Traces the communication between VSCode and the upsilonLanguageServer service."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"vscode:prepublish": "vscode-install && npm run compile",
|
|
|
|
"compile": "tsc -b",
|
|
|
|
"watch": "tsc -b -w",
|
|
|
|
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
|
|
|
|
"test": "sh ./scripts/e2e.sh"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"vscode-languageclient": "^4.1.4",
|
|
|
|
"vscode": "^1.1.21"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/node": "^10.12.10",
|
|
|
|
"vscode": "^1.1.21",
|
|
|
|
"tslint": "^5.11.0",
|
|
|
|
"typescript": "^3.1.3"
|
|
|
|
}
|
|
|
|
}
|