-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.37 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.37 KB
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
{
"name": "coc-haxe",
"version": "0.21.1",
"description": "Haxe language server extension for coc.nvim",
"main": "lib/index.js",
"publisher": "vantreeseba",
"repository": {
"type": "git",
"url": "git+https://github.com/vantreeseba/coc-haxe.git"
},
"engines": {
"coc": "^0.0.58"
},
"keywords": [
"coc.nvim",
"haxe"
],
"scripts": {
"prepare": "node esbuild.js"
},
"activationEvents": [
"onLanguage:haxe",
"onLanguage:hx"
],
"contributes": {
"rootPatterns": [
{
"filetype": "haxe",
"patterns": [
"build.hxml"
]
}
],
"configuration": {
"title": "Haxe",
"properties": {
"haxe.useModule": {
"type": "bool",
"default": true,
"description": "Use internal language server module."
},
"haxe.modulePath": {
"type": "string",
"default": "../bin/server",
"description": "Path to haxe server module."
},
"haxe.hxml": {
"type": "string",
"default": "build.hxml",
"description": "Path to hxml for project."
}
}
}
},
"author": "vantreeseba@gmail.com",
"license": "MIT",
"devDependencies": {
"coc.nvim": "^0.0.82",
"esbuild": "0.20.2",
"typescript": "^4.9.4",
"vscode-languageserver-protocol": "^3.17.5"
}
}