-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 943 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": "vscode-zylab-ftsql-highligher",
"displayName": "ZyLAB ONE Search Language",
"description": "Syntax highlighting for ZyLab ONE search language",
"version": "1.0.0",
"publisher": "CSI-Group",
"engines": {
"vscode": "^1.0.0"
},
"keywords": ["ZyLab", "zlftsql"],
"repository": {
"type": "git",
"url": "https://github.com/CSI-Group/vscode-zylab-ftsql-highligher.git"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "zylab-ftsql",
"aliases": ["ZyLAB ONE Search Language", "zylab-ftsql"],
"extensions": [".zlftsql"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "zylab-ftsql",
"scopeName": "source.zlftsql",
"path": "./syntaxes/zylab-ftsql.tmLanguage.json"
}]
}
}