-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1018 Bytes
/
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
{
"name": "otterkit-vscode",
"displayName": "Otterkit COBOL",
"description": "Otterkit COBOL extension for VS Code",
"version": "1.70.0",
"publisher": "ktsnowy",
"author": "KTSnowy",
"keywords": [
"Otterkit",
"COBOL"
],
"repository": {
"type": "git",
"url": "https://github.com/otterkit/otterkit-vscode.git"
},
"icon": "assets/otterkit-logo.png",
"galleryBanner": {
"color": "#212328",
"theme": "dark"
},
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "otterproj",
"aliases": [
"Otterkit Project File",
"Otterkit Project"
],
"extensions": [
".otterproj"
],
"icon": {
"light": "./assets/otterproj.svg",
"dark": "./assets/otterproj.svg"
},
"configuration": "./otterproj-configuration.json"
}
],
"grammars": [
{
"language": "otterproj",
"scopeName": "source.otterproj",
"path": "./syntaxes/otterproj.tmLanguage.json"
}
]
}
}