-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
198 lines (198 loc) · 5.24 KB
/
package.json
File metadata and controls
198 lines (198 loc) · 5.24 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
"name": "lana",
"displayName": "Apex Log Analyzer",
"version": "1.18.1",
"description": "Salesforce Apex Debug Log Analyzer: Blazing-fast VS Code extension for Salesforce. Visualize and debug Apex logs with interactive flame charts, dynamic call trees, and detailed SOQL/DML breakdowns. Identify performance bottlenecks, gain deep transaction insights and optimize slow Apex.",
"keywords": [
"analysis",
"apex",
"apexlog",
"apex logs",
"apex performance",
"analyzer",
"dml",
"debug",
"debug log",
"debug logs",
"debugging",
"developer tools",
"flamegraph",
"log",
"log analyzer",
"log profiler",
"log profiling",
"performance",
"performance analyzer",
"performance profiler",
"performance profiling",
"profiler",
"profiling",
"soql"
],
"type": "module",
"main": "out/Main.js",
"icon": "certinia-icon-color.png",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"publisher": "FinancialForce",
"author": "",
"license": "SEE LICENSE IN LICENSE.txt",
"repository": {
"type": "git",
"url": "https://github.com/certinia/debug-log-analyzer.git"
},
"engines": {
"vscode": "^1.100.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:apexlog"
],
"contributes": {
"commands": [
{
"command": "lana.retrieveLogFile",
"title": "Log: Retrieve Apex Log And Show Analysis",
"icon": "./certinia-icon-color.png"
},
{
"command": "lana.showLogAnalysis",
"title": "Log: Show Apex Log Analysis",
"icon": "./certinia-icon-color.png"
}
],
"languages": [
{
"id": "apexlog",
"aliases": [
"ApexLog",
"DebugLog"
],
"extensions": [
".log",
".txt"
],
"firstLine": "^\\d\\d.\\d.+?APEX_CODE,\\w.+$"
}
],
"menus": {
"commandPalette": [
{
"command": "lana.showLogAnalysis",
"when": "resourceLangId == apexlog"
}
],
"editor/context": [
{
"command": "lana.showLogAnalysis",
"when": "resourceLangId == apexlog"
}
],
"editor/title/context": [
{
"command": "lana.showLogAnalysis",
"when": "resourceLangId == apexlog",
"group": "lana"
}
],
"editor/title/run": [
{
"command": "lana.showLogAnalysis",
"when": "resourceLangId == apexlog",
"group": "lana"
}
],
"explorer/context": [
{
"command": "lana.showLogAnalysis",
"when": "resourceLangId == apexlog"
}
]
},
"configuration": {
"type": "object",
"title": "Apex Log Analyzer",
"properties": {
"lana.timeline.colors": {
"type": "object",
"default": {
"Code Unit": "#88AE58",
"Workflow": "#51A16E",
"Method": "#2B8F81",
"Flow": "#337986",
"DML": "#285663",
"SOQL": "#5D4963",
"System Method": "#5C3444"
},
"properties": {
"Code Unit": {
"type": "string",
"default": "#88AE58",
"description": "Hex color for Code Unit timeline events."
},
"Workflow": {
"type": "string",
"default": "#51A16E",
"description": "Hex color for Workflow timeline events."
},
"Method": {
"type": "string",
"default": "#2B8F81",
"description": "Hex color for Method timeline events."
},
"Flow": {
"type": "string",
"default": "#337986",
"description": "Hex color for Flow timeline events."
},
"DML": {
"type": "string",
"default": "#285663",
"description": "Hex color for DML timeline events."
},
"SOQL": {
"type": "string",
"default": "#5D4963",
"description": "Hex color for SOQL timeline events."
},
"System Method": {
"type": "string",
"default": "#5C3444",
"description": "Hex color for System Method timeline events."
}
},
"title": "Timeline Event Colors",
"description": "Colors used for each event type on the Timeline",
"additionalProperties": false
},
"lana.timeline.experimental.timeline": {
"title": "Enable the new experimental Timeline",
"type": "boolean",
"default": false,
"description": "Enables the faster experimental Timeline",
"tags": [
"experimental"
]
}
}
}
},
"scripts": {
"vscode:prepublish": "rm -rf out && pnpm -w run build"
},
"dependencies": {
"@apexdevtools/apex-parser": "^4.4.0",
"@apexdevtools/sfdx-auth-helper": "^2.1.0",
"@salesforce/apex-node": "^1.6.2"
},
"devDependencies": {
"@types/node": "~22.16.3",
"@types/vscode": "~1.99.1",
"concurrently": "^9.2.0",
"typescript": "^5.9.2"
}
}