-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.38 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
{
"name": "coc-typos",
"version": "0.3.2",
"description": "Typos integration with coc.nvim",
"author": "Qiming Zhao <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"coc.nvim",
"typos"
],
"engines": {
"coc": "^0.0.82"
},
"bugs": {
"url": "https://github.com/neoclide/coc-typos/issues"
},
"homepage": "https://github.com/neoclide/coc-typos#readme",
"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/debounce": "^1.2.1",
"@types/node": "14.14",
"coc.nvim": "^0.0.83-next.6",
"debounce": "^1.2.1",
"esbuild": "^0.14.24",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Typos configuration",
"properties": {
"typos.command": {
"type": "string",
"default": "typos",
"description": "Command used to invoke typos."
},
"typos.arguments": {
"type": "array",
"default": [],
"description": "Additional arguments used to invoke typos",
"items": {
"type": "string"
}
},
"typos.disabledFiletypes": {
"type": "array",
"default": [],
"description": "Filetypes that should by ignored by typos.",
"items": {
"type": "string"
}
},
"typos.highlightGroup": {
"type": "string",
"default": "SpellBad",
"description": "Highlight group used for bad spelled text."
},
"typos.listTyposArguments": {
"type": "array",
"default": [],
"description": "Additional arguments of typos command used on list, should not contains --color and --format.",
"items": {
"type": "string"
}
}
}
},
"commands": [
{
"title": "Force reload 'spellfile' for known words",
"command": "typos.reloadSpellfile"
},
{
"title": "Add typo to 'spellfile'",
"command": "typos.addToSpellfile"
}
]
},
"dependencies": {}
}