-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 2.15 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
{
"name": "coc-r-lsp",
"version": "1.2.1",
"description": "R language server extension for coc.nvim",
"main": "lib/index.js",
"publisher": "chemzqm",
"keywords": [
"coc.nvim",
"R",
"R language"
],
"engines": {
"coc": "^0.0.79"
},
"scripts": {
"clean": "rimraf lib",
"build": "webpack",
"prepare": "webpack"
},
"activationEvents": [
"onLanguage:r",
"onLanguage:rmd"
],
"contributes": {
"configuration": {
"type": "object",
"properties": {
"r.trace.server": {
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
]
},
"r.lsp.args": {
"type": "array",
"default": [],
"description": "The command line arguments to use when launching R Language Server"
},
"r.lsp.path": {
"type": "string",
"default": "",
"description": "Path to R binary for launching Language Server"
},
"r.lsp.debug": {
"type": "boolean",
"default": false,
"description": "Debug R Language Server"
},
"r.lsp.diagnostics": {
"type": "boolean",
"default": true,
"description": "Enable Diagnostics"
},
"r.lsp.lang": {
"type": "string",
"default": "",
"description": "Override default LANG environment variable"
},
"r.lsp.use_stdio": {
"type": "boolean",
"default": false,
"description": "Use STDIO connection instead of TCP. (Unix/macOS users only)"
}
}
}
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@chemzqm/tsconfig": "^0.0.3",
"@types/node": "^10.12.0",
"@types/winreg": "^1.2.30",
"coc.nvim": "^0.0.79-next.12",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"winreg": "^1.2.4"
},
"dependencies": {
"vscode-languageserver-protocol": "^3.15.3",
"vscode-languageserver-textdocument": "^1.0.1"
}
}