forked from jens1o/vscode-smarty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "smarty",
"displayName": "Smarty",
"description": "Syntax highlighting for the Smarty templating language.",
"version": "0.3.0",
"icon": "images/logo.png",
"publisher": "imperez",
"engines": {
"vscode": "^0.10.x"
},
"categories": [
"Languages",
"Snippets"
],
"keywords": [
"smarty",
"php",
"syntax",
"snippets"
],
"bugs": {
"url": "https://github.com/jens1o/vscode-smarty/issues"
},
"homepage": "https://github.com/jens1o/vscode-smarty/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/jens1o/vscode-smarty.git"
},
"contributes": {
"languages": [{
"id": "smarty",
"aliases": ["Smarty", "smarty"],
"extensions": [".tpl",".smarty",".html.smarty"],
"configuration": "./smarty.configuration.json"
}],
"grammars": [{
"language": "smarty",
"scopeName": "text.html.smarty",
"path": "./syntaxes/smarty.tmLanguage"
}],
"snippets": [
{
"language": "smarty",
"path": "./snippets/snippets.json"
}
]
}
}