-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.62 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
{
"name": "coc-helios",
"version": "0.1.6",
"hlsName": "helios-language-server",
"hlsVersion": "0.3.1",
"description": "coc.nvim wrapper for helios-language-server",
"author": "et <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"coc.nvim",
"cardano",
"helios",
"lsp",
"neovim"
],
"engines": {
"coc": "^0.0.80"
},
"repository": {
"type": "git",
"url": "https://github.com/et9797/coc-helios.git"
},
"scripts": {
"lint": "eslint src --ext ts",
"clean": "rimraf lib",
"watch": "node esbuild.js --watch",
"build": "node esbuild.js",
"prepare": "node esbuild.js"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"semi": true
},
"devDependencies": {
"@types/node": "^10.12.0",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"coc.nvim": "^0.0.80",
"esbuild": "^0.14.24",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
},
"activationEvents": [
"onLanguage:hl"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-helios configuration",
"properties": {
"coc-helios.enabled": {
"type": "boolean",
"default": true,
"description": "Enable coc-helios extension"
}
}
},
"commands": [
{
"command": "coc-helios.Command",
"title": "coc-helios command title"
}
]
}
}