-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
253 lines (253 loc) · 6.6 KB
/
Copy pathpackage.json
File metadata and controls
253 lines (253 loc) · 6.6 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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
{
"name": "al-navigator",
"displayName": "AL Navigator",
"description": "Create variables and parameters like a pro. Automatically select/insert startup object IDs in your launch.json file. Effortlessly navigate through AL files with intuitive shortcuts. Translate fields on hover and streamline report copying – all in one powerful extension.",
"version": "0.9.7",
"publisher": "wbrakowski",
"license": "MIT",
"url": "https://github.com/wbrakowski/al-navigator",
"icon": "resources/alpaca-icon_128_128.png",
"author": {
"name": "Waldemar Brakowski",
"email": "wbrakowski@gmail.com"
},
"keywords": [
"AL",
"AL Extensions",
"Business Central",
"CISDE",
"Dynamics NAV"
],
"repository": {
"type": "git",
"url": "https://github.com/wbrakowski/al-navigator"
},
"bugs": {
"email": "wbrakowski@gmail.com",
"url": "https://github.com/wbrakowski/AL-Navigator/issues"
},
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:al"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "al",
"extensions": [
".al"
],
"aliases": [
"AL"
]
}
],
"commands": [
{
"command": "extension.DataItem",
"title": "AL Navigator: Next DataItem (starting from top)"
},
{
"command": "extension.DataItemBottom",
"title": "AL Navigator: Next DataItem (starting from bottom)"
},
{
"command": "extension.Keys",
"title": "AL Navigator: Keys"
},
{
"command": "extension.Actions",
"title": "AL Navigator: Next Action"
},
{
"command": "extension.LastLocalVarLine",
"title": "AL Navigator: End of local variables"
},
{
"command": "extension.LastGlobalVarLine",
"title": "AL Navigator: End of global variables"
},
{
"command": "extension.ShowMSTranslation",
"title": "AL Navigator: Show Microsoft Translation (English -> Target Language)"
},
{
"command": "extension.TranslateAndCopyToClipboard",
"title": "AL Navigator: Show translation and copy to clipboard (English -> Target Language)"
},
{
"command": "extension.ShowMSTranslationReverse",
"title": "AL Navigator: Show Microsoft Translation (Target Language -> English)"
},
{
"command": "extension.StartCreateReportDialog",
"title": "AL Navigator: Create a new report"
},
{
"command": "extension.analyzeReport",
"title": "AL Navigator: Analyze and Optimize Report"
},
{
"command": "extension.selectStartupObjectId",
"title": "AL Navigator: Select Startup Object ID in launch.json"
},
{
"command": "extension.clearObjectCache",
"title": "AL Navigator: Clear Object Cache"
},
{
"command": "extension.insertTranslationFromComment",
"title": "AL Navigator: Insert translation from comment into xlf file"
},
{
"command": "extension.renameALNavigator",
"title": "AL Navigator: Rename report dataitem column"
}
],
"keybindings": [
{
"command": "extension.DataItem",
"key": "ctrl+alt+d"
},
{
"command": "extension.DataItemBottom",
"key": "shift+alt+d"
},
{
"command": "extension.Keys",
"key": "ctrl+alt+k"
},
{
"command": "extension.Actions",
"key": "ctrl+alt+a"
},
{
"command": "extension.LastLocalVarLine",
"key": "ctrl+alt+l"
},
{
"command": "extension.LastGlobalVarLine",
"key": "ctrl+alt+g"
}
],
"configuration": [
{
"type": "object",
"title": "AL Navigator Configuration",
"properties": {
"alNavigator.ignoreALPrefix": {
"type": "string",
"default": "",
"description": "Remove prefix from suggested variable names."
},
"alNavigator.ignoreALSuffix": {
"type": "string",
"default": "",
"description": "Remove suffix from suggested variable names."
},
"alNavigator.translationTargetLanguage": {
"enum": [
"cs-cz",
"da-dk",
"de-at",
"de-ch",
"de-de",
"en-au",
"en-ca",
"en-gb",
"en-nz",
"en-us",
"es-es_tradnl",
"es-mx",
"fi-fi",
"fr-be",
"fr-ca",
"fr-ch",
"fr-fr",
"is-is",
"it-ch",
"it-it",
"nb-no",
"nl-be",
"nl-nl",
"ru-ru",
"sv-se"
],
"type": "string",
"default": "de-de",
"description": "Defines the target language for translation functionalities."
},
"alNavigator.maxNoOfShownTranslations": {
"type": "integer",
"default": 1,
"minimum": 1,
"description": "Maximum number of shown translations when using translation functionalities."
},
"alNavigator.enableHoverProviders": {
"type": "boolean",
"default": false,
"description": "Enable Hover Providers (requires reload). AL Navigator shows the translations for the target language on hover for symbols (field names etc.)",
"scope": "application"
},
"alNavigator.updateAllLaunchConfigurations": {
"type": "boolean",
"default": false,
"description": "When enabled, updates all configurations in launch.json without prompting. When disabled, you can select which specific configurations to update.",
"scope": "resource"
},
"alNavigator.updateAllLaunchJsons": {
"type": "boolean",
"default": false,
"description": "When enabled, automatically updates all launch.json files in the workspace without prompting for selection. When disabled, you can choose which launch.json files to update.",
"scope": "resource"
},
"alNavigator.enableTelemetry": {
"type": "boolean",
"default": true,
"description": "Enable anonymous telemetry to help improve AL Navigator. Collects usage statistics and error reports. No personal information or code is transmitted.",
"scope": "application"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.0.0",
"@types/vscode": "^1.83.0",
"glob": "^8.1.0",
"mocha": "^10.8.2",
"tslint": "^5.12.1",
"vscode-test": "^1.6.0"
},
"extensionDependencies": [
"andrzejzwierzchowski.al-code-outline"
],
"dependencies": {
"-": "^0.0.1",
"@vscode/extension-telemetry": "^0.9.0",
"adm-zip": "^0.5.10",
"axios": "^1.15.0",
"entities": "^3.0.1",
"fs-extra": "^11.1.1",
"html": "^1.0.0",
"jsonc-parser": "^3.3.1",
"open": "^8.2.0",
"typescript": "^4.5.2",
"vsce": "^2.15.0"
}
}