-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.1 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
{
"name": "zephir",
"version": "1.6.3",
"displayName": "Zephir for VSCode",
"description": "Zephir Language syntax highlighting and snippets for VSCode.",
"author": "Zephir Team",
"contributors": [
{
"name" : "Serghei Iakovlev",
"email" : "serghei@phalcon.io"
}
],
"license": "SEE LICENSE IN LICENSE",
"publisher": "zephir-lang",
"icon": "images/zephir.png",
"galleryBanner": {
"color": "#272729",
"theme": "dark"
},
"readmeFilename": "README.md",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"language",
"zephir",
"highlight",
"syntax",
"snippets"
],
"homepage": "https://github.com/zephir-lang/zephir-vscode",
"repository": {
"type": "git",
"url": "https://github.com/zephir-lang/zephir-vscode.git"
},
"bugs": {
"url": "https://github.com/zephir-lang/zephir-vscode/issues"
},
"qna": "https://github.com/zephir-lang/zephir-vscode/issues",
"markdown": "github",
"badges": [
{
"url": "https://img.shields.io/badge/discord-zephir-blue.svg?logo=slack",
"href": "https://discord.gg/PNFsSsr",
"description": "Join us on Discord"
}
],
"contributes": {
"languages": [
{
"id": "zephir",
"aliases": [
"Zephir",
"zephir",
"zep"
],
"extensions": [
".zep"
],
"configuration": "./language-configuration.json"
}
],
"snippets": [
{
"language": "zephir",
"path": "./snippets/zephir.json"
}
],
"grammars": [
{
"language": "zephir",
"scopeName": "source.zephir",
"path": "./syntaxes/zephir.tmLanguage.json"
}
]
}
}