This repository has been archived by the owner on Jul 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.02 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
{
"name": "coc-browser",
"version": "1.5.0",
"description": "browser words completion for coc.nvim",
"main": "lib/index.js",
"engines": {
"coc": "^0.0.74"
},
"keywords": [
"coc.nvim",
"completion",
"neovim",
"vim"
],
"scripts": {
"clean": "rimraf lib",
"watch": "webpack --watch",
"build:types": "node scripts/gen_package_type.js",
"build:webpack": "webpack --mode production",
"build:doc": "ts-node ./scripts/gendoc.ts",
"build": "run-s build:types build:webpack build:doc",
"prepare": "run-s clean build",
"lint": "eslint . --ext .ts"
},
"activationEvents": [
"*"
],
"repository": "https://github.com/voldikss/coc-browser",
"homepage": "https://github.com/voldikss/coc-browser/#readme",
"contributes": {
"configuration": {
"title": "Browser",
"type": "object",
"properties": {
"browser.shortcut": {
"type": "string",
"default": "WEB"
},
"browser.priority": {
"type": "number",
"default": 5
},
"browser.patterns": {
"type": "object",
"default": {
"*": []
}
},
"browser.port": {
"type": "number",
"default": 8888,
"description": "Port used to transfer words from browser extension to local server"
}
}
},
"commands": [
{
"title": "Clear browser completion source cache",
"command": "clearCache"
}
]
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/chrome": "0.0.126",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"@voldikss/tsconfig": "*",
"coc.nvim": "^0.0.80",
"eslint": "^7.16.0",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"json-schema-to-typescript": "^10.1.2",
"npm-run-all": "^4.1.5",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0"
}
}