@statiolake/coc-terraform 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +4 -0
- package/lib/index.js +11796 -0
- package/package.json +84 -0
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@statiolake/coc-terraform",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Terraform language support for coc.nvim using terraform-ls",
|
|
5
|
+
"author": "statiolake",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"main": "lib/index.js",
|
|
8
|
+
"engines": {
|
|
9
|
+
"coc": "^0.0.82"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "node esbuild.mjs",
|
|
13
|
+
"format": "prettier --write .",
|
|
14
|
+
"format:check": "prettier --check .",
|
|
15
|
+
"prepare": "node esbuild.mjs",
|
|
16
|
+
"typecheck": "tsc --noEmit"
|
|
17
|
+
},
|
|
18
|
+
"activationEvents": [
|
|
19
|
+
"onLanguage:terraform",
|
|
20
|
+
"onLanguage:tf"
|
|
21
|
+
],
|
|
22
|
+
"contributes": {
|
|
23
|
+
"commands": [
|
|
24
|
+
{
|
|
25
|
+
"command": "terraform-ls.install",
|
|
26
|
+
"title": "Install terraform-ls"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"command": "terraform-ls.update",
|
|
30
|
+
"title": "Update terraform-ls"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"command": "terraform-ls.restart",
|
|
34
|
+
"title": "Restart terraform-ls"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"configuration": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"title": "terraform-ls",
|
|
40
|
+
"properties": {
|
|
41
|
+
"terraform-ls.enable": {
|
|
42
|
+
"type": "boolean",
|
|
43
|
+
"default": true
|
|
44
|
+
},
|
|
45
|
+
"terraform-ls.prompt": {
|
|
46
|
+
"type": "boolean",
|
|
47
|
+
"default": true,
|
|
48
|
+
"description": "Prompt before downloading a missing server"
|
|
49
|
+
},
|
|
50
|
+
"terraform-ls.version": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"default": "0.38.8",
|
|
53
|
+
"description": "terraform-ls release version to install"
|
|
54
|
+
},
|
|
55
|
+
"terraform-ls.customPath": {
|
|
56
|
+
"type": "string",
|
|
57
|
+
"description": "Use an existing terraform-ls executable instead of the managed copy"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@statiolake/coc-utils": "git+https://github.com/statiolake/coc-utils.git",
|
|
64
|
+
"@types/node": "^16.18.0",
|
|
65
|
+
"coc.nvim": "^0.0.83-next.24",
|
|
66
|
+
"esbuild": "^0.25.0",
|
|
67
|
+
"prettier": "^3.6.2",
|
|
68
|
+
"typescript": "^5.3.3"
|
|
69
|
+
},
|
|
70
|
+
"repository": {
|
|
71
|
+
"type": "git",
|
|
72
|
+
"url": "git+https://github.com/statiolake/coc-terraform.git"
|
|
73
|
+
},
|
|
74
|
+
"bugs": {
|
|
75
|
+
"url": "https://github.com/statiolake/coc-terraform/issues"
|
|
76
|
+
},
|
|
77
|
+
"homepage": "https://github.com/statiolake/coc-terraform#readme",
|
|
78
|
+
"publishConfig": {
|
|
79
|
+
"access": "public"
|
|
80
|
+
},
|
|
81
|
+
"files": [
|
|
82
|
+
"lib/index.js"
|
|
83
|
+
]
|
|
84
|
+
}
|