forked from Armitxes/VSCode_SQF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 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
{
"name": "sqf",
"displayName": "SQF Language",
"description": "Full SQF Language support for VS Code.",
"icon": "img/logo.svg",
"version": "0.3.4",
"publisher": "Armitxes",
"galleryBanner": {
"color": "#6600CC",
"theme": "dark"
},
"license": "LICENSE.htm",
"bugs": {
"url": "https://github.com/Armitxes/VSCode_SQF/issues",
"email": "4rmitxes@gmail.com"
},
"homepage": "https://forums.bistudio.com/topic/182917-vs-code-sqf-visual-studio-code-sqf-language-release-arma-3-arma-2/",
"repository": {
"type": "git",
"url": "https://github.com/Armitxes/VSCode_SQF.git"
},
"categories": ["Languages","Snippets"],
"engines": {
"vscode": "0.10.x"
},
"contributes": {
"languages": [{
"id": "sqf",
"aliases": ["SQF", "sqf","Status Quo Function"],
"extensions": [".sqf",".sqm"]
}],
"grammars": [{
"language": "sqf",
"scopeName":"source.sqf",
"path":"./syntaxes/sqf.json"
}],
"snippets": [{
"language": "sqf",
"path": "./snippets/sqf.json"
}]
}
}