-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "csharp-ls",
"displayName": "csharp-ls",
"description": "C# LSP client for csharp-language-server",
"publisher": "vytautassurvila",
"repository": {
"type": "git",
"url": "https://github.com/vytautassurvila/vscode-csharp-ls"
},
"license": "MIT",
"version": "0.0.24",
"pricing": "Free",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onCommand: csharp-ls.selectSolution",
"workspaceContains:**/*.{sln}",
"onLanguage:csharp"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "csharp-ls.selectSolution",
"title": "csharp-ls: Select solution or project"
}
],
"configuration": {
"type": "object",
"title": "csharp-ls",
"properties": {
"csharp-ls.trace.server": {
"scope": "window",
"type": "object",
"description": "Traces the communication between VS Code and the language server. Trace can be seen in `Output` -> `csharp-ls`",
"properties": {
"verbosity": {
"type": "string",
"description": "Controls the verbosity of the trace.",
"enum": [
"off",
"message",
"verbose"
],
"default": "off"
},
"format": {
"type": "string",
"description": "Controls the output format of the trace.",
"enum": [
"text",
"json"
],
"default": "json"
}
}
},
"csharp-ls.csharp-ls-executable": {
"scope": "window",
"type": "string",
"default": "",
"description": "Executable path to local csharp-ls. To be used for testing not released csharp-ls version (example: `dotnet /home/user/.../Debug/net7.0/CSharpLanguageServer.dll`). It also can be used for globally installed language server via `dotnet tool install --global csharp-ls` (example: `csharp-ls`)."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"lint": "eslint src --ext ts",
"build": "vsce package",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"watch": "npm run -S esbuild-base -- --sourcemap --watch"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "18.x",
"@types/vscode": "^1.80.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vscode/test-electron": "^2.3.4",
"@vscode/vsce": "^2.20.1",
"esbuild": "^0.18.17",
"eslint": "^8.46.0",
"glob": "^8.1.0",
"mocha": "^10.0.1",
"typescript": "^5.1.6"
},
"dependencies": {
"vscode-languageclient": "^8.1.0"
}
}