-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 992 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
32
33
34
35
{
"name": "GDLSyntaxHighlighter",
"displayName": "GDL Syntax Highlighter for VSCode",
"description": "GDL Syntax Highlighter for Visual Studio Code",
"publisher": "mihanahtigal",
"version": "0.0.2",
"license": "MIT",
"icon": "images/icons8-archicad-256.png",
"engines": {
"vscode": ">=0.9.0-pre.1"
},
"homepage": "https://github.com/malamalca/vscode-gdl-syntax-highlighter",
"repository": {
"type": "git",
"url": "https://github.com/malamalca/vscode-gdl-syntax-highlighter"
},
"bugs": {
"url": "https://github.com/malamalca/vscode-gdl-syntax-highlighter/issues"
},
"contributes": {
"languages": [{
"id": "gdl",
"aliases": ["GDL"],
"extensions": [".gdl"]
}],
"grammars": [{
"language": "gdl",
"scopeName": "text.gdl",
"path": "./syntaxes/gdl.tmLanguage"
}]
},
"__metadata": {
"publisherDisplayName": "Miha Nahtigal"
}
}