-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 916 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 916 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
{
"name": "Eve",
"displayName": "Eve",
"description": "Support for the Eve language in Visual Studio Code",
"version": "0.2.4",
"publisher": "witheve",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Languages"
],
"repository": {
"url": "https://github.com/witheve/vscode-eve-mode.git"
},
"contributes": {
"languages": [
{
"id": "Eve",
"aliases": [
"Eve"
],
"extensions": [
"eve"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "Eve",
"scopeName": "eve",
"path": "./syntaxes/eve.tmLanguage.json"
}
]
}
}