-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "vscode-choral",
"displayName": "Choral Language Extension",
"description": "Support for the Choral programming language.",
"version": "0.0.1",
"license": "MIT",
"icon": "./images/icon.png",
"publisher": "choral",
"engines": {
"vscode": "^1.76.0"
},
"contributors": [
{
"name": "Fabrizio Montesi",
"email": "[email protected]",
"url": "https://www.fabriziomontesi.com"
},
{
"name": "Lovro Lugović",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/choral-lang/vscode-choral"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "choral",
"aliases": ["Choral", "choral"],
"extensions": [".ch", ".chh"],
"configuration": "./language-configuration.json",
"icon": {
"light": "./images/icon-small.png",
"dark": "./images/icon-small.png"
}
}
],
"grammars": [
{
"language": "choral",
"scopeName": "source.choral",
"path": "./syntaxes/choral.tmLanguage.json"
}
],
"configurationDefaults": {
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "role.type.choral",
"settings": {
"foreground": "#ff8000"
}
}
]
}
}
}
}