-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "mare-lang",
"displayName": "mare lang",
"description": "mare script support for VS Code",
"version": "1.4.0",
"publisher": "minssy",
"repository": "https://github.com/minssy/m-lang-helper.git",
"license": "MIT",
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Programming Languages", "Snippets"
],
"keywords": [ "mare", "mare-language", "mre", "script", "m-interpreter" ],
"contributes": {
"languages": [
{
"id": "mare",
"aliases": [
"Mare",
"mare"
],
"extensions": [
".mre"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "mare",
"scopeName": "source.mre",
"path": "./syntaxes/mare.tmLanguage.json"
}
],
"snippets": [
{
"language": "mare",
"path": "./snippets.json"
}
]
}
}