-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 2.95 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
{
"name": "excel-csv-viewer",
"displayName": "Excel CSV Viewer",
"description": "Fast editable XLSX, XLS and CSV grid with sheets, filters, sorting, search, and cell selection.",
"version": "0.3.1",
"publisher": "suzdalenko-dev",
"license": "MIT",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#061B54",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/suzdalenko-dev/excel-csv-viewer.git"
},
"bugs": {
"url": "https://github.com/suzdalenko-dev/excel-csv-viewer/issues"
},
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"keywords": [
"excel",
"xlsx",
"xls",
"csv",
"viewer",
"editor",
"spreadsheet",
"filter",
"suzdalenko",
"suzdalenko-dev"
],
"activationEvents": [
"onCustomEditor:excelCsvViewer.spreadsheet"
],
"main": "./extension.js",
"scripts": {
"check": "node --check extension.js && node --check src/csvReader.js && node --check src/excelReader.js && node --check src/legacyExcelReader.js && node --check src/spreadsheetDocument.js && node --check src/tableUtils.js && node --check media/spreadsheetUtils.js && node --check media/spreadsheet.js",
"test": "node --test",
"package": "vsce package --out excel-csv-viewer.vsix"
},
"contributes": {
"customEditors": [
{
"viewType": "excelCsvViewer.spreadsheet",
"displayName": "Excel CSV Viewer",
"selector": [
{
"filenamePattern": "*.xlsx"
},
{
"filenamePattern": "*.XLSX"
},
{
"filenamePattern": "*.xls"
},
{
"filenamePattern": "*.XLS"
},
{
"filenamePattern": "*.csv"
},
{
"filenamePattern": "*.CSV"
}
],
"priority": "default"
}
],
"configuration": {
"title": "Excel CSV Viewer",
"properties": {
"excelCsvViewer.csvDelimiter": {
"type": "string",
"enum": [
"auto",
";",
","
],
"enumDescriptions": [
"Automatically detect semicolon or comma.",
"Use semicolon (;).",
"Use comma (,)."
],
"default": "auto",
"description": "Delimiter used when opening CSV files."
},
"excelCsvViewer.maxRowsPerSheet": {
"type": "integer",
"minimum": 0,
"default": 0,
"description": "Maximum number of data rows displayed per sheet. 0 means unlimited."
}
}
}
},
"dependencies": {
"exceljs": "^4.4.0",
"iconv-lite": "^0.6.3",
"papaparse": "^5.5.4",
"tabulator-tables": "^6.5.2",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"overrides": {
"uuid": "^11.1.1"
},
"devDependencies": {
"@types/vscode": "^1.90.0",
"@vscode/vsce": "^3.9.2"
}
}