-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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": "kukulkan-vscode",
"displayName": "Kukulkan VS Code Extension",
"description": "Kukulkan editor support for VS Code, based on Kukulkan-LSP.",
"version": "1.6.0",
"publisher": "Infotec",
"license": "MIT",
"repository": {
"url": "https://github.com/robertovillarejo/kukulkan-vscode-extension.git"
},
"icon": "images/kukulkan.png",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:kukulkan"
],
"main": "./out/client/extension",
"contributes": {
"languages": [
{
"id": "kukulkan",
"aliases": [
"Kukulkan",
"kukulkan"
],
"extensions": [
".3k",
"kukulkan"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "kukulkan",
"scopeName": "source.kukulkan",
"path": "./syntaxes/kukulkan.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Kukulkan client configuration",
"properties": {
"kukulkanLanguageServer.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.6.2",
"vscode": "^1.1.10",
"@types/node": "^6.0.40"
},
"dependencies": {
"vscode-languageclient": "^3.1.0"
}
}