forked from Gunders89/vscode-scl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
46
47
48
49
50
{
"name": "vscode-scl",
"displayName": "Siemens SCL",
"description": "Siemens SCL language support for Visual Studio Code",
"icon": "images/sclIcon.png",
"version": "0.0.8",
"publisher": "Gunders89",
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/Gunders89/vscode-scl.git"
},
"homepage": "https://github.com/Gunders89/vscode-scl/blob/master/README.md",
"contributes": {
"languages": [
{
"id": "siemensscl",
"aliases": [
"Siemens SCL",
"SCL",
"scl"
],
"extensions": [
"scl",
"SCL",
"udt"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "siemensscl",
"scopeName": "source.scl",
"path": "./syntaxes/vscode-scl.tmLanguage.json"
}
],
"snippets": [
{
"language": "siemensscl",
"path": "./snippets/vscode-scl.json"
}
]
}
}