-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 863 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": "adif-syntax-highlighting",
"displayName": "ADIF Syntax Highlighting",
"description": "ADIF radio amateur log files syntax highlighting support",
"publisher": "filipjonckers",
"icon": "icon.png",
"pricing": "Free",
"version": "1.0.4",
"repository": "https://github.com/filipjonckers/adif-syntax-highlighting-vscode",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Data Science",
"Formatters",
"Visualization"
],
"contributes": {
"languages": [{
"id": "adif",
"aliases": ["ADIF", "adif", "n1mm", "n1mm+", "arrl", "ham", "radio amateur", "contest"],
"extensions": [".adif",".adi"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "adif",
"scopeName": "source.adif",
"path": "./syntaxes/adif.tmLanguage.json"
}]
}
}