-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 869 Bytes
/
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
{
"name": "routeros-conf",
"displayName": "RouterOS configuration",
"description": "Syntax highlighting for RouterOS configuration",
"version": "1.0.0",
"publisher": "lautaportti",
"engines": {
"vscode": "^1.25.0"
},
"repository": {
"type": "GitHub",
"url": "https://github.com/dokai/routeros-conf"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "routeros",
"aliases": ["RouterOS config", "routeros"],
"extensions": [".conf"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "routeros",
"scopeName": "source.routeros",
"path": "./syntaxes/routeros.tmLanguage.json"
}]
},
"icon": "mikrotik.png"
}