Files
vscode-extension-samples/lsp-embedded-request-forwarding/package.json

54 lines
1.3 KiB
JSON
Raw Normal View History

2020-03-25 12:01:54 -07:00
{
"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": {
2020-04-01 11:54:04 -07:00
"vscode": "^1.43.0"
2020-03-25 12:01:54 -07:00
},
"activationEvents": [
2020-04-07 12:47:46 -07:00
"onLanguage:html1"
2020-03-25 12:01:54 -07:00
],
"main": "./client/out/extension",
2020-04-07 12:47:46 -07:00
"contributes": {
"languages": [
{
"id": "html1",
"extensions": [
2020-04-07 12:47:46 -07:00
".html1"
]
}
],
"grammars": [
{
2020-04-07 12:47:46 -07:00
"language": "html1",
"scopeName": "text.html1.basic",
"path": "./syntaxes/html1.tmLanguage.json"
}
]
2020-04-07 12:47:46 -07:00
},
2020-03-25 12:01:54 -07:00
"scripts": {
2020-04-01 11:54:04 -07:00
"vscode:prepublish": "cd client && npm install && cd .. && npm run compile",
2020-03-25 12:01:54 -07:00
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
2020-03-25 12:01:54 -07:00
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
2022-02-09 11:35:30 -08:00
"typescript": "^4.5.5"
2020-03-25 12:01:54 -07:00
}
}