|
8 | 8 | "type": "git", |
9 | 9 | "url": "https://github.com/jonaraphael/csv.git" |
10 | 10 | }, |
11 | | - "version": "1.1.1", |
| 11 | + "version": "1.1.2", |
12 | 12 | "engines": { |
13 | | - "vscode": "^1.100.0", |
| 13 | + "vscode": "^1.96.0", |
14 | 14 | "node": ">=14" |
15 | 15 | }, |
16 | | - "categories": [ |
17 | | - "Data Science", |
18 | | - "Programming Languages", |
19 | | - "Other" |
20 | | - ], |
| 16 | + "categories": ["Data Science", "Programming Languages", "Other"], |
21 | 17 | "activationEvents": [ |
22 | 18 | "onLanguage:csv", |
23 | 19 | "onCommand:csv.toggleExtension", |
|
31 | 27 | "languages": [ |
32 | 28 | { |
33 | 29 | "id": "csv", |
34 | | - "extensions": [ ".csv" ], |
35 | | - "aliases": [ "CSV", "csv" ], |
| 30 | + "extensions": [".csv"], |
| 31 | + "aliases": ["CSV", "csv"], |
36 | 32 | "configuration": "./language-configuration.json" |
37 | 33 | } |
38 | 34 | ], |
|
43 | 39 | { "command": "csv.changeSeparator", "title": "CSV: Change CSV Separator" }, |
44 | 40 | { "command": "csv.changeFontFamily", "title": "CSV: Change Font Family" } |
45 | 41 | ], |
46 | | - |
47 | 42 | "configuration": { |
48 | 43 | "type": "object", |
49 | 44 | "title": "CSV Extension Configuration", |
|
68 | 63 | "default": ",", |
69 | 64 | "description": "CSV separator to use." |
70 | 65 | }, |
71 | | - |
72 | 66 | "csv.fontFamily": { |
73 | 67 | "type": "string", |
74 | 68 | "default": "", |
75 | 69 | "description": "Font family used by the CSV custom editor. Leave empty to inherit ‘editor.fontFamily’.", |
76 | 70 | "scope": "application" |
77 | 71 | }, |
78 | | - |
79 | 72 | "csv.cellPadding": { |
80 | 73 | "type": "number", |
81 | 74 | "default": 4, |
82 | 75 | "description": "Vertical padding in pixels for table cells." |
83 | 76 | } |
84 | 77 | } |
85 | 78 | }, |
86 | | - |
87 | 79 | "customEditors": [ |
88 | 80 | { |
89 | 81 | "viewType": "csv.editor", |
90 | 82 | "displayName": "CSV", |
91 | | - "selector": [ { "filenamePattern": "*.csv" } ] |
| 83 | + "selector": [{ "filenamePattern": "*.csv" }] |
92 | 84 | } |
93 | 85 | ] |
94 | 86 | }, |
95 | | - |
96 | 87 | "scripts": { |
97 | 88 | "compile": "tsc -p ./", |
98 | 89 | "lint": "eslint '**/*.ts'", |
|
107 | 98 | "@types/mocha": "^10.0.10", |
108 | 99 | "@types/node": "^20.11.19", |
109 | 100 | "@types/papaparse": "^5.3.16", |
110 | | - "@types/vscode": "^1.100.0", |
| 101 | + "@types/vscode": "^1.96.0", |
111 | 102 | "@typescript-eslint/eslint-plugin": "^7.9.0", |
112 | 103 | "@typescript-eslint/parser": "^7.9.0", |
113 | 104 | "eslint": "^8.57.0", |
114 | | - "typescript": "^4.4.3" |
| 105 | + "typescript": "^4.4.3", |
| 106 | + "vscode": "^1.1.37" |
115 | 107 | } |
116 | 108 | } |
0 commit comments