This repository has been archived by the owner on Jul 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
106 lines (106 loc) · 2.99 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
98
99
100
101
102
103
104
105
106
{
"name": "r-lsp",
"displayName": "R LSP Client",
"description": "R LSP Client for VS Code",
"version": "0.1.16",
"license": "SEE LICENSE IN LICENSE",
"publisher": "REditorSupport",
"icon": "images/Rlogo.png",
"engines": {
"vscode": "^1.52.0"
},
"repository": {
"type": "git",
"url": "https://github.com/REditorSupport/vscode-r-lsp"
},
"bugs": {
"url": "https://github.com/REditorSupport/vscode-r-lsp/issues"
},
"categories": [
"Programming Languages",
"Linters",
"Other"
],
"keywords": [
"R",
"R language"
],
"activationEvents": [
"onLanguage:r",
"onLanguage:rmd"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./"
},
"contributes": {
"configuration": {
"type": "object",
"title": "R LSP Client",
"properties": {
"r.rpath.windows": {
"type": "string",
"default": "",
"description": "Path to an R executable for Windows. Must be \"vanilla\" R, not radian etc.!"
},
"r.rpath.mac": {
"type": "string",
"default": "",
"description": "Path to an R executable for macOS. Must be \"vanilla\" R, not radian etc.!"
},
"r.rpath.linux": {
"type": "string",
"default": "",
"description": "Path to an R executable for Linux. Must be \"vanilla\" R, not radian etc.!"
},
"r.lsp.path": {
"type": "string",
"default": "",
"description": "Path to R binary for launching Language Server",
"markdownDeprecationMessage": "Will be deprecated. Use `#r.rpath.windows#`, `#r.rpath.mac#`, or `#r.rpath.linux#` instead.",
"deprecationMessage": "Will be deprecated. Use r.rpath.windows, r.rpath.mac, or r.rpath.linux instead."
},
"r.lsp.args": {
"type": "array",
"default": [],
"description": "The command line arguments to use when launching R 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)"
}
}
}
},
"devDependencies": {
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@types/vscode": "^1.52.0",
"@types/winreg": "^1.2.30",
"tslint": "^5.11.0",
"typescript": "^4.1.3",
"vscode-test": "^1.4.1"
},
"dependencies": {
"mz": "^2.7.0",
"vscode-languageclient": "^7.0.0",
"winreg": "^1.2.4"
}
}