-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (78 loc) · 2.4 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "telosys-vscode",
"displayName": "Telosys-VSCode",
"description": "New VSCode extension for Telosys ver 4+",
"version": "4.1.2",
"publisher": "telosys",
"homepage": "https://www.telosys.org/",
"repository": {
"type": "git",
"url": "https://github.com/telosys-tools-bricks/telosys-vscode.git"
},
"engines": {
"vscode": "^1.30.0"
},
"icon": "img/telosysIcon.png",
"categories": [
"Programming Languages", "Snippets"
],
"keywords": [ "Telosys",
"Model", "Entities",
"Bundle", "Templates" ],
"contributes": {
"languages": [
{
"id": "telosys.entity",
"aliases": ["telosys.entity"],
"extensions": [".entity"],
"configuration": "./entity/entity-configuration.json"
},
{
"id": "telosys.vm",
"aliases": ["telosys.vm"],
"extensions": [".vm"],
"configuration": "./vm/vm-configuration.json"
},
{
"id": "telosys.templates_cfg",
"aliases": ["telosys.templates_cfg"],
"extensions": ["templates.cfg"],
"configuration": "./templates_cfg/templates_cfg-configuration.json"
}
],
"grammars": [
{
"language": "telosys.entity",
"scopeName": "source.telosys.entity",
"path": "./entity/entity-grammar.json"
},
{
"language": "telosys.vm",
"scopeName": "source.telosys.vm",
"path": "./vm/vm-grammar.json"
},
{
"language": "telosys.templates_cfg",
"scopeName": "source.telosys.templates_cfg",
"path": "./templates_cfg/templates_cfg-grammar.json"
}
],
"snippets": [
{
"language": "telosys.entity",
"path": "./entity/entity-snippet.json"
},
{
"language": "telosys.vm",
"path": "./vm/vm-snippet.json"
}
],
"iconThemes": [
{
"id": "telosys-icons",
"label": "Telosys icons",
"path": "./icons/telosys-icons.json"
}
]
}
}