-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
192 lines (192 loc) · 4.11 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
186
187
188
189
190
191
192
{
"name": "sqf",
"displayName": "SQF Language",
"description": "Full SQF Language support for VS Code.",
"icon": "img/logo.png",
"version": "2.0.3",
"publisher": "Armitxes",
"galleryBanner": {
"color": "#647e99",
"theme": "dark"
},
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/Armitxes/VSCode_SQF/issues",
"email": "[email protected]"
},
"homepage": "https://armitxes.net/Projects/VSCodeSQF/",
"repository": {
"type": "git",
"url": "https://github.com/Armitxes/VSCode_SQF.git"
},
"categories": [
"Programming Languages",
"Snippets",
"Themes",
"Linters",
"Debuggers"
],
"activationEvents": [
"onLanguage:sqf",
"onLanguage:ext",
"onDebugResolve:sqf"
],
"main": "./env/client/init",
"engines": {
"vscode": "^1.26.0"
},
"contributes": {
"breakpoints": [
{
"language": "sqf"
}
],
"commands": [
{
"command": "sqf.browseCommandDocs",
"title": "SQF: Open Command Documentation",
"category": "Documentation"
}
],
"configuration": {
"type": "object",
"title": "SQF Language",
"properties": {
"sqf.enableOFP": {
"type": "boolean",
"default": true,
"description": "Enable commands introduced with Operation Flashpoint"
},
"sqf.enableTOH": {
"type": "boolean",
"default": false,
"description": "Enable commands introduced with Take on Helicopter"
},
"sqf.enableARMA": {
"type": "boolean",
"default": true,
"description": "Enable commands introduced with ArmA (1)"
},
"sqf.enableARMA2": {
"type": "boolean",
"default": true,
"description": "Enable commands introduced with ArmA 2"
},
"sqf.enableARMA3": {
"type": "boolean",
"default": true,
"description": "Enable commands introduced with ArmA 3"
},
"sqf.enableCBA": {
"type": "boolean",
"default": false,
"description": "Enable CBA (Community Based Addons) library"
},
"sqf.enableACE3": {
"type": "boolean",
"default": false,
"description": "Enable ACE3 library"
},
"sqf.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
}
}
},
"configurationDefaults": {
"[sqf]": {
"editor.quickSuggestions": true,
"editor.tabSize": 4,
"editor.insertSpaces": false,
"editor.detectIndentation": true,
"editor.trimAutoWhitespace": true,
"editor.autoClosingBrackets": "always"
},
"[ext]": {
"editor.quickSuggestions": true,
"editor.tabSize": 4,
"editor.insertSpaces": false,
"editor.detectIndentation": true,
"editor.trimAutoWhitespace": true,
"editor.autoClosingBrackets": "always"
}
},
"debuggers": [
{
"type": "sqf",
"label": "SQF Debugger",
"program": "./env/client/provider/debugAdapter.js",
"runtime": "node"
}
],
"grammars": [
{
"language": "sqf",
"scopeName": "source.sqf",
"path": "./syntaxes/sqf.min.json"
},
{
"language": "ext",
"scopeName": "description.ext",
"path": "./syntaxes/ext.min.json"
}
],
"languages": [
{
"id": "sqf",
"aliases": [
"SQF",
"sqf",
"Status Quo Function"
],
"extensions": [
".sqf",
".sqm"
],
"configuration": "./configs/sqf.configuration.json"
},
{
"id": "ext",
"aliases": [
"Arma header file"
],
"extensions": [
".ext",
".hpp"
],
"configuration": "./configs/ext.configuration.json"
}
],
"menus": {
"editor/context": [
{
"command": "sqf.browseCommandDocs",
"when": "editorHasSelection && editorLangId == 'sqf'"
}
],
"explorer/context": []
},
"snippets": [
{
"language": "sqf",
"path": "./snippets/sqf.json"
}
],
"themes": [
{
"label": "[SQF] Dark Theme",
"uiTheme": "vs-dark",
"path": "./themes/sqf.tmTheme"
}
]
},
"scripts": {
"update-vscode": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"vscode-languageclient": "^4.1.4",
"vscode-languageserver": "^4.1.3"
}
}