forked from addisonhall/ahdesign.antlers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "language-antlers",
"displayName": "Statamic Antlers Templates",
"description": "Antlers Template Language Syntax Highlighter",
"version": "0.0.4",
"icon": "icon.png",
"publisher": "ahdesign",
"engines": {
"vscode": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/addisonhall/ahdesign.antlers"
},
"keywords": [
"statamic",
"antlers",
"template"
],
"categories": [
"Languages"
],
"contributes": {
"languages": [
{
"id": "html",
"aliases": [
"HTML (Statamic Antlers)",
"antlers"
],
"extensions": [
".html",
".htm",
".xhtml"
],
"configuration": "./antlers.configuration.json"
}
],
"grammars": [
{
"language": "html",
"scopeName": "text.html.statamic",
"path": "./syntaxes/antlers.json"
}
]
},
"__metadata": {
"id": "24891be9-dd0f-4757-b3ed-37b7d841e0cf",
"publisherDisplayName": "ahdesign",
"publisherId": "807e9432-95bb-45bc-953b-9da19405f5c3"
}
}