-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 1.72 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
76
77
78
79
80
{
"name": "vscode-splunk-search-syntax",
"displayName": "Splunk Search Syntax Highlighter",
"description": "Syntax highlighting for Splunk SPL files",
"version": "1.5.3",
"publisher": "arcsector",
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"repository": {
"type": "git",
"url": "https://github.com/arcsector/vscode-splunk-search-syntax.git"
},
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"extensionPack": [
"arcsector.vscode-splunk-search-linter"
],
"contributes": {
"languages": [
{
"id": "splunk_search",
"aliases": [
"spl",
"SPL",
"splunk",
"splunk_search"
],
"configuration": "./language-configuration.json",
"extensions": [
".spl",
".splunk"
]
}
],
"grammars": [
{
"language": "splunk_search",
"scopeName": "source.splunk_search",
"path": "./syntaxes/splunk_search.tmLanguage",
"embeddedLanguages": {
"meta.embedded.block.sql": "sql"
}
},
{
"scopeName": "markdown.splunk_search.codeblock",
"path": "./syntaxes/splunk_searchcodeblock.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.splunk_search": "splunk_search"
}
}
],
"snippets": [
{
"language": "splunk_search",
"path": "./snippets/splunk_search_snippets.json"
}
]
},
"__metadata": {
"id": "1938b0e4-e8ca-4c73-b10a-cd715816a50c",
"publisherId": "ec8aa3bb-c55d-4e99-ad21-5621f095da29",
"publisherDisplayName": "arcsector",
"targetPlatform": "undefined",
"updated": false,
"isPreReleaseVersion": false,
"preRelease": false,
"installedTimestamp": 1654925390932
}
}