|
2 | 2 | "name": "json-lines-viewer",
|
3 | 3 | "displayName": "JSON Lines Viewer",
|
4 | 4 | "description": "View each line of JSON Lines file in json format",
|
5 |
| - "version": "0.0.1", |
6 |
| - "publisher": "lehoanganh298", |
7 |
| - "repository": { |
8 |
| - "type": "git", |
9 |
| - "url": "https://github.com/lehoanganh298/json-lines-viewer.git" |
10 |
| - }, |
| 5 | + "version": "0.0.2", |
| 6 | + "publisher": "lehoanganh298", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "https://github.com/lehoanganh298/json-lines-viewer.git" |
| 10 | + }, |
11 | 11 | "engines": {
|
12 | 12 | "vscode": "^1.64.0"
|
13 | 13 | },
|
14 | 14 | "categories": [
|
15 | 15 | "Other"
|
16 | 16 | ],
|
17 |
| - "keywords": ["json lines", "jsonl", "json line", "jsonl viewer", "jsonl preview"], |
| 17 | + "keywords": [ |
| 18 | + "json lines", |
| 19 | + "jsonl", |
| 20 | + "json line", |
| 21 | + "jsonl viewer", |
| 22 | + "jsonl preview" |
| 23 | + ], |
18 | 24 | "activationEvents": [
|
19 | 25 | "onCommand:json-lines-viewer.preview"
|
20 | 26 | ],
|
|
24 | 30 | {
|
25 | 31 | "command": "json-lines-viewer.preview",
|
26 | 32 | "title": "Open JSON Lines Preview",
|
27 |
| - "icon":"$(json)" |
| 33 | + "icon": "$(json)" |
28 | 34 | },
|
29 | 35 | {
|
30 | 36 | "command": "json-lines-viewer.next-line",
|
31 | 37 | "title": "JSONL Next Line",
|
32 |
| - "icon":"$(arrow-down)", |
| 38 | + "icon": "$(arrow-down)", |
33 | 39 | "enablement": "resourceScheme == jsonl"
|
34 | 40 | },
|
35 | 41 | {
|
36 | 42 | "command": "json-lines-viewer.previous-line",
|
37 | 43 | "title": "JSONL Previous Line",
|
38 |
| - "icon":"$(arrow-up)", |
| 44 | + "icon": "$(arrow-up)", |
39 | 45 | "enablement": "resourceScheme == jsonl"
|
40 | 46 | },
|
41 | 47 | {
|
42 | 48 | "command": "json-lines-viewer.go-to-line",
|
43 | 49 | "title": "JSONL Go to Line",
|
44 |
| - "icon":"$(selection)", |
| 50 | + "icon": "$(selection)", |
45 | 51 | "enablement": "resourceScheme == jsonl"
|
46 | 52 | }
|
47 | 53 | ],
|
48 | 54 | "languages": [
|
49 | 55 | {
|
50 | 56 | "id": "jsonl",
|
51 |
| - "extensions": [".jsonl",".jl"], |
52 |
| - "aliases": ["JSON Lines", "jsonl"] |
| 57 | + "extensions": [ |
| 58 | + ".jsonl", |
| 59 | + ".jl" |
| 60 | + ], |
| 61 | + "aliases": [ |
| 62 | + "JSON Lines", |
| 63 | + "jsonl" |
| 64 | + ] |
53 | 65 | }
|
54 | 66 | ],
|
55 | 67 | "menus": {
|
|
0 commit comments