-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
133 lines (133 loc) · 3.85 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
{
"name": "mdal",
"displayName": "mdAL",
"description": "Language Extension adding support for mdAL",
"keywords": [
"mdAL",
"AL",
"Dynamics 365 Business Central",
"ERP",
"Domain-specific Language",
"DSL"
],
"icon": "images/icon.png",
"version": "0.4.1",
"publisher": "joneug",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mdal-lang/mdal-vscode"
},
"bugs": {
"url": "https://github.com/mdal-lang/mdal-vscode/issues"
},
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:mdal",
"onCommand:mdal.generate.proxy",
"onCommand:mdal.clean.proxy"
],
"main": "out/extension",
"contributes": {
"languages": [
{
"id": "mdal",
"aliases": [
"mdAL",
"mdal"
],
"extensions": [
".mdal"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "mdal",
"scopeName": "source.mdal",
"path": "./syntaxes/mdal.tmLanguage.json"
}
],
"commands": [
{
"command": "mdal.generate.proxy",
"title": "Generate AL Code",
"category": "mdAL",
"when": "editorLangId == mdal"
},
{
"command": "mdal.clean.proxy",
"title": "Clean",
"category": "mdAL",
"when": "editorLangId == mdal"
},
{
"command": "mdal.loadSymbolReferences.proxy",
"title": "Load symbol references",
"category": "mdAL",
"when": "editorLangId == mdal"
}
],
"menus": {
"editor/context": [
{
"command": "mdal.clean.proxy",
"group": "mdalGenerators@1",
"when": "resourceLangId == mdal"
},
{
"command": "mdal.generate.proxy",
"group": "mdalGenerators@2",
"when": "resourceLangId == mdal"
}
]
},
"configuration": {
"type": "object",
"title": "mdAL",
"properties": {
"mdal.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
},
"mdal.ls.log": {
"scope": "window",
"type": "boolean",
"default": false,
"description": "Shows logs of the language server. This setting is only active in debug mode."
}
}
}
},
"devDependencies": {
"@types/node": "^14.14.7",
"ts-loader": "^8.0.11",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"@types/vscode": "^1.51.0",
"vsce": "^1.81.1",
"vscode-languageclient": "^6.1.3"
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./"
}
}