mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
36 lines
932 B
JSON
36 lines
932 B
JSON
{
|
|
"name": "lsp-embedded-language-service-sample",
|
|
"description": "A language server example using language services to support embedded languages",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"version": "1.0.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"publisher": "vscode-samples",
|
|
"categories": [],
|
|
"keywords": [],
|
|
"engines": {
|
|
"vscode": "^1.43.0"
|
|
},
|
|
"activationEvents": [
|
|
"onLanguage:html"
|
|
],
|
|
"main": "./client/out/extension",
|
|
"contributes": {},
|
|
"scripts": {
|
|
"vscode:prepublish": "cd client && npm install && cd .. && npm run compile",
|
|
"compile": "tsc -b",
|
|
"watch": "tsc -b -w",
|
|
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
|
|
"test": "sh ./scripts/e2e.sh"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^12.11.7",
|
|
"tslint": "^5.16.0",
|
|
"typescript": "^3.8.3"
|
|
}
|
|
}
|