-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.64 KB
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
{
"name": "iii-lsp",
"displayName": "iii Language Server",
"description": "Autocompletion and hover for iii engine functions and triggers",
"version": "0.2.7",
"publisher": "iii-hq",
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:python",
"onLanguage:rust"
],
"main": "./extension.js",
"icon": "images/iii.png",
"categories": [
"Programming Languages"
],
"contributes": {
"configuration": {
"title": "iii LSP",
"properties": {
"iii-lsp.serverPath": {
"type": "string",
"default": "",
"description": "Path to the lsp binary. If empty, installs lsp or looks for 'lsp' on PATH."
},
"iii-lsp.engineUrl": {
"type": "string",
"default": "ws://127.0.0.1:49134",
"description": "WebSocket URL of the iii engine."
}
}
}
},
"scripts": {
"test": "vitest run",
"package:check": "vsce package --out tmp.vsix && rm -f tmp.vsix"
},
"keywords": [
"iii",
"III",
"iii-lsp",
"III-lsp",
"iii language server",
"language server",
"lsp",
"lsp-vscode",
"autocomplete",
"hover",
"diagnostics"
],
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/iii-hq/workers.git",
"directory": "lsp-vscode"
},
"license": "ISC",
"type": "commonjs",
"dependencies": {
"extract-zip": "^2.0.1",
"tar": "^7.5.13",
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@vscode/vsce": "^3.7.1",
"ovsx": "^0.10.10",
"vitest": "^4.1.5"
}
}