-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.89 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.89 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
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": "vscode-r-console",
"displayName": "R Console",
"description": "A lightweight R console for VS Code",
"version": "0.1.1",
"publisher": "RConsole",
"license": "MIT",
"icon": "images/Rlogo.png",
"galleryBanner": {
"color": "#2C6DB2",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/Fred-Wu/vscode-R-console.git"
},
"bugs": {
"url": "https://github.com/Fred-Wu/vscode-R-console/issues"
},
"homepage": "https://github.com/Fred-Wu/vscode-R-console#readme",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"r",
"rstats",
"console",
"terminal",
"statistics",
"data-science"
],
"activationEvents": [
"onStartupFinished",
"onLanguage:r",
"onLanguage:rmd"
],
"files": [
"dist/**",
"images/**",
"bundled/bin/**",
"resources/r/**",
"package.nls.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"main": "./dist/extension.js",
"capabilities": {
"untrustedWorkspaces": {
"supported": false,
"description": "%capabilities.untrustedWorkspaces.description%"
},
"virtualWorkspaces": {
"supported": false,
"description": "%capabilities.virtualWorkspaces.description%"
}
},
"contributes": {
"commands": [
{
"command": "r-console.createTerminal",
"title": "Create R Console",
"category": "R"
},
{
"command": "r-console.createTerminalSide",
"title": "Create R Console in Side Editor",
"category": "R"
}
],
"configuration": {
"title": "R Console",
"properties": {
"r.console.autoMatch": {
"type": "boolean",
"default": true,
"description": "Automatically insert matching brackets and quotes."
},
"r.console.tabSize": {
"type": "number",
"default": 2,
"description": "Number of spaces for indentation."
}
}
}
},
"extensionDependencies": [
"REditorSupport.r"
],
"scripts": {
"vscode:prepublish": "npm run package:extension && npm run build:sidecar && npm run stage:sidecar",
"build:sidecar": "node scripts/build-sidecar.js",
"stage:sidecar": "node scripts/stage-sidecar.js",
"check-types": "tsc --noEmit -p ./",
"compile": "npm run check-types && node esbuild.js",
"watch": "node esbuild.js --watch",
"package:extension": "npm run check-types && node esbuild.js --production",
"package:vsix": "node scripts/package-vsix.js",
"package": "npm run vscode:prepublish && npm run package:vsix"
},
"devDependencies": {
"@types/node": "^24.12.2",
"@types/vscode": "1.85.0",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.27.7",
"typescript": "^5.3.0"
},
"dependencies": {
"@xterm/headless": "^6.0.0",
"vscode-languageclient": "^9.0.1"
}
}