-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "yara-l",
"displayName": "YARA-L",
"version": "1.0.2",
"publisher": "GoogleCloudSecurity",
"description": "Provides syntax highlighting, bracket matching, and folding in YARA-L files.",
"categories": ["Programming Languages"],
"contributes": {
"themes": [
{
"label": "YARA-L Theme",
"uiTheme": "vs-dark",
"path": "./themes/yara-l-theme-color-theme.json"
}
],
"grammars": [{
"language": "yara-l",
"path": "./syntaxes/yara-l.tmLanguage.json",
"scopeName": "source.yara-l"
}],
"languages": [{
"id": "yara-l",
"aliases": ["YARA-L", "yara-l", "YARAL", "yaral", "yl2"],
"configuration": "./language-configuration.json",
"extensions": [".yaral", ".yl2"]
}],
"configuration": {
"title": "YARA-L Theme Customizations",
"properties": {
"workbench.colorTheme": {
"type": "string",
"default": "YARA-L Theme",
"description": "Select the color theme for YARA-L files."
}
}
}
},
"activationEvents": [
"onLanguage:yara-l"
],
"main": "./src/extension.js",
"icon": "./images/chronicle.png",
"engines": {
"vscode": "^1.8.0"
},
"license": "Apache License, Version 2.0",
"keywords": ["Chronicle", "YARA-L", "YARAL", "yl2"],
"bugs": {
"url": "https://github.com/chronicle/yara-l-extension/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/chronicle/yara-l-extension"
}
}