-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
212 lines (212 loc) · 5.62 KB
/
package.json
File metadata and controls
212 lines (212 loc) · 5.62 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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
{
"name": "termino",
"displayName": "Termino",
"description": "Termino is a lightweight VS Code extension that lets you run your favorite terminal commands with a single keystroke. Customize shortcuts, speed up your workflow, and stop retyping the same commands again and again.",
"version": "1.0.1",
"publisher": "ayanabhachatterjee",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"icon": "resources/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/ayahack89/termino.git"
},
"bugs": {
"url": "https://github.com/ayahack89/termino/issues"
},
"homepage": "https://github.com/ayahack89/termino#readme",
"license": "MIT",
"activationEvents": [
"onStartupFinished",
"onView:termino.launcherView",
"onCommand:termino.editShortcuts",
"onCommand:termino.reloadShortcuts",
"onCommand:termino.quickLaunch"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Termino Preferences",
"properties": {
"termino.shortcutsPath": {
"type": "string",
"default": ".vscode/termino.shortcuts.json",
"description": "Relative path in workspace for user-defined Termino shortcuts."
},
"termino.shortcuts": {
"type": "object",
"description": "Default key-command mappings, override in user shortcuts file.",
"default": {
"a": {
"cmd": "dir",
"desc": "List files & folders (Windows)."
},
"b": {
"cmd": "cls",
"desc": "Clear console (Windows)."
},
"c": {
"cmd": "pwd",
"desc": "Print working directory."
},
"d": {
"cmd": "cd..",
"desc": "Change directory up one level."
},
"e": {
"cmd": "tree",
"desc": "Show directory tree (Windows)."
},
"f": {
"cmd": "flutter doctor",
"desc": "Check Flutter setup."
},
"g": {
"cmd": "flutter pub get",
"desc": "Fetch dependencies."
},
"h": {
"cmd": "flutter pub upgrade",
"desc": "Upgrade packages."
},
"i": {
"cmd": "flutter run",
"desc": "Run on device."
},
"j": {
"cmd": "flutter build apk",
"desc": "Build Android APK."
},
"k": {
"cmd": "dart analyze",
"desc": "Analyze Dart code."
},
"l": {
"cmd": "dart format .",
"desc": "Format Dart files."
},
"m": {
"cmd": "git status",
"desc": "Git status."
},
"n": {
"cmd": "git add .",
"desc": "Stage changes."
},
"o": {
"cmd": "git commit -m \"Update",
"desc": "Commit with message."
},
"p": {
"cmd": "git pull",
"desc": "Pull upstream."
},
"q": {
"cmd": "git push",
"desc": "Push to remote."
},
"r": {
"cmd": "git log --oneline --graph",
"desc": "Commit history graph."
},
"s": {
"cmd": "firebase login",
"desc": "Login Firebase CLI."
},
"t": {
"cmd": "firebase emulators:start",
"desc": "Start Firebase emulators."
},
"u": {
"cmd": "firebase deploy",
"desc": "Deploy to Firebase."
},
"v": {
"cmd": "ipconfig",
"desc": "Network interfaces (Windows)."
},
"w": {
"cmd": "ping -n 4 google.com",
"desc": "Ping Google."
},
"x": {
"cmd": "tracert google.com",
"desc": "Trace route."
},
"y": {
"cmd": "netstat -ano",
"desc": "Network connections."
},
"z": {
"cmd": "tasklist",
"desc": "List processes."
}
}
}
}
},
"commands": [
{
"command": "termino.editShortcuts",
"title": "Termino: Edit Shortcuts"
},
{
"command": "termino.reloadShortcuts",
"title": "Termino: Reload Shortcuts"
},
{
"command": "termino.quickLaunch",
"title": "Termino: Quick Launch"
}
],
"viewsContainers": {
"panel": [
{
"id": "termino",
"title": "Termino",
"icon": "resources/icon.png"
}
]
},
"views": {
"termino": [
{
"id": "termino.launcherView",
"name": "Launcher"
}
]
},
"menus": {
"commandPalette": [
{
"command": "termino.editShortcuts"
},
{
"command": "termino.reloadShortcuts"
},
{
"command": "termino.quickLaunch"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"eslint": "^9.25.1",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2"
}
}