forked from d-akara/vscode-extension-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
214 lines (211 loc) · 7.45 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
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
213
214
{
"name": "transformer",
"displayName": "Transformer",
"description": "Filter, Sort, Unique, Reverse, Align, CSV, Line Selection, Text Transformations and Macros",
"version": "1.7.0",
"icon": "transformer-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/dakaraphi/vscode-extension-transformer"
},
"publisher": "dakara",
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:dakara-internal.oncommand",
"onCommand:dakara-transformer.alignCSV",
"onCommand:dakara-transformer.alignCursor",
"onCommand:dakara-transformer.commands",
"onCommand:dakara-transformer.compactCSV",
"onCommand:dakara-transformer.copyToNewDocument",
"onCommand:dakara-transformer.countUniqueLinesNewDocument",
"onCommand:dakara-transformer.filter",
"onCommand:dakara-transformer.filterAsNewDocument",
"onCommand:dakara-transformer.macroCreate",
"onCommand:dakara-transformer.macroEdit",
"onCommand:dakara-transformer.macroDelete",
"onCommand:dakara-transformer.macroRepeat",
"onCommand:dakara-transformer.macroRun",
"onCommand:dakara-transformer.linesAsJSON",
"onCommand:dakara-transformer.reverseLines",
"onCommand:dakara-transformer.selectLines",
"onCommand:dakara-transformer.sortLines",
"onCommand:dakara-transformer.uniqueLines",
"onCommand:dakara-transformer.uniqueLinesStrict",
"onCommand:dakara-transformer.uniqueLinesNewDocument",
"onCommand:dakara-transformer.countUniqueLinesNewDocument",
"onCommand:dakara-transformer.selectJSONString",
"onCommand:dakara-transformer.sortByLineLength",
"onCommand:dakara-transformer.trimLines",
"onCommand:dakara-transformer.randomLines"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "dakara-transformer.sortLines",
"title": "Sort Lines",
"category": "Transform"
},
{
"command": "dakara-transformer.filterAsNewDocument",
"title": "Filter Lines As New Document...",
"category": "Transform"
},
{
"command": "dakara-transformer.macroRun",
"title": "Macro Script Run...",
"category": "Transform"
},
{
"command": "dakara-transformer.macroEdit",
"title": "Macro Script Edit...",
"category": "Transform"
},
{
"command": "dakara-transformer.macroCreate",
"title": "Macro Script Create...",
"category": "Transform"
},
{
"command": "dakara-transformer.macroDelete",
"title": "Macro Script Delete...",
"category": "Transform"
},
{
"command": "dakara-transformer.macroRepeat",
"title": "Macro Script Repeat Last",
"category": "Transform"
},
{
"command": "dakara-internal.oncommand",
"title": "internal use only",
"category": "Dakara Internal"
},
{
"command": "dakara-transformer.filter",
"title": "Filter Lines...",
"category": "Transform"
},
{
"command": "dakara-transformer.reverseLines",
"title": "Reverse Lines",
"category": "Transform"
},
{
"command": "dakara-transformer.alignCursor",
"title": "Align To Cursor",
"category": "Transform"
},
{
"command": "dakara-transformer.alignCSV",
"title": "Align CSV",
"category": "Transform"
},
{
"command": "dakara-transformer.compactCSV",
"title": "Compact CSV",
"category": "Transform"
},
{
"command": "dakara-transformer.commands",
"title": "List All Commands",
"category": "Transform"
},
{
"command": "dakara-transformer.uniqueLines",
"title": "Unique Lines",
"category": "Transform"
},
{
"command": "dakara-transformer.uniqueLinesStrict",
"title": "Unique Lines (Strict)",
"category": "Transform"
},
{
"command": "dakara-transformer.uniqueLinesNewDocument",
"title": "Unique Lines As New Document",
"category": "Transform"
},
{
"command": "dakara-transformer.sortByLineLength",
"title": "Sort Lines By Length",
"category": "Transform"
},
{
"command": "dakara-transformer.countUniqueLinesNewDocument",
"title": "Count Duplicate Lines As New Document",
"category": "Transform"
},
{
"command": "dakara-transformer.copyToNewDocument",
"title": "Copy To New Document",
"category": "Transform"
},
{
"command": "dakara-transformer.selectLines",
"title": "Select Lines",
"category": "Transform"
},
{
"command": "dakara-transformer.linesAsJSON",
"title": "Lines As JSON",
"category": "Transform"
},
{
"command": "dakara-transformer.selectJSONString",
"title": "Selection As JSON String",
"category": "Transform"
},
{ "command": "dakara-transformer.trimLines",
"title": "Trim Lines",
"category": "Transform"
},
{ "command": "dakara-transformer.randomLines",
"title": "Randomize Lines",
"category": "Transform"
}
],
"menus": {
"commandPalette": [
{"command": "dakara-internal.oncommand", "when": "false"}
]
},
"languages": [{
"id": "macro",
"aliases": [
"macro"
],
"extensions": [
".macro"
],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "macro",
"scopeName": "source.macro",
"path": "./macro.tmLanguage"
}]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"compile_common": "tsc -watch -p ../vscode-extension-common",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.46",
"@types/node": "^8.9.5",
"mocha": "^2.3.3",
"typescript": "^2.7.2",
"vscode": "^1.1.14"
},
"dependencies": {
"vscode-extension-common": "file:../vscode-extension-common"
}
}