mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
26 lines
907 B
JSON
26 lines
907 B
JSON
{
|
|
"name": "lsp--sample",
|
|
"description": "A language server example",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "cd server && npm install && cd ../client && npm install && cd ..",
|
|
"compile": "tsc -p client/tsconfig.json && cd server && npm run installServer && cd .. && tsc -p server/tsconfig.json",
|
|
"compile:client": "tsc -p client/tsconfig.json",
|
|
"watch:client": "tsc -w -p client/tsconfig.json",
|
|
"compile:server": "cd server && npm run installServer && cd .. && tsc -p server/tsconfig.json",
|
|
"watch:server": "cd server && npm run installServer && cd .. && tsc -w -p server/tsconfig.json"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^2.2.42",
|
|
"@types/node": "^6.0.88",
|
|
"typescript": "^2.5.2"
|
|
}
|
|
}
|