-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
366 lines (366 loc) Β· 9.06 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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
{
"name": "tabular-data-viewer",
"displayName": "Tabular Data Viewer δΈ",
"description": "Tabular Data Viewer provides fast DSV data loading and custom Table Views π for large local and remote .csv, .tsv and .tab data files with Tabulator Table, Perspective View, D3FC Chart Views π π and Papa Parse CSV parser.",
"version": "1.8.0",
"engines": {
"vscode": "^1.64.0"
},
"icon": "resources/icons/tabular-data-viewer.png",
"publisher": "RandomFractalsInc",
"author": "Taras Novak",
"contributors": [
"Taras Novak"
],
"license": "Apache-2.0",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/RandomFractals/tabular-data-viewer"
},
"bugs": "https://github.com/RandomFractals/tabular-data-viewer/issues",
"homepage": "https://github.com/RandomFractals/tabular-data-viewer",
"galleryBanner": {
"color": "#333",
"theme": "dark"
},
"categories": [
"Data Science",
"Formatters",
"Visualization"
],
"keywords": [
"tabular data",
"data grid δΈ",
"data viewer",
"CSV",
"DSV",
"TSV",
"D3FC charts ππ",
"flat data",
"large data",
"remote data",
"text data",
"table view",
"tabular data view config",
"tabulator",
"data packages π¦",
"data streaming",
"data perspective view"
],
"activationEvents": [
"onUri",
"onLanguage:csv",
"onLanguage:tsv",
"onCommand:tabular.data.listDataPackages",
"onCommand:tabular.data.listDataResources",
"onCommand:tabular.data.openDataFile",
"onCommand:tabular.data.openTextDocument",
"onCommand:tabular.data.viewTable",
"onCommand:tabular.data.viewDataFileOnGitHub",
"onCommand:tabular.data.viewSettings",
"onCustomEditor:tabular.data.tableEditor",
"onCustomEditor:tabular.data.perspectiveEditor",
"onWebviewPanel:tabular.data.tableView"
],
"main": "./dist/extension.js",
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"commands": [
{
"command": "tabular.data.listDataPackages",
"title": "List Data Packages",
"category": "Tabular Data"
},
{
"command": "tabular.data.listDataResources",
"title": "List Data Resources",
"category": "Tabular Data",
"icon": "$(list-unordered)"
},
{
"command": "tabular.data.openDataFile",
"title": "Open Data File",
"category": "Tabular Data"
},
{
"command": "tabular.data.openTextDocument",
"title": "Open Text Document",
"category": "Tabular Data",
"icon": "$(go-to-file)"
},
{
"command": "tabular.data.viewTable",
"title": "View Table",
"category": "Tabular Data",
"icon": "$(table)"
},
{
"command": "tabular.data.viewDataFileOnGithub",
"title": "View Data File on GitHub",
"category": "Tabular Data",
"icon": "$(github)"
},
{
"command": "tabular.data.viewSettings",
"title": "View Settings",
"category": "Tabular Data",
"icon": "$(gear)"
}
],
"keybindings": [
{
"command": "tabular.data.listDataPackages",
"key": "alt+shift+d"
},
{
"command": "tabular.data.openDataFile",
"key": "alt+shift+o"
},
{
"command": "tabular.data.viewTable",
"key": "alt+shift+t"
}
],
"languages": [
{
"id": "csv",
"extensions": [
".csv"
],
"aliases": [
"CSV"
]
},
{
"id": "tsv",
"extensions": [
".tsv",
".tab"
],
"aliases": [
"TSV"
]
}
],
"menus": {
"explorer/context": [
{
"when": "resourceLangId == csv",
"command": "tabular.data.viewTable",
"group": "navigation"
},
{
"when": "resourceLangId == tsv",
"command": "tabular.data.viewTable",
"group": "navigation"
},
{
"when": "resourceFilename =~ /datapackage.json/",
"command": "tabular.data.listDataResources",
"group": "navigation"
}
],
"editor/title/context": [
{
"when": "resourceLangId == csv",
"command": "tabular.data.viewTable",
"group": "navigation"
},
{
"when": "resourceLangId == tsv",
"command": "tabular.data.viewTable",
"group": "navigation"
},
{
"when": "resourceFilename =~ /datapackage.json/",
"command": "tabular.data.listDataResources",
"group": "navigation"
},
{
"when": "tabular.data.view.visible && tabular.data.uri =~ /^(file:///)/",
"command": "tabular.data.openTextDocument",
"group": "navigation"
},
{
"when": "tabular.data.view.visible && tabular.data.uri =~ /^(https://raw.githubusercontent.com/)/",
"command": "tabular.data.viewDataFileOnGithub",
"group": "navigation"
}
],
"editor/title": [
{
"when": "editorLangId == csv",
"command": "tabular.data.viewTable",
"group": "navigation"
},
{
"when": "editorLangId == tsv",
"command": "tabular.data.viewTable",
"group": "navigation"
},
{
"when": "resourceFilename =~ /datapackage.json/",
"command": "tabular.data.listDataResources",
"group": "navigation"
},
{
"when": "tabular.data.view.visible && tabular.data.uri =~ /^(file:///)/",
"command": "tabular.data.openTextDocument",
"group": "navigation"
},
{
"when": "tabular.data.view.visible && tabular.data.uri =~ /^(https://raw.githubusercontent.com/)/",
"command": "tabular.data.viewDataFileOnGithub",
"group": "navigation"
}
],
"commandPalette": [
{
"when": "editorLangId == csv",
"command": "tabular.data.viewTable",
"group": "navigation"
},
{
"when": "editorLangId == tsv",
"command": "tabular.data.viewTable",
"group": "navigation"
},
{
"when": "resourceFilename =~ /datapackage.json/",
"command": "tabular.data.listDataResources",
"group": "navigation"
},
{
"when": "tabular.data.view.visible && tabular.data.uri =~ /^(file:///)/",
"command": "tabular.data.openTextDocument",
"group": "navigation"
},
{
"when": "tabular.data.view.visible && tabular.data.uri =~ /^(https://raw.githubusercontent.com/)/",
"command": "tabular.data.viewDataFileOnGithub",
"group": "navigation"
}
]
},
"customEditors": [
{
"viewType": "tabular.data.tableEditor",
"displayName": "Table View",
"priority": "option",
"selector": [
{
"filenamePattern": "*.csv"
},
{
"filenamePattern": "*.tsv"
},
{
"filenamePattern": "*.tab"
}
]
},
{
"viewType": "tabular.data.perspectiveEditor",
"displayName": "Perspective",
"priority": "option",
"selector": [
{
"filenamePattern": "*.csv"
},
{
"filenamePattern": "*.tsv"
},
{
"filenamePattern": "*.tab"
}
]
}
],
"configuration": {
"title": "Tabular Data Viewer",
"type": "object",
"properties": {
"tabular.data.view": {
"type": "string",
"enum": [
"Tabulator",
"Perspective"
],
"default": "Tabulator",
"description": "Default tabular data view type to use for displaying data."
},
"tabular.data.ui.theme": {
"type": "string",
"enum": [
"light",
"dark"
],
"default": "light",
"description": "Default data view UI theme to use for tabular data display."
},
"tabular.data.pageSize": {
"type": "integer",
"enum": [
1000,
10000,
100000
],
"default": "100000",
"description": "Default data page size to use for loading and displaying large datasets."
},
"tabular.data.parser.dynamicTyping": {
"type": "boolean",
"default": true,
"description": "Convert numeric and boolean data fields when parsing CSV data. Disable this option to speed up large datasets parsing and loading."
},
"tabular.data.createTableSchemaConfig": {
"type": "boolean",
"default": true,
"description": "Create table *.schema.json configuration file when parsing CSV data."
},
"tabular.data.createTableViewConfig": {
"type": "boolean",
"default": true,
"description": "Create *.table.json configuration file to save and restore customized Table View π columns, sort settings, Perspective View and D3FC Charts config options."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p -w . --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.64.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.18.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"glob": "^7.2.0",
"mocha": "^9.2.0",
"typescript": "^4.5.5",
"ts-loader": "^9.2.6",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"@vscode/test-electron": "^2.1.2"
},
"dependencies": {
"datapackage": "^1.1.10",
"papaparse": "^5.3.1",
"tableschema": "^1.12.4"
}
}