-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.53 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
{
"name": "vscode-sie",
"displayName": "SIE",
"description": "SIE syntax highlighting",
"version": "0.2.1",
"publisher": "SimonSegerblomRex",
"readme": "README.md",
"author": {
"name": "Simon Segerblom Rex"
},
"license": "SEE LICENSE IN LICENSE.txt",
"engines": {
"vscode": "^1.28.0"
},
"bugs": {
"url": "https://github.com/SimonSegerblomRex/vscode-sie/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/SimonSegerblomRex/vscode-sie"
},
"homepage": "https://github.com/SimonSegerblomRex/vscode-sie",
"qna": "https://github.com/SimonSegerblomRex/vscode-sie/discussions",
"keywords": [
"SIE",
"accounting",
"bookkeeping",
"si"
],
"categories": [
"Programming Languages"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": " #995c00",
"theme": "dark"
},
"contributes": {
"languages": [
{
"id": "sie4",
"extensions": [
".se",
".si"
],
"aliases": [
"SIE4"
],
"configuration": "./language-configuration.json"
},
{
"id": "xml",
"extensions": [
".sie"
],
"aliases": [
"SIE5"
]
}
],
"grammars": [
{
"language": "sie4",
"scopeName": "source.sie4",
"path": "./syntaxes/sie4.tmGrammar.json"
}
],
"configurationDefaults": {
"[sie4]": {
"files.autoGuessEncoding": false,
"files.encoding": "cp437"
}
}
}
}