-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
200 lines (200 loc) · 5.11 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
{
"name": "intouch-language",
"displayName": "Intouch-Language and Formatter for VSCode. (c)2021-2022 vitalyruhl",
"description": "Intouch-Language syntax highlighting, formatter and code snippets for VSCode",
"version": "1.4.0",
"icon": "images/logo.png",
"publisher": "Vitaly-ruhl",
"engines": {
"vscode": "^1.73.1"
},
"repository": {
"type": "git",
"url": "https://github.com/vitalyruhl/intouch-language.git"
},
"bugs": {
"url": "https://github.com/vitalyruhl/intouch-language/issues"
},
"license": "GNU",
"galleryBanner": {
"color": "#030404",
"theme": "dark"
},
"categories": [
"Programming Languages",
"Formatters",
"Snippets",
"Themes"
],
"keywords": [
"Intouch",
"Invensys",
"Wonderware",
"Aveva",
"formatter",
"theme",
"dark"
],
"main": "./out/extension",
"activationEvents": [
"onLanguage:intouch"
],
"contributes": {
"themes": [
{
"label": "Intouch Dark",
"uiTheme": "vs-dark",
"path": "./themes/dark.json"
}
],
"languages": [
{
"id": "intouch",
"aliases": [
"Intouch",
"intouch"
],
"extensions": [
".vbi",
".vi"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "intouch",
"scopeName": "source.vbi",
"path": "./syntaxes/intouch.tmLanguage.json"
}
],
"snippets": [
{
"language": "intouch",
"path": "./snippets/vbi.json"
}
],
"commands": [
{
"command": "vbi-format",
"title": "Format Intouch file",
"category": "vbi"
}
],
"keybindings": [
{
"command": "vbi-format",
"key": "Ctrl+Shift+Alt+I"
}
],
"configuration": {
"type": "object",
"title": "Intouch-Language",
"properties": {
"VBI.formatter.EmptyLine.allowedNumberOfEmptyLines": {
"type": "number",
"default": 1,
"minimum": 0,
"maximum": 100,
"markdownDescription": "Number of allowed consecutive empty lines (0-100)."
},
"VBI.formatter.EmptyLine.RemoveEmptyLines": {
"type": "boolean",
"default": true,
"markdownDescription": "Delete empty lines."
},
"VBI.formatter.EmptyLine.EmptyLinesAlsoInComment": {
"type": "boolean",
"default": false,
"markdownDescription": "Delete empty lines in comments also."
},
"VBI.formatter.FormatAlsoInComment": {
"type": "boolean",
"default": false,
"markdownDescription": "Allow format in comments."
},
"VBI.formatter.BC.BlockCodeBegin": {
"type": "string",
"default": "{>",
"minLength": 2,
"maxLength": 10,
"markdownDescription": "Begin Codeblock."
},
"VBI.formatter.BC.BlockCodeEnd": {
"type": "string",
"default": "{<",
"markdownDescription": "End Codeblock."
},
"VBI.formatter.BC.BlockCodeExclude": {
"type": "string",
"default": "{#",
"markdownDescription": "Turn this comment line back (exclude from Nesting)."
},
"VBI.formatter.Region.BlockCodeBegin": {
"type": "string",
"default": "{region",
"minLength": 2,
"maxLength": 10,
"markdownDescription": "Begin Codeblock."
},
"VBI.formatter.Region.BlockCodeEnd": {
"type": "string",
"default": "{endregion",
"markdownDescription": "End Codeblock."
},
"VBI.formatter.Region.BlockCodeExclude": {
"type": "string",
"default": "{#",
"markdownDescription": "Turn this comment line back (exclude from Nesting)."
}
}
}
},
"scripts": {
"start": "nodemon --watch src src/index.js",
"build:theme": "node src/index.js",
"vscode:prepublish": "npm run compile",
"postinstall": "npm run compile && node src/index.js",
"compile": "tsc -p ./ && node src/index.js",
"test": "npm run compile && node ./out/test/runTest.js",
"watch": "tsc -watch -p ./",
"lint": "eslint . --ext .ts,.tsx",
"publish-patch": "npm run compile && vsce package && vsce publish patch",
"publish-minor": "npm run compile && vsce package && vsce publish minor",
"publish-major": "npm run compile && vsce package && vsce publish major",
"publish": "npm run compile && vsce package && vsce publish",
"refresh": "rm ./out -rf && rm ./package-lock.json -f && rm ./node_modules -rf && npm i && npm run compile",
"clear:all": "rm ./out -rf && rm ./package-lock.json -f && rm ./node_modules -rf",
"clear:out": "rm ./out -rf"
},
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": "limited",
"description": "%ext.capabilities.untrustedWorkspaces.description%"
}
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/vscode": "^1.73.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vscode/test-electron": "^2.2.0",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"source-map-support": "^0.5.21",
"typescript": "^4.9.3",
"color": "^4.2.3",
"nodemon": "^2.0.20",
"@primer/primitives": "^2.0.1"
},
"__metadata": {
"id": "834eb420-2978-4100-b7de-2430fc88e429",
"publisherDisplayName": "Vitaly Ruhl",
"publisherId": "448eaf8e-6bd4-4b72-b6cd-9af578a789d2"
},
"dependencies": {}
}