-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.1 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
{
"name": "bar-helper",
"displayName": "Bar Helper",
"description": "Run any command from the status bar.",
"version": "0.5.6",
"publisher": "andyduong1920",
"repository": {
"type": "git",
"url": "https://github.com/andyduong1920/vscode-bar-helper"
},
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"title": "Bar Helper",
"properties": {}
},
"menus": {
"editor/context": [],
"explorer/context": []
},
"keybindings": [
{
"key": "ctrl+z",
"command": "barHelper.runTestLine",
"when": "editorTextFocus"
},
{
"key": "ctrl+a",
"command": "barHelper.runTestFile",
"when": "editorTextFocus"
},
{
"key": "ctrl+f",
"command": "barHelper.formatCodeFile",
"when": "editorTextFocus"
},
{
"key": "ctrl+m",
"command": "barHelper.runDBMigrate"
},
{
"key": "ctrl+s",
"command": "barHelper.startWebServer"
},
{
"key": "ctrl+i",
"command": "barHelper.runGitStatus"
},
{
"key": "ctrl+u",
"command": "barHelper.runGitPush"
},
{
"key": "ctrl+c",
"command": "barHelper.runGitCheckoutDevelopPull"
}
],
"commands": [
{
"command": "barHelper.runTestFile",
"title": "11111: 🔥 Run the current test FILE 🔥"
},
{
"command": "barHelper.runTestLine",
"title": "11111: 1️⃣ Run the current test LINE 1️⃣"
},
{
"command": "barHelper.runDBRemigrate",
"title": "11111: ⭕ db:remigrate ⭕"
},
{
"command": "barHelper.runDBMigrate",
"title": "11111: ⬆️ db:migrate ⬆️"
},
{
"command": "barHelper.startInteractiveConsole",
"title": "11111: ⛑️ Start Interactive console ⛑️"
},
{
"command": "barHelper.startWebServer",
"title": "11111: 🚁 Start Web server 🚁"
},
{
"command": "barHelper.formatCodeFile",
"title": "11111: 🎨 Format the current FILE 🎨"
},
{
"command": "barHelper.runGitPush",
"title": "11111: 🚀 Git PUSH 🚀"
},
{
"command": "barHelper.runGitRebaseContinue",
"title": "11111: 🏃 Git rebase CONTINUE 🏃"
},
{
"command": "barHelper.runGitRebaseSkip",
"title": "11111: 👋 Git rebase SKIP 👋"
}
]
},
"main": "./out/extension.js",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^18.15.11",
"@types/vscode": "^1.77.0",
"glob": "^9.3.4",
"typescript": "^5.0.3"
},
"dependencies": {},
"keywords": [
"bar",
"helper",
"productive"
],
"galleryBanner": {
"color": "#0B162D",
"theme": "dark"
},
"icon": "icon.png"
}