-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.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
{
"name": "mojo-vscode",
"displayName": "Mojo🔥 Syntax",
"description": "Mojo🔥 syntax support for Visual Studio Code",
"version": "1.0.3",
"publisher": "Karsten7",
"repository": {
"type": "git",
"url": "https://github.com/Karsten7/mojo-vscode.git"
},
"bugs": {
"url": "https://github.com/Karsten7/mojo-vscode/issues"
},
"icon": "images/mojoFlame.png",
"galleryBanner": {
"color": "#000C4D",
"theme": "dark"
},
"license": "MIT",
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "mojo",
"aliases": [
"Mojo🔥",
"mojo"
],
"extensions": [
".mojo",
".🔥"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "mojo",
"scopeName": "source.mojo",
"path": "./syntaxes/mojo.tmLanguage.json"
}
],
"configurationDefaults": {
"[mojo]": {
"diffEditor.ignoreTrimWhitespace": false
}
}
}
}