2017-09-04 16:10:02 +02:00
|
|
|
{
|
|
|
|
|
"name": "lsp-multi-server-example-server-part",
|
|
|
|
|
"description": "A language server example demoing servers per workspace folder",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": "*"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2017-09-08 15:32:55 +02:00
|
|
|
"vscode-languageserver": "^3.4.2"
|
2017-09-04 16:10:02 +02:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"installServer": "installServerIntoExtension ../client ./package.json ./tsconfig.json",
|
|
|
|
|
"compile": "installServerIntoExtension ../client ./package.json ./tsconfig.json && tsc -p .",
|
|
|
|
|
"watch": "installServerIntoExtension ../client ./package.json ./tsconfig.json && tsc -w -p ."
|
|
|
|
|
}
|
|
|
|
|
}
|