-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.06 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
{
"name": "vscode-k65",
"publisher": "vscode-k65",
"repository": {
"url": "https://github.com/p85/vscode-k65"
},
"displayName": "K65 Language Support",
"description": "K65 Language Support",
"version": "1.0.3",
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "K65",
"aliases": [
"K65",
"k65"
],
"extensions": [
".k65",
".K65"
],
"configuration": "./language-configuration.json"
},
{
"id": "K65 File Listing",
"extensions": [
".lst",
".LST"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "K65",
"scopeName": "source.k65",
"path": "./syntaxes/k65.tmLanguage.json"
},
{
"language": "K65 File Listing",
"scopeName": "source.k65.lst",
"path": "./syntaxes/k65.lst.tmLanguage.json"
}
]
}
}