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": {
|
2022-12-08 13:55:11 -08:00
|
|
|
"vscode": "^1.74.0"
|
2020-03-25 12:01:54 -07:00
|
|
|
},
|
2023-05-17 16:04:14 +01:00
|
|
|
"activationEvents": [
|
|
|
|
|
"onLanguage:html1"
|
|
|
|
|
],
|
2020-03-25 12:01:54 -07:00
|
|
|
"main": "./client/out/extension",
|
2020-04-07 12:47:46 -07:00
|
|
|
"contributes": {
|
2021-03-02 15:48:43 -08:00
|
|
|
"languages": [
|
|
|
|
|
{
|
|
|
|
|
"id": "html1",
|
|
|
|
|
"extensions": [
|
2020-04-07 12:47:46 -07:00
|
|
|
".html1"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
],
|
2021-03-02 15:48:43 -08:00
|
|
|
"grammars": [
|
|
|
|
|
{
|
2020-04-07 12:47:46 -07:00
|
|
|
"language": "html1",
|
2021-03-02 15:48:43 -08:00
|
|
|
"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",
|
2024-10-26 17:44:03 -07:00
|
|
|
"lint": "eslint",
|
2021-08-27 15:08:14 +02:00
|
|
|
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
|
2020-03-25 12:01:54 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-10-26 17:44:03 -07:00
|
|
|
"@eslint/js": "^9.13.0",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
2020-03-25 12:01:54 -07:00
|
|
|
"@types/mocha": "^5.2.7",
|
2024-10-03 11:53:22 -07:00
|
|
|
"@types/node": "^20",
|
2024-10-26 17:44:03 -07:00
|
|
|
"eslint": "^9.13.0",
|
2025-03-03 09:17:39 -08:00
|
|
|
"typescript": "^5.8.2",
|
2024-11-26 22:59:45 -08:00
|
|
|
"typescript-eslint": "^8.16.0"
|
2020-03-25 12:01:54 -07:00
|
|
|
}
|
2021-08-27 15:08:14 +02:00
|
|
|
}
|