-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 929 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 929 Bytes
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
{
"name": "ez-language-support",
"displayName": "ez language support",
"description": "support for ez programming language",
"version": "0.0.1",
"icon": "images/ez.png",
"publisher": "OmarBelghaouti",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/Omar-Belghaouti/vscode-ez"
},
"contributes": {
"languages": [
{
"id": "ez",
"aliases": [
"ez",
"ez"
],
"extensions": [
".ez",
".e"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "images/ez.png",
"dark": "images/ez.png"
}
}
],
"grammars": [
{
"language": "ez",
"scopeName": "source.ez",
"path": "./syntaxes/ez.tmLanguage.json"
}
]
}
}