-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.83 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
{
"name": "csv-grid-editor",
"displayName": "CSV Grid Editor: CSV & TSV Viewer",
"description": "Open, view and edit CSV and TSV files in a fast sortable filterable grid. Inline editing, find and replace, freeze rows, column stats, Excel copy and paste and export to JSON. Free.",
"version": "1.13.1",
"publisher": "RobinReiche",
"license": "MIT",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/Robin-Reiche/csv-grid-editor"
},
"sponsor": {
"url": "https://github.com/sponsors/Robin-Reiche"
},
"homepage": "https://marketplace.visualstudio.com/items?itemName=RobinReiche.csv-grid-editor",
"bugs": {
"url": "https://github.com/Robin-Reiche/csv-grid-editor/issues"
},
"qna": "marketplace",
"galleryBanner": {
"color": "#1e508c",
"theme": "dark"
},
"pricing": "Free",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Data Science",
"Visualization"
],
"keywords": [
"csv",
"tsv",
"spreadsheet",
"data grid",
"delimited",
"column statistics",
"find and replace",
"large csv",
"excel alternative",
"csv to json"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"customEditors": [
{
"viewType": "csvViewer.grid",
"displayName": "CSV Grid Editor",
"selector": [
{
"filenamePattern": "*.csv"
},
{
"filenamePattern": "*.tsv"
}
],
"priority": "default"
}
]
},
"scripts": {
"compile": "tsc -p ./ && npm run copy-assets && npm run bundle",
"bundle": "esbuild src/webview/index.ts --bundle --outfile=media/webview.js --platform=browser --target=es2020",
"copy-assets": "node -e \"const fs=require('fs');fs.mkdirSync('media',{recursive:true});const cp=(s,d)=>fs.copyFileSync(s,d);cp('node_modules/@vscode/codicons/dist/codicon.css','media/codicon.css');cp('node_modules/@vscode/codicons/dist/codicon.ttf','media/codicon.ttf');cp('node_modules/ag-grid-community/dist/ag-grid-community.min.js','media/ag-grid-community.min.js');cp('node_modules/ag-grid-community/styles/ag-grid.css','media/ag-grid.css');cp('node_modules/ag-grid-community/styles/ag-theme-alpine.css','media/ag-theme-alpine.css');\"",
"watch": "tsc -watch -p ./",
"watch:web": "esbuild src/webview/index.ts --bundle --outfile=media/webview.js --platform=browser --watch",
"pretest": "tsc -p ./",
"test": "node test/run-all.cjs",
"vscode:prepublish": "npm run compile",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.80.0",
"@vscode/codicons": "^0.0.45",
"ag-grid-community": "32.3.3",
"esbuild": "^0.27.4",
"typescript": "^5.3.0"
}
}