forked from somebee/vscode-imba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.8 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
{
"name": "imba",
"displayName": "vscode-imba",
"description": "Language support for Imba",
"version": "0.5.1",
"publisher": "scrimba",
"main": "./client/index.js",
"icon": "assets/imba.png",
"license": "MIT",
"author": "Sindre Aarsaether",
"repository": {
"type": "git",
"url": "git://github.com/somebee/vscode-imba.git"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Languages"
],
"activationEvents": [
"onLanguage:imba"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"imba.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
}
}
},
"languages": [
{
"id": "imba",
"aliases": [
"Imba",
"imba"
],
"extensions": [
".imba"
],
"configuration": "./language-configuration.json",
"firstLine": "^#!/.*\\bimba[0-9.-]*\\b"
}
],
"grammars": [
{
"language": "imba",
"scopeName": "source.imba",
"path": "./syntaxes/imba.tmLanguage.json"
}
],
"themes": [
{
"label": "Imba Dark",
"uiTheme": "vs-dark",
"path": "./themes/ImbaDark.json"
}
]
},
"dependencies": {
"imba": "^1.4.4",
"vscode-languageserver": "^2.6.2"
}
}