Files
elm-language-client-vscode/package.json
2019-01-26 14:44:18 +01:00

76 lines
2.1 KiB
JSON

{
"name": "elm-language-server",
"displayName": "Elm",
"description": "A language server for Elm",
"author": "Kolja Lampe",
"license": "MIT",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples"
},
"categories": [],
"keywords": [
"elm"
],
"engines": {
"vscode": "^1.30.0"
},
"activationEvents": [
"onLanguage:elm"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "elm",
"aliases": [
"Elm",
"elm"
],
"extensions": [
".elm"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "elm",
"scopeName": "source.elm",
"path": "./syntaxes/elm.tmLanguage"
}
],
"configuration": {
"type": "object",
"title": "Debug configuration",
"properties": {
"languageServerExample.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && 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": "^5.2.5",
"@types/node": "^10.12.18",
"tslint": "^5.12.1",
"typescript": "3.2.4"
}
}