-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 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
{
"name": "roc-lang-support",
"displayName": "Roc-lang Support (unofficial/community)",
"description": "Syntax highlighting for: https://www.roc-lang.org",
"icon": "icon.png",
"repository": {
"url": "https://github.com/benjamin-thomas/vscode-roc-lang-extension"
},
"publisher": "benjamin-thomas",
"version": "0.0.4",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "roc",
"aliases": [
"Roc",
"roc"
],
"extensions": [
".roc"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "icon.png",
"dark": "icon.png"
}
}
],
"grammars": [
{
"language": "roc",
"scopeName": "source.roc",
"path": "./syntaxes/roc.tmLanguage.json"
}
]
},
"__metadata": {
"id": "cfd5cc89-157c-4198-b9bd-51a03188e6b9",
"publisherDisplayName": "Benjamin Thomas",
"publisherId": "1c69fdf3-9c4a-48af-bd62-9dad1a2e6a00",
"isPreReleaseVersion": false
}
}