-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 778 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 778 Bytes
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": "cdata-sql-highlighter",
"displayName": "CDATA SQL Highlighter",
"description": "Syntax Highlighting for embedded SQL inside CDATA tags. ",
"version": "0.0.2",
"publisher": "MarcinKotynia",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.81.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/kotynia/vscode-cdata-sql-highlighter"
},
"contributes": {
"languages": [{
"id": "xml",
"aliases": ["cdata", "cdata sql", "xml"],
"extensions": [".xml"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "xml",
"scopeName": "source.xml",
"path": "./syntaxes/xml.tmLanguage.json"
}]
}
}