forked from LavishSoftware/vscode-ls1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.56 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.56 KB
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
76
77
{
"name": "vscode-ls1",
"publisher": "LavishSoftware",
"author": {
"name": "Joe Thaler",
"email": "lax@lavishsoft.com"
},
"repository": {
"type": "git",
"url": "https://github.com/LavishSoftware/vscode-ls1"
},
"homepage": "https://www.lavishsoft.com",
"displayName": "LavishScript",
"description": "LavishScript Language Support",
"version": "0.2.4",
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "ls1",
"aliases": [
"LavishScript",
"ls1"
],
"extensions": [
".iss"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ls1",
"scopeName": "source.ls1",
"path": "./syntaxes/ls1.tmLanguage.json"
}
],
"snippets": [
{
"language": "ls1",
"path": "./snippets/ls1.json"
},
{
"language": "lua",
"path": "./snippets/lua.json"
}
],
"jsonValidation": [
{
"fileMatch": "*.lmacPackage.json",
"url": "http://www.lavishsoft.com/schema/lmacPackage.json"
},
{
"fileMatch": "*.lgui2Package.json",
"url": "http://www.lavishsoft.com/schema/lgui2Package.json"
},
{
"fileMatch": "isboxer2Module.json",
"url": "http://www.lavishsoft.com/schema/isboxer2Module.json"
},
{
"fileMatch": "agent.json",
"url": "http://www.lavishsoft.com/schema/agent.json"
}
]
},
"__metadata": {
"id": "21989da6-659c-4733-a4fc-81516d81aad1",
"publisherDisplayName": "Lavish Software",
"publisherId": "110f6a56-2e35-4220-9e82-d0941abdd1c7"
}
}