-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 820 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 820 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": "cmg-syntax",
"displayName": "CMG Syntax",
"description": "CMG simulation files syntax highlighting",
"repository": "https://github.com/TiagoCAAmorim/cmg-syntax",
"publisher": "tiagocaamorim",
"version": "0.0.6",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Programming Languages"
],
"icon": "logo.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"keywords": [
"cmg",
"imex",
"gem",
"simulator"
],
"contributes": {
"languages": [{
"id": "cmg",
"aliases": ["CMG", "cmg"],
"extensions": [".dat",".inc"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "cmg",
"scopeName": "source.cmg",
"path": "./syntaxes/cmg.tmLanguage.json"
}]
}
}