-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 3.05 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
{
"name": "llllvvuu-glspc",
"version": "0.1.12",
"displayName": "Generic LSP Client",
"description": "Generic LSP Client for VS Code",
"categories": [],
"repository": "https://github.com/llllvvuu/vscode-glspc",
"publisher": "llllvvuu",
"contributors": [
"llllvvuu",
"torokati44",
"ruilvo",
"Matts966"
],
"engines": {
"vscode": "^1.88.1"
},
"main": "./out/extension.js",
"scripts": {
"compile": "tsc -p ./",
"esbuild": "rimraf out && esbuild ./src/extension.ts --bundle --minify --outfile=out/extension.js --external:vscode --format=cjs --platform=node --sourcemap",
"lint": "eslint . --cache",
"package": "vsce package",
"prettier": "prettier --write .",
"vscode:prepublish": "npm run esbuild",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"vscode-languageclient": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.3"
},
"devDependencies": {
"@types/node": "^20.5.6",
"@types/vscode": "^1.88.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vscode/vsce": "^2.20.1",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"prettier": "^3.0.2",
"prettier-plugin-pkg": "^0.18.0",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Generic LSP Client",
"properties": {
"glspc.serverCommand": {
"scope": "window",
"type": "string",
"default": "",
"editPresentation": "multilineText",
"description": "The command to start the language server."
},
"glspc.serverCommandArguments": {
"scope": "window",
"type": "array",
"default": [],
"description": "Command-line arguments to pass to the LSP server. Example: [\"lsp\"]"
},
"glspc.languageId": {
"scope": "window",
"type": "string",
"default": "",
"description": "The language id for which the server will be used. Example: python."
},
"glspc.environmentVariables": {
"scope": "window",
"type": "object",
"default": {},
"description": "Additional environment variables to set when starting the LSP server executable. Use $VAR to refer to existing environment variables. Example: { \"PATH\": \"/some/path:$PATH\" }"
},
"glspc.initializationOptions": {
"scope": "window",
"type": "object",
"default": {},
"description": "https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#initializeParams"
}
}
},
"commands": [
{
"command": "glspc.restartServer",
"title": "Generic LSP Client: Restart server"
}
]
},
"packageManager": "[email protected]+sha256.4b4efa12490e5055d59b9b9fc9438b7d581a6b7af3b5675eb5c5f447cee1a589"
}