-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
163 lines (163 loc) · 4.35 KB
/
package.json
File metadata and controls
163 lines (163 loc) · 4.35 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
{
"name": "boostcode",
"displayName": "BoostCode",
"description": "Boost your code speed",
"publisher": "quangvo09",
"version": "0.0.24",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.58.0"
},
"categories": [
"Snippets",
"Programming Languages",
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "boostcode.sum",
"title": "BoostCode: Sum - Sum numbers from selection"
},
{
"command": "boostcode.inspect",
"title": "BoostCode: Inspect - Print current selection"
},
{
"command": "boostcode.remove-inspect",
"title": "BoostCode: Remove Inspect - Remove all inspects"
},
{
"command": "boostcode.lines-to-array",
"title": "BoostCode: Lines to array - Convert selection to array"
},
{
"command": "boostcode.unique-lines",
"title": "BoostCode: Unique Lines - Keep unique lines from selection"
},
{
"command": "boostcode.comment-log",
"title": "BoostCode: Comment logs - Comment all debug logs"
},
{
"command": "boostcode.uncomment-log",
"title": "BoostCode: Uncomment logs - Uncomment all debug logs"
},
{
"command": "boostcode.remove-log",
"title": "BoostCode: Remove logs - Remove all debug logs"
},
{
"command": "boostcode.format-json",
"title": "BoostCode: Format JSON for current selection"
},
{
"command": "boostcode.format-xml",
"title": "BoostCode: Format XML for current selection"
},
{
"command": "boostcode.unique-csv-lines",
"title": "BoostCode: Merge CSV lines same first column"
},
{
"command": "boostcode.csv-to-json",
"title": "BoostCode: Convert CSV to JSON for current selection"
},
{
"command": "boostcode.add-cursors",
"title": "BoostCode: Add Cursors - Add cursors for all text matches of current selection"
}
],
"snippets": [
{
"language": "elixir",
"path": "snippets/elixir.snippets.json"
},
{
"language": "go",
"path": "snippets/go.snippets.json"
},
{
"language": "python",
"path": "snippets/python.snippets.json"
},
{
"language": "typescript",
"path": "snippets/typescript.snippets.json"
}
],
"keybindings": [
{
"command": "boostcode.comment-log",
"key": "ctrl+shift+j",
"mac": "cmd+shift+j",
"when": "editorLangId == elixir"
},
{
"command": "boostcode.uncomment-log",
"key": "ctrl+shift+l",
"mac": "cmd+shift+l",
"when": "editorLangId == elixir"
},
{
"command": "boostcode.remove-log",
"key": "ctrl+shift+k",
"mac": "cmd+shift+k",
"when": "editorLangId == elixir"
},
{
"command": "boostcode.inspect",
"key": "ctrl+shift+d",
"mac": "cmd+shift+d",
"when": "editorLangId == go || editorLangId == python || editorLangId =~ /^javascript|^typescript/"
},
{
"command": "boostcode.remove-inspect",
"key": "ctrl+shift+k",
"mac": "cmd+shift+k",
"when": "editorLangId == go || editorLangId == python || editorLangId =~ /^javascript|^typescript/"
},
{
"command": "boostcode.add-cursors",
"key": "ctrl+shift+i",
"mac": "ctrl+shift+i",
"when": "editorTextFocus"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "yarn run lint",
"test": "node ./test/runTest.js",
"publish": "yarn env && vsce publish",
"env": "export $(cat .env | xargs)"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.58.0",
"@vscode/vsce": "^2.22.0",
"eslint": "^7.27.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2"
},
"bugs": {
"url": "https://github.com/quangvo09/boostcode/issues",
"email": "thanhquang2608@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/quangvo09/boostcode.git"
},
"dependencies": {
"papaparse": "^5.4.1",
"xml-formatter": "^2.5.1"
}
}