aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json19
1 files changed, 11 insertions, 8 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index f3b049e43..b212e159d 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -1,7 +1,9 @@
1{ 1{
2 "name": "ra-lsp", 2 "name": "ra-lsp",
3 "displayName": "ra-lsp", 3 "displayName": "ra-lsp",
4 "description": "", 4 "description": "An alternative rust language server to the RLS",
5 "preview": true,
6 "private": true,
5 "version": "0.0.1", 7 "version": "0.0.1",
6 "publisher": "matklad", 8 "publisher": "matklad",
7 "repository": { 9 "repository": {
@@ -15,6 +17,7 @@
15 }, 17 },
16 "scripts": { 18 "scripts": {
17 "vscode:prepublish": "npm run compile", 19 "vscode:prepublish": "npm run compile",
20 "package": "vsce package",
18 "compile": "tsc -p ./", 21 "compile": "tsc -p ./",
19 "watch": "tsc -watch -p ./", 22 "watch": "tsc -watch -p ./",
20 "postinstall": "node ./node_modules/vscode/bin/install", 23 "postinstall": "node ./node_modules/vscode/bin/install",
@@ -28,18 +31,18 @@
28 "singleQuote": true 31 "singleQuote": true
29 }, 32 },
30 "dependencies": { 33 "dependencies": {
31 "event-stream": "^3.3.4", 34 "event-stream": "^4.0.1",
32 "vscode-languageclient": "^5.1.1" 35 "vscode-languageclient": "^5.1.1"
33 }, 36 },
34 "devDependencies": { 37 "devDependencies": {
35 "@types/mocha": "^2.2.42", 38 "@types/mocha": "^2.2.42",
36 "@types/node": "^8.10.34", 39 "@types/node": "^8.10.38",
37 "prettier": "^1.14.3", 40 "prettier": "^1.15.3",
38 "tslint": "^5.11.0", 41 "tslint": "^5.11.0",
39 "tslint-config-prettier": "^1.15.0", 42 "tslint-config-prettier": "^1.17.0",
40 "typescript": "^2.6.1", 43 "typescript": "^2.6.1",
41 "vsce": "^1.52.0", 44 "vsce": "^1.53.2",
42 "vscode": "^1.1.21" 45 "vscode": "^1.1.26"
43 }, 46 },
44 "activationEvents": [ 47 "activationEvents": [
45 "onLanguage:rust" 48 "onLanguage:rust"
@@ -107,7 +110,7 @@
107 }, 110 },
108 { 111 {
109 "command": "ra-lsp.extendSelection", 112 "command": "ra-lsp.extendSelection",
110 "key": "ctrl+w", 113 "key": "shift+alt+right",
111 "when": "editorTextFocus && editorLangId == rust" 114 "when": "editorTextFocus && editorLangId == rust"
112 }, 115 },
113 { 116 {