-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.65 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.65 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
{
"name": "json-string-render",
"displayName": "JSON String Viewer",
"description": "Render JSON strings with real newlines. Preview \\n \\t escape sequences as formatted text. Auto-activating JSON viewer panel for API responses, CRM exports, logs.",
"version": "0.1.1",
"publisher": "ultrawaver",
"author": {
"name": "ultrawaver",
"url": "https://github.com/ultrawaver"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ultrawaver/json-string-render"
},
"bugs": {
"url": "https://github.com/ultrawaver/json-string-render/issues"
},
"homepage": "https://github.com/ultrawaver/json-string-render#readme",
"engines": {
"vscode": "^1.85.0"
},
"categories": ["Formatters", "Visualization", "Other"],
"keywords": [
"json",
"json viewer",
"json preview",
"json formatter",
"json newline",
"json escape",
"json string",
"json readable",
"json pretty",
"newline",
"escape sequence",
"string viewer",
"api response",
"crm export",
"log viewer"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"activationEvents": [
"onLanguage:json"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "json-string-viewer.toggle",
"title": "JSON String Viewer: Toggle Panel"
}
]
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"typescript": "^5.3.0",
"@vscode/vsce": "^2.22.0"
}
}