-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.56 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@yaegassy/coc-nginx",
"version": "0.4.1",
"nginxLsVersion": "0.8.0",
"nginxFmtVersion": "1.2.2",
"description": "nginx-language-server extension for coc.nvim",
"author": "yaegassy <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"coc.nvim"
],
"engines": {
"coc": "^0.0.80"
},
"repository": {
"type": "git",
"url": "https://github.com/yaegassy/coc-nginx"
},
"publishConfig": {
"access": "public"
},
"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": "^18.11.19",
"@types/rimraf": "^3.0.0",
"@types/tmp": "^0.2.0",
"@types/which": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"coc.nvim": "^0.0.82",
"esbuild": "^0.16.17",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3",
"rimraf": "^3.0.2",
"tmp": "^0.1.0",
"typescript": "^4.9.5",
"which": "^2.0.2"
},
"activationEvents": [
"onLanguage:nginx"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-nginx configuration",
"properties": {
"nginx.enable": {
"type": "boolean",
"default": true,
"description": "Enable coc-nginx extension"
},
"nginx.server.commandPath": {
"type": "string",
"default": "",
"description": "The custom path to the nginx-language-server (Absolute path)."
},
"nginx.builtin.pythonPath": {
"type": "string",
"default": "",
"description": "Python 3.x path (Absolute path) to be used for built-in install"
},
"nginx.nginxfmt.commandPath": {
"type": "string",
"default": "",
"description": "The custom path to the nginxfmt (Absolute path)."
},
"nginx.nginxfmt.indent": {
"type": "number",
"default": 4,
"description": "Specify number of spaces for indentation"
}
}
},
"commands": [
{
"command": "nginx.installLanguageServer",
"title": "Install/Upgrade nginx-language-server and more tools (builtin)"
},
{
"command": "nginx.format",
"title": "Run nginxfmt"
}
]
}
}