-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.09 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
{
"name": "buzz",
"displayName": "buzz-language",
"description": "Language support for the buzz programming language",
"version": "0.5.0",
"publisher": "giann",
"license": "MIT",
"homepage": "https://github.com/buzz-language/code/blob/main/README.md",
"bugs": {
"url": "https://github.com/buzz-language/code/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/buzz-language/code.git"
},
"engines": {
"vscode": "^1.59.0"
},
"icon": "logo.png",
"galleryBanner": {
"color": "#221328",
"theme": "dark"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "buzz",
"aliases": [
"buzz",
"buzz"
],
"extensions": [
"buzz"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "buzz",
"scopeName": "source.buzz",
"path": "./syntaxes/buzz.tmLanguage.json",
"embeddedLanguages": {
"source.zig": "zig"
}
}
]
}
}