-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.45 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
{
"name": "coc-manga-completion",
"version": "1.2.0",
"description": "Manga titles completion source for coc.nvim",
"main": "./src/index.js",
"scripts": {
"lint": "standard"
},
"engines": {
"coc": ">=0.0.57"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ultirequiem/coc-manga-completion.git"
},
"keywords": [
"coc.nvim",
"manga"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"properties": {
"manga.enable": {
"type": "boolean",
"default": true,
"description": "Enables Manga Completion"
},
"manga.shortcut": {
"type": "string",
"default": "Manga"
},
"manga.priority": {
"type": "integer",
"default": 0
},
"manga.filetypes": {
"type": [
"array",
"null"
],
"default": null,
"items": {
"type": "string"
}
}
}
}
},
"author": "eliaz.bobadilladev@gmail.com",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/ultirequiem"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Ultirequiem/coc-manga-completion/issues"
},
"homepage": "https://github.com/Ultirequiem/coc-manga-completion#readme",
"devDependencies": {
"coc.nvim": ">=0.0.57",
"standard": "^16.0.4"
}
}