-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.53 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
{
"name": "coc-languagetool",
"version": "0.1.0",
"description": "LanguageTool integration for coc.nvim",
"author": "Henry Barreto <me@henrybarreto.dev>",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"languagetool",
"language",
"tool",
"integration",
"coc.nvim",
"coc",
"nvim"
],
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"languagetool": "scripts/languagetool.sh"
},
"devDependencies": {
"@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",
"rome": "^11.0.0",
"typescript": "^4.6.2"
},
"engines": {
"coc": "^0.0.80"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "languagetool",
"properties": {
"languagetool.enable": {
"type": "boolean",
"default": true,
"description": "Enable coc-languagetool extension"
}
}
},
"commands": [
{
"command": "languagetool.enable",
"title": "enable coc-languagetool extension"
},
{
"command": "languagetool.disable",
"title": "disable coc-languagetool extension"
},
{
"command": "languagetool.version",
"title": "languagetool server version"
},
{
"command": "languagetool.toggle",
"title": "toggle between enable and disable coc-langugetool extension"
},
{
"command": "languagetool.check.line",
"title": "check one line"
},
{
"command": "languagetool.check.selection",
"title": "check the selection"
},
{
"command": "languagetool.check.clear",
"title": "clear all check notices from document"
}
]
},
"dependencies": {
"axios": "^1.3.4",
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-textdocument": "^1.0.8"
}
}