-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
185 lines (185 loc) · 6.12 KB
/
package.json
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
{
"name": "al-object-helper",
"publisher": "DSaladin",
"displayName": "AL Object Helper",
"description": "Quick and easy access to any al object in your project",
"author": {
"email": "[email protected]",
"name": "Dominic Saladin"
},
"license": "MIT",
"version": "2.3.9",
"icon": "Images/ALObjectHelper_Small.png",
"engines": {
"vscode": "^1.86.0"
},
"homepage": "https://github.com/DSaladinCH/al-object-helper/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/DSaladinCH/al-object-helper.git"
},
"bugs": {
"url": "https://github.com/DSaladinCH/al-object-helper/issues",
"email": "[email protected]"
},
"funding": [
{
"type": "Buy Me a Coffee",
"url": "https://www.buymeacoffee.com/dsaladin"
}
],
"galleryBanner": {
"color": "#1e65d9",
"theme": "dark"
},
"categories": [
"Programming Languages",
"Visualization",
"Other"
],
"keywords": [
"AL",
"AL Extension",
"Microsoft Business Central",
"Quick Access",
"Event Publishers",
"Event Subscribers",
"Events",
"Definitions",
"Hover"
],
"activationEvents": [
"workspaceContains:.alpackages",
"onLanguage:al"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "al-object-helper.openALObject",
"title": "AL Helper: Open AL Object"
},
{
"command": "al-object-helper.openALObjectOfApp",
"title": "AL Helper: Open AL Object of App"
},
{
"command": "al-object-helper.copyEvent",
"title": "AL Helper: Copy Event"
},
{
"command": "al-object-helper.jumpToEventSubscriber",
"title": "AL Helper: Jump to local Event Subscriber"
},
{
"command": "al-object-helper.openExtendedObject",
"title": "AL Helper: Open extended Object"
},
{
"command": "al-object-helper.showObjectExtension",
"title": "AL Helper: Show Extensions"
},
{
"command": "al-object-helper.reload",
"title": "AL Helper: Reload"
},
{
"command": "al-object-helper.rereadApp",
"title": "AL Helper: Reread App"
},
{
"command": "al-object-helper.checkLicense",
"title": "AL Helper: Check license"
}
],
"keybindings": [
{
"command": "al-object-helper.openALObject",
"key": "Ctrl+Alt+O"
},
{
"command": "al-object-helper.copyEvent",
"key": "Shift+Alt+E"
}
],
"menus": {
"commandPalette": [
{
"command": "al-object-helper.openExtendedObject",
"when": "al-object-helper.isALExtension"
},
{
"command": "al-object-helper.showObjectExtension",
"when": "al-object-helper.hasALExtensions"
}
]
},
"configuration": {
"type": "object",
"title": "AL Object Helper",
"properties": {
"alObjectHelper.printDebug": {
"type": "boolean",
"default": false,
"title": "Print Debug Messages",
"description": "Print debug messages in the output channel",
"scope": "machine-overridable"
},
"alObjectHelper.suppressAutoReloadObjects": {
"type": "boolean",
"default": true,
"title": "Suppress auto reload Objects",
"description": "Suppress the auto reload of objects when using a al object helper search command (Requires a fast CPU if deactivated)",
"scope": "machine-overridable"
},
"alObjectHelper.mode": {
"enum": [
"Normal",
"Performance",
"Hyper Performance"
],
"description": "Specifies in which mode AL Object Helper should run. Normal = Read everything, Performance = Only read necessary files on startup, but read additional informations on certain commands, Hyper Performance = Only read necessary files on startup",
"scope": "resource",
"default": "Performance"
},
"alObjectHelper.onlyShowLocalFiles": {
"type": "boolean",
"default": false,
"title": "Only show local files",
"description": "Only show local files when running the command \"Open AL Object\""
}
}
}
},
"moduleDirectories": [
"rootDir"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/line-reader": "0.0.34",
"@types/mocha": "^10.0.6",
"@types/node": "^18.19.18",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"glob": "^8.1.0",
"mocha": "^10.3.0",
"typescript": "^4.9.5"
},
"dependencies": {
"compare-versions": "^6.1.0",
"fs-extra": "^11.2.0",
"jszip": "^3.10.1",
"line-reader": "^0.4.0"
}
}