74 lines
1.6 KiB
JSON
74 lines
1.6 KiB
JSON
{
|
|
"name": "angelscript-languageserver",
|
|
"description": "Language server for Angelscript, provides grammars and basic compile checks.",
|
|
"author": "Deukhoofd",
|
|
"publisher": "Deukhoofd",
|
|
"license": "MIT",
|
|
"version": "1.0.1",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.p-epsilon.com/Deukhoofd/AngelscriptLanguageServer"
|
|
},
|
|
"categories": [],
|
|
"keywords": [
|
|
"Angelscript"
|
|
],
|
|
"engines": {
|
|
"vscode": "^1.43.0"
|
|
},
|
|
"activationEvents": [
|
|
"onLanguage:Angelscript"
|
|
],
|
|
"main": "./client/out/extension",
|
|
"contributes": {
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "Angelscript",
|
|
"properties": {
|
|
"angelscript-languageserver.trace.server": {
|
|
"scope": "window",
|
|
"type": "string",
|
|
"enum": [
|
|
"off",
|
|
"messages",
|
|
"verbose"
|
|
],
|
|
"default": "off",
|
|
"description": "Traces the communication between VS Code and the language server."
|
|
}
|
|
}
|
|
},
|
|
"languages": [
|
|
{
|
|
"id": "Angelscript",
|
|
"filenamePatterns": [
|
|
"*.as"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "Angelscript",
|
|
"scopeName": "source.angelscript",
|
|
"path": "./syntaxes/as.tmGrammar"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "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"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^8.0.3",
|
|
"mocha": "^8.1.1",
|
|
"@types/node": "^12.12.0",
|
|
"eslint": "^6.4.0",
|
|
"@typescript-eslint/parser": "^2.3.0",
|
|
"typescript": "^4.0.2"
|
|
}
|
|
}
|