-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 849 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 849 Bytes
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
{
"name": "language-1c-element-xbsl",
"displayName": "Language 1C Element (xbsl)",
"description": "Syntax highlighting for 1C:Enterprise Element",
"version": "0.2.0",
"publisher": "bia-tech",
"engines": {
"vscode": "^1.97.0"
},
"categories": [
"Programming Languages"
],
"license": "SEE LICENSE IN LICENSE",
"contributes": {
"languages": [{
"id": "xbsl",
"aliases": ["XBSL", "SBSL", "1C Element"],
"extensions": [".xbsl", ".sbsl"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "xbsl",
"scopeName": "source.xbsl",
"path": "./syntaxes/xbsl.tmLanguage.json"
}]
},
"repository": {
"type": "git",
"url": "https://github.com/bia-technologies/vscode-xbslplugin.git"
},
"devDependencies": {
"vsce": "^2.7.0"
}
}