Skip to content

Commit a1b6d7d

Browse files
committed
0.0.2
1 parent 7a4cb01 commit a1b6d7d

File tree

2 files changed

+27
-15
lines changed

2 files changed

+27
-15
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+25-13
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,25 @@
22
"name": "json-lines-viewer",
33
"displayName": "JSON Lines Viewer",
44
"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+
},
1111
"engines": {
1212
"vscode": "^1.64.0"
1313
},
1414
"categories": [
1515
"Other"
1616
],
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+
],
1824
"activationEvents": [
1925
"onCommand:json-lines-viewer.preview"
2026
],
@@ -24,32 +30,38 @@
2430
{
2531
"command": "json-lines-viewer.preview",
2632
"title": "Open JSON Lines Preview",
27-
"icon":"$(json)"
33+
"icon": "$(json)"
2834
},
2935
{
3036
"command": "json-lines-viewer.next-line",
3137
"title": "JSONL Next Line",
32-
"icon":"$(arrow-down)",
38+
"icon": "$(arrow-down)",
3339
"enablement": "resourceScheme == jsonl"
3440
},
3541
{
3642
"command": "json-lines-viewer.previous-line",
3743
"title": "JSONL Previous Line",
38-
"icon":"$(arrow-up)",
44+
"icon": "$(arrow-up)",
3945
"enablement": "resourceScheme == jsonl"
4046
},
4147
{
4248
"command": "json-lines-viewer.go-to-line",
4349
"title": "JSONL Go to Line",
44-
"icon":"$(selection)",
50+
"icon": "$(selection)",
4551
"enablement": "resourceScheme == jsonl"
4652
}
4753
],
4854
"languages": [
4955
{
5056
"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+
]
5365
}
5466
],
5567
"menus": {

0 commit comments

Comments
 (0)