-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.7 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
81
82
83
84
85
{
"name": "vshexa",
"displayName": "Hexa",
"description": "Hexa Programming Language",
"version": "0.2.1",
"publisher": "PeyTy",
"author": "Bogdan Danylchenko",
"license": "LGPL-2.1-or-later",
"icon": "images/icon.png",
"homepage": "https://github.com/hexalang/hexa-vscode-bundle/blob/master/README.md",
"engines": {
"vscode": "^1.25.0"
},
"activationEvents": [
"onLanguage:hexa"
],
"main": "./extension/extension.js",
"browser": "./extension/web.js",
"categories": [
"Programming Languages",
"Linters"
],
"contributes": {
"languages": [
{
"id": "hexa",
"aliases": [
"Hexa",
"hexa"
],
"extensions": [
".hexa"
],
"icon": {
"light": "./images/file.png",
"dark": "./images/file.png"
},
"configuration": "./language-configuration.json"
}
],
"jsonValidation": [
{
"fileMatch": "hexa.json",
"url": "./schemas/hexa.schema.json"
}
],
"grammars": [
{
"language": "hexa",
"scopeName": "source.hexa",
"path": "./syntaxes/hexa.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Hexa",
"properties": {
"hexa.path": {
"type": "string",
"default": "hexa",
"description": "Path to Hexa compiler"
}
}
},
"snippets": [
{
"language": "hexa",
"path": "./snippets/hexa.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/hexalang/hexa-vscode-bundle.git"
},
"bugs": {
"url": "https://github.com/hexalang/hexa-vscode-bundle/issues"
},
"__metadata": {
"id": "a79bd051-d5ae-4fd7-a9c3-887b4cbe5b32",
"publisherDisplayName": "PeyTy",
"publisherId": "b8e63e5f-2436-4689-94b3-5b5ba4c7aece",
"isPreReleaseVersion": false
}
}