-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.25 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
107
108
109
110
111
112
113
114
115
{
"name": "vsrrunner",
"displayName": "VSRRunner",
"description": "Visual Studio Code extension for running R scripts.",
"icon": "media/logo.png",
"version": "0.0.3",
"publisher": "jwk",
"engines": {
"vscode": "^1.51.0"
},
"keywords": [
"R"
],
"repository": {
"type": "git",
"url": "https://github.com/jwkruisselbrink/vsrrunner-extension"
},
"bugs": {
"url": "https://github.com/jwkruisselbrink/vsrrunner-extension/issues"
},
"license": "MIT",
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:r"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "r.output",
"extensions": [
".Rout"
],
"aliases": [
"Rout"
]
}
],
"commands": [
{
"command": "vsrrunner.runRScript",
"title": "VSRRunner: Run R script",
"icon": {
"light": "./media/baseline-play_arrow-24px.svg",
"dark": "./media/baseline-play_arrow-24px_dark.svg"
}
},
{
"command": "vsrrunner.switchToSource",
"title": "VSRRunner: switch to source file",
"icon": {
"light": "./media/baseline-swap_horiz-24px.svg",
"dark": "./media/baseline-swap_horiz-24px_dark.svg"
}
}
],
"menus": {
"editor/title": [
{
"command": "vsrrunner.runRScript",
"group": "navigation",
"when": "editorLangId == r"
},
{
"command": "vsrrunner.switchToSource",
"when": "editorLangId == r",
"group": "navigation"
},
{
"command": "vsrrunner.switchToSource",
"when": "editorLangId == r.output",
"group": "navigation"
}
]
},
"keybindings": [
{
"command": "vsrrunner.runRScript",
"key": "F12",
"when": "editorTextFocus && editorLangId == r"
},
{
"command": "vsrrunner.switchToSource",
"key": "Alt+n",
"when": "editorTextFocus && editorLangId == r"
},
{
"command": "vsrrunner.switchToSource",
"key": "Alt+n",
"when": "editorTextFocus && editorLangId == r.output"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/vscode": "^1.51.0",
"tslint": "^5.12.1",
"typescript": "^4.3.5"
},
"dependencies": {
"copy-paste": "^1.3.0",
"tree-kill": "^1.2.1"
},
"extensionDependencies": [
"Ikuyadeu.r"
]
}