Files
vscode-extension-samples/lsp-multi-server-sample/server/package.json
2018-02-20 11:01:40 +01:00

22 lines
668 B
JSON

{
"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": {
"vscode-languageserver": "^3.5.0"
},
"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 ."
}
}