forked from CarpeDatumInc/tm1helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "tm1-helper",
"displayName": "TM1 Helper",
"description": "TM1 Rule and Process Coding Extension",
"version": "1.0.0",
"publisher": "CarpeDatum",
"repository": {
"url": "https://github.com/CarpeDatumInc/vscode-tm1.git"
},
"icon": "about/images/tm1-helper-icon.png",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "tm1rule",
"aliases": [
"TM1 Rule",
"tm1 rule"
],
"extensions": [
".rux"
],
"configuration": "./language-configuration.json"
},
{
"id": "tm1process",
"aliases": [
"TM1 Process",
"tm1 process"
],
"extensions": [
".pro"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "tm1rule",
"scopeName": "source.tm1rule",
"path": "./syntaxes/tm1.rule.syntax.json"
},
{
"language": "tm1process",
"scopeName": "source.tm1process",
"path": "./syntaxes/tm1.process.syntax.json"
}
],
"snippets": [
{
"language": "tm1process",
"path": "./snippets/custom.rule.codeblocks.json"
},
{
"language": "tm1process",
"path": "./snippets/custom.process.codeblocks.json"
},
{
"language": "tm1process",
"path": "./snippets/cdc.process.codeblocks.json"
},
{
"language": "tm1rule",
"path": "./snippets/cdc.rule.codeblocks.json"
},
{
"language": "tm1rule",
"path": "./snippets/tm1.rule.snippets.json"
},
{
"language": "tm1rule",
"path": "./snippets/tm1.rule.codeblocks.json"
},
{
"language": "tm1rule",
"path": "./snippets/tm1.mdx.snippets.json"
},
{
"language": "tm1process",
"path": "./snippets/tm1.process.snippets.json"
},
{
"language": "tm1process",
"path": "./snippets/tm1.process.codeblocks.json"
},
{
"language": "tm1process",
"path": "./snippets/tm1.mdx.snippets.json"
}
],
"themes": [
{
"label": "CarpeDatum Dark",
"uiTheme": "vs-dark",
"path": "./themes/CDCDark.theme.json"
}
]
},
"__metadata": {
"id": "259ca666-f4aa-4c35-90ee-1d604f7be888",
"publisherDisplayName": "CarpeDatum Consulting Inc",
"publisherId": "bfa8ca9b-9fd1-4ee8-a3bf-71b921b57cb6"
}
}