mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
23 lines
668 B
JSON
23 lines
668 B
JSON
{
|
|
"name": "lsp-sample",
|
|
"description": "Example implementation of a language server in node.",
|
|
"version": "0.0.1",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": "*"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"dependencies": {
|
|
"vscode-languageserver": "^3.4.2"
|
|
},
|
|
"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 ."
|
|
}
|
|
}
|