-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.36 KB
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
{
"name": "matcha-lang",
"displayName": "Matcha Language Support",
"description": "Syntax highlighting, comments, brackets, and file icons for Matcha.",
"version": "0.1.0",
"publisher": "mario-nowak",
"license": "MIT",
"preview": true,
"icon": "images/matcha.png",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"matcha",
"programming-language",
"syntax-highlighting"
],
"repository": {
"type": "git",
"url": "https://github.com/mario-nowak/matcha.git",
"directory": "tooling/ide-extensions/vs-code-extension"
},
"homepage": "https://github.com/mario-nowak/matcha",
"bugs": {
"url": "https://github.com/mario-nowak/matcha/issues"
},
"galleryBanner": {
"color": "#2f855a",
"theme": "dark"
},
"contributes": {
"languages": [
{
"id": "matcha",
"aliases": [
"Matcha",
"matcha"
],
"extensions": [
".mt",
".matcha"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/matcha-light.svg",
"dark": "./icons/matcha-dark.svg"
}
}
],
"grammars": [
{
"language": "matcha",
"scopeName": "source.matcha",
"path": "./syntaxes/matcha.tmLanguage.json"
}
]
}
}