-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.91 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
74
75
76
77
78
{
"name": "rview",
"displayName": "Rview",
"description": "RStudio-like features for Positron/VS Code: data viewer with filters & sorting, code section folding, and Ctrl+Click to explore tibbles",
"version": "1.0.0",
"publisher": "eduaguilera",
"repository": {
"type": "git",
"url": "https://github.com/eduaguilera/rview"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"extensionDependencies": [],
"activationEvents": [
"onLanguage:r",
"onLanguage:rmd",
"onLanguage:quarto"
],
"main": "./out/extension.js",
"contributes": {
"configurationDefaults": {
"[r]": {
"editor.foldingStrategy": "auto"
},
"[rmd]": {
"editor.foldingStrategy": "auto"
},
"[quarto]": {
"editor.foldingStrategy": "auto"
}
},
"commands": [
{
"command": "rview.openInDataExplorer",
"title": "Rview: Open in Data Explorer"
},
{
"command": "rview.openSimpleViewer",
"title": "Rview: Open in Simple Data Viewer"
},
{
"command": "rview.testActivation",
"title": "Rview: Test Activation"
}
],
"keybindings": [
{
"command": "rview.openInDataExplorer",
"key": "ctrl+shift+d",
"when": "editorTextFocus && editorLangId == r"
},
{
"command": "rview.openSimpleViewer",
"key": "ctrl+shift+v",
"when": "editorTextFocus && editorLangId == r"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "^20.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.x",
"@typescript-eslint/parser": "^6.x",
"eslint": "^8.x",
"typescript": "^5.x"
}
}