forked from xvxx/vscode-ldpl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 KB
/
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
36
37
38
39
40
41
42
43
44
45
{
"name": "ldpl-vsc-extension",
"displayName": "LDPL VSC Highlight Extension",
"description": "The LDPL VSC Highlight Extension is a Visual Studio Code syntax highlighting extesion for the LDPL programming language.",
"version": "0.12.0",
"publisher": "Lartu",
"repository": "https://github.com/ldpl-developers/ldpl-vsc-extension",
"icon": "icon.png",
"galleryBanner.color": "#ffffff",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "ldpl",
"aliases": [
"LDPL",
"ldpl"
],
"extensions": [
".ldpl",
".lsc"
],
"configuration": "./language-configuration.json"
}
],
"snippets": [
{
"language": "ldpl",
"path": "./snippets.json"
}
],
"grammars": [
{
"language": "ldpl",
"scopeName": "source.ldpl",
"path": "./syntaxes/ldpl.tmLanguage.json"
}
]
}
}