2017-09-04 16:09:40 +02:00
|
|
|
{
|
|
|
|
|
"name": "lsp-mulit-root-sample-client-part",
|
|
|
|
|
"description": "VSCode part of a language server",
|
|
|
|
|
"author": "Microsoft Corporation",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"publisher": "vscode",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
2018-05-07 16:56:14 +02:00
|
|
|
"vscode": "^1.23.0"
|
2017-09-04 16:09:40 +02:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
|
|
|
|
"onLanguage:plaintext"
|
|
|
|
|
],
|
|
|
|
|
"main": "./out/src/extension",
|
|
|
|
|
"contributes": {
|
|
|
|
|
"configuration": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"title": "Example configuration",
|
|
|
|
|
"properties": {
|
2017-09-04 21:24:33 +02:00
|
|
|
"lspMultiRootSample.maxNumberOfProblems": {
|
2017-09-04 16:09:40 +02:00
|
|
|
"scope": "resource",
|
|
|
|
|
"type": "number",
|
|
|
|
|
"default": 100,
|
|
|
|
|
"description": "Controls the maximum number of problems produced by the server."
|
|
|
|
|
},
|
2017-09-04 21:24:33 +02:00
|
|
|
"lspMultiRootSample.trace.server": {
|
2017-09-04 16:09:40 +02:00
|
|
|
"scope": "window",
|
|
|
|
|
"type": "string",
|
|
|
|
|
"enum": [
|
|
|
|
|
"off",
|
|
|
|
|
"messages",
|
|
|
|
|
"verbose"
|
|
|
|
|
],
|
|
|
|
|
"default": "off",
|
2017-09-04 21:24:33 +02:00
|
|
|
"description": "Traces the communication between VSCode and the language server."
|
2017-09-04 16:09:40 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "tsc -p ./",
|
|
|
|
|
"compile": "tsc -p ./",
|
|
|
|
|
"watch": "tsc -w -p ./",
|
|
|
|
|
"update-vscode": "node ./node_modules/vscode/bin/install",
|
|
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2018-05-04 08:59:19 +02:00
|
|
|
"vscode": "^1.1.17",
|
2018-05-07 16:56:14 +02:00
|
|
|
"vscode-languageclient": "^4.1.3"
|
2017-09-04 16:09:40 +02:00
|
|
|
}
|
2018-02-20 11:06:46 +01:00
|
|
|
}
|