forked from prika/vscode-twig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.34 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
{
"name": "twig",
"displayName": "Twig",
"description": "Syntax highlighting for PHP Twig",
"icon": "icon.svg",
"version": "1.0.2",
"publisher": "whatwedo",
"engines": {
"vscode": "^0.10.1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/whatwedo/vscode-twig/issues",
"email": "welove+vscode@whatwedo.ch"
},
"homepage": "https://github.com/whatwedo/vscode-twig",
"repository": {
"type": "git",
"url": "https://github.com/whatwedo/vscode-twig.git"
},
"categories": [
"Languages"
],
"keywords": [
"php",
"twig",
"html",
"template"
],
"galleryBanner": {
"color": "#BBCE29",
"theme": "light"
},
"contributes": {
"languages": [
{
"id": "twig",
"aliases": [
"HTML (Twig)",
"twig"
],
"extensions": [
".twig",
".html.twig"
],
"configuration": "./twig.configuration.json"
}
],
"grammars": [
{
"language": "twig",
"scopeName": "text.html.twig",
"path": "./syntaxes/twig.tmLanguage"
}
]
}
}