-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 883 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
{
"name": "lua-plus",
"displayName": "Lua Plus",
"description": "Improved Lua syntax highlighting",
"categories": [
"Languages"
],
"version": "1.1.1",
"publisher": "jep-a",
"author": {
"name": "jep-a"
},
"icon": "lua-plus.png",
"repository": {
"type": "git",
"url": "https://github.com/jep-a/vscode-lua-plus.git"
},
"engines": {
"vscode": "*"
},
"contributes": {
"languages": [
{
"id": "lua",
"extensions": [
".lua",
".luacheckrc"
],
"aliases": [
"Lua",
"lua"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "lua",
"scopeName": "source.lua",
"path": "./syntaxes/lua.json"
}
]
},
"__metadata": {
"id": "b1a07478-38e2-429d-b12a-e41e735f5ca4",
"publisherDisplayName": "Jep Alaba",
"publisherId": "c1ed153c-351a-4c7a-9d53-8a846e40963f"
}
}