Files
vscode-extension-samples/lsp-multi-server-sample/server/package.json
2017-09-04 16:10:11 +02:00

21 lines
669 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": "next"
},
"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 ."
}
}