2018-02-20 11:01:40 +01:00
|
|
|
{
|
2018-06-04 14:26:18 +02:00
|
|
|
"name": "lsp-sample-multi-server",
|
|
|
|
|
"description": "A multi server LSP example",
|
2018-02-20 11:01:40 +01:00
|
|
|
"author": "Microsoft Corporation",
|
|
|
|
|
"license": "MIT",
|
2018-06-04 14:26:18 +02:00
|
|
|
"version": "1.0.0",
|
2018-02-20 11:01:40 +01:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
|
|
|
},
|
2018-10-15 11:52:55 -07:00
|
|
|
"publisher": "vscode-samples",
|
2018-06-04 14:26:18 +02:00
|
|
|
"categories": [],
|
|
|
|
|
"keywords": [
|
|
|
|
|
"multi-root ready"
|
|
|
|
|
],
|
|
|
|
|
"engines": {
|
2025-08-07 07:57:14 -07:00
|
|
|
"vscode": "^1.100.0"
|
2018-06-04 14:26:18 +02:00
|
|
|
},
|
|
|
|
|
"activationEvents": [
|
|
|
|
|
"onLanguage:plaintext"
|
|
|
|
|
],
|
|
|
|
|
"main": "./client/out/extension",
|
|
|
|
|
"contributes": {
|
|
|
|
|
"configuration": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"title": "Multi LSP configuration",
|
|
|
|
|
"properties": {
|
|
|
|
|
"lspMultiServerSample.enable": {
|
|
|
|
|
"scope": "resource",
|
|
|
|
|
"type": "boolean",
|
|
|
|
|
"default": true,
|
|
|
|
|
"description": "Controls the enablement."
|
|
|
|
|
},
|
|
|
|
|
"lspMultiServerSample.options": {
|
|
|
|
|
"scope": "resource",
|
|
|
|
|
"type": "object",
|
|
|
|
|
"default": {},
|
|
|
|
|
"description": "Additional options."
|
|
|
|
|
},
|
|
|
|
|
"lspMultiServerSample.trace.server": {
|
|
|
|
|
"scope": "window",
|
|
|
|
|
"type": "string",
|
|
|
|
|
"enum": [
|
|
|
|
|
"off",
|
|
|
|
|
"messages",
|
|
|
|
|
"verbose"
|
|
|
|
|
],
|
|
|
|
|
"default": "off",
|
|
|
|
|
"description": "Traces the communication between VSCode and the language server."
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2018-02-20 11:01:40 +01:00
|
|
|
"scripts": {
|
2019-05-09 14:50:48 -07:00
|
|
|
"vscode:prepublish": "npm run compile",
|
2018-10-26 11:23:38 +02:00
|
|
|
"compile": "tsc -b",
|
|
|
|
|
"watch": "tsc -b -w",
|
2024-10-26 17:44:03 -07:00
|
|
|
"lint": "eslint",
|
2018-06-04 14:26:18 +02:00
|
|
|
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
|
2018-02-20 11:01:40 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-10-26 17:44:03 -07:00
|
|
|
"@eslint/js": "^9.13.0",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
2018-06-04 14:26:18 +02:00
|
|
|
"@types/mocha": "^5.2.0",
|
2025-08-06 23:43:14 -07:00
|
|
|
"@types/node": "^22",
|
2024-10-26 17:44:03 -07:00
|
|
|
"eslint": "^9.13.0",
|
2025-08-06 23:43:14 -07:00
|
|
|
"typescript": "^5.9.2",
|
|
|
|
|
"typescript-eslint": "^8.39.0"
|
2018-02-20 11:01:40 +01:00
|
|
|
}
|
2025-08-06 23:43:14 -07:00
|
|
|
}
|