-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
205 lines (205 loc) · 8.2 KB
/
package.json
File metadata and controls
205 lines (205 loc) · 8.2 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
199
200
201
202
203
204
205
{
"name": "pro-peek",
"displayName": "ProPeek",
"description": "Profiler app for OpenEdge ABL",
"version": "1.4.3",
"publisher": "BalticAmadeus",
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Snippets",
"Other",
"Visualization"
],
"keywords": [
"OpenEdge",
"Progress",
"Profiler",
"Performance",
"ABL"
],
"icon": "resources/PP_col.png",
"repository": {
"type": "git",
"url": "https://github.com/BalticAmadeus/ProPeek"
},
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "abl",
"extensions": [
".w",
".p",
".i",
".cls"
]
}
],
"snippets": [
{
"language": "abl",
"path": "oe.json"
}
],
"commands": [
{
"command": "vsc-profiler.profiler",
"title": "Show Profiler",
"when": "resourceExtname == .prof || resourceExtname == .out",
"icon": "$(open-preview)"
},
{
"command": "vsc-profiler.profilerFromTask",
"title": "Show Profiler"
},
{
"command": "vsc-profiler.compareProfilerFiles",
"title": "Compare Profilers",
"icon": "$(diff)"
}
],
"menus": {
"editor/context": [
{
"command": "vsc-profiler.profiler",
"when": "resourceExtname == .prof || resourceExtname == .out"
}
],
"editor/title": [
{
"when": "resourceExtname == .prof || resourceExtname == .out",
"command": "vsc-profiler.profiler",
"group": "navigation"
}
],
"explorer/context": [
{
"command": "vsc-profiler.profiler",
"group": "navigation",
"when": "resourceExtname == .prof || resourceExtname == .out"
},
{
"command": "vsc-profiler.compareProfilerFiles",
"group": "navigation",
"when": "resourceExtname == .prof || resourceExtname == .out"
}
]
},
"configuration": {
"title": "ProPeek",
"properties": {
"Telemetry.propeekTelemetry": {
"type": "boolean",
"default": true,
"description": "Enable telemetry",
"tags": [
"usesOnlineServices",
"telemetry"
]
}
}
},
"walkthroughs": [
{
"id": "pro-peek",
"title": "ProPeek",
"description": "An extension for Progress Openedge Profiler.",
"steps": [
{
"id": "telemetryNotice",
"title": "Telemetry notice for ProPeek",
"description": "How and What data is collected by this extension\n [Learn More](https://code.visualstudio.com/docs/editor/telemetry#:~:text=Visual%20Studio%20Code%20collects%20telemetry%20data%2C%20which%20is,slow%20start-up%20times%2C%20and%20to%20prioritize%20new%20features.)",
"media": {
"markdown": "resources/markdown/telemetry_notice.md"
}
},
{
"id": "DisableGlobalTelemetry",
"title": "How to disable all Telemetry",
"description": "Disabling all telemetry that VSCode sends.\n[Global Telemetry Setting](command:toSide:workbench.action.openSettings?%22@tag:telemetry%22)",
"media": {
"image": "resources/images/DisableGlobalTelemetry.png",
"altText": "Settings for disabling all telemetry sent by VSCode can be found in settings with @tag:telemetry tag"
}
},
{
"id": "DisableProPeekTelemetry",
"title": "How to disable only ProPeek Telemetry",
"description": "If global setting for telemetry is \"off\" then this setting is ignored and no telemetry is sent.\n[ProPeek Telemetry Setting](command:toSide:workbench.action.openSettings?%22Telemetry.propeekTelemetry%22)",
"media": {
"image": "resources/images/DisableProPeekTelemetry.png",
"altText": "Settings for disabling telemetry sent by OpenEdge ABL Formatter can be found in settings with @tag:telemetry tag"
}
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"package": "npx vsce package && npm run reset-telemetry-key",
"inject-telemetry-key": "replace-in-file \"__TELEMETRY_KEY__\" \"InstrumentationKey=5ee68587-b91d-41b6-ba02-4c65e5348310;IngestionEndpoint=https://northeurope-2.in.applicationinsights.azure.com/;LiveEndpoint=https://northeurope.livediagnostics.monitor.azure.com/;ApplicationId=b19474b9-14c6-4c39-b5ba-0c843036cbb0\" ./out/extension.js",
"reset-telemetry-key": "replace-in-file \"InstrumentationKey=5ee68587-b91d-41b6-ba02-4c65e5348310;IngestionEndpoint=https://northeurope-2.in.applicationinsights.azure.com/;LiveEndpoint=https://northeurope.livediagnostics.monitor.azure.com/;ApplicationId=b19474b9-14c6-4c39-b5ba-0c843036cbb0\" \"__TELEMETRY_KEY__\" ./out/extension.js",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node && npm run inject-telemetry-key",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"compile": "npm-run-all compile:*",
"watch": "npm-run-all -p watch:*",
"compile:extension": "tsc -p ./",
"compile:views": "webpack --mode development",
"watch:extension": "tsc -watch -p ./",
"watch:views": "webpack --watch --mode development",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"jestTest": "jest",
"vsce": "vsce package",
"postinstall": "npx patch-package"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "14.x",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/vscode": "^1.67.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vscode/test-electron": "^2.1.3",
"@vscode/vsce": "2.22.0",
"css-loader": "^6.8.1",
"eslint": "^8.14.0",
"glob": "^8.0.1",
"mocha": "^9.2.2",
"npm-run-all": "^4.1.5",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "^5.88.2",
"replace-in-file": "^6.3.5",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@monaco-editor/react": "4.6.0",
"@vscode/extension-telemetry": "^1.0.0",
"@mui/icons-material": "^7.3.8",
"@mui/material": "^7.3.8",
"esbuild": "^0.17.5",
"react": "^18.1.0",
"react-data-grid": "7.0.0-beta.13",
"react-dom": "^18.1.0",
"react-flame-graph": "^1.4.0",
"react-is": "^18.1.0",
"react-virtualized-auto-sizer": "^1.0.20",
"victory-axis": "^36.9.1",
"webpack-dev-server": "^4.15.1"
},
"overrides": {
"react-is": "^18.1.0"
}
}