-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
146 lines (144 loc) · 3.78 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "quick-run-in-terminal",
"displayName": "Quick run in terminal",
"description": "Run C, C++, python program in terminal",
"publisher": "AbrarShakhi",
"bugs": {
"type": "git",
"url": "https://github.com/AbrarShakhi/quick-run-in-terminal/issues"
},
"homepage" : "https://github.com/AbrarShakhi/quick-run-in-terminal/blob/main/README.md",
"license": "GNU",
"repository": {
"type": "git",
"url": "https://github.com/AbrarShakhi/quick-run-in-terminal"
},
"version": "0.1.5",
"engines": {
"vscode": "^1.96.0"
},
"keywords": [
"C",
"run",
"Compile",
"build",
"cpp",
"c++",
"C plus plus",
"python",
"run code",
"code runner",
"run C/C++",
"rust",
"java"
],
"icon": "./res/icons/icon.png",
"categories": [
"Other"
],
"activationEvents": [],
"main": "./src/main.js",
"contributes": {
"commands": [
{
"command": "quickRunInTerminal.run",
"icon": "$(debug-console)",
"title": "Quick Run"
}
],
"menus": {
"editor/title/run": [
{
"command": "quickRunInTerminal.run",
"group": "navigation"
}
],
"editor/context": [
{
"command": "quickRunInTerminal.run",
"group": "navigation"
}
],
"explorer/context": [
{
"command": "quickRunInTerminal.run",
"group": "navigation"
}
]
},
"keybindings": [
{
"command": "quickRunInTerminal.run",
"key": "ctrl+alt+C"
}
],
"configuration": {
"title": "Quick run in Terminal Configuration",
"properties": {
"quickRunInTerminal.clearBeforeRun": {
"type": "boolean",
"default": true,
"description": "Clear terminal before run"
},
"quickRunInTerminal.saveAllFilesBeforeRun": {
"type": "boolean",
"default": false,
"description": "save all files before run, default only save active file"
},
"quickRunInTerminal.binaryOutputName": {
"type": "string",
"default": "",
"description": "Name of the build binary file. if empty string then name of the file will be used."
},
"quickRunInTerminal.C_compilerPath": {
"type": "string",
"default": "gcc",
"description": "C compiler path/compiler name"
},
"quickRunInTerminal.Cpp_compilerPath": {
"type": "string",
"default": "g++",
"description": "C++ compiler path/compiler name"
},
"quickRunInTerminal.Rust_compilerPath": {
"type": "string",
"default": "rustc",
"description": "Rust compiler path/compiler name"
},
"quickRunInTerminal.Java_CompilerPath": {
"type": "string",
"default": "javac",
"description": "Java compiler path/compiler name"
},
"quickRunInTerminal.Java_Runtime": {
"type": "string",
"default": "java",
"description": "Java runtime path/program name"
},
"quickRunInTerminal.Python_interpreterPath": {
"type": "string",
"default": "python",
"description": "python interpreter/path name"
},
"quickRunInTerminal.JavaScript_interpreterPath": {
"type": "string",
"default": "node",
"description": "javascript interpreter/path name"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.96.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"eslint": "^9.16.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1"
}
}