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 0
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "coc-dash-complete",
"version": "0.0.2",
"description": "Press `-` to trigger buffer source completion in (neo)vim.",
"main": "lib/index.js",
"engines": {
"coc": "^0.0.80"
},
"keywords": [
"coc.nvim",
"completion"
],
"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": "npx npm-run-all clean build",
"lint": "eslint . --ext .ts"
},
"activationEvents": [
"*"
],
"repository": "https://github.com/voldikss/coc-dash-complete",
"homepage": "https://github.com/voldikss/coc-dash-complete/#readme",
"contributes": {
"configuration": {
"title": "DashComplete",
"type": "object",
"properties": {
"dash-complete.shortcut": {
"type": "string",
"default": "dash-complete"
},
"dash-complete.priority": {
"type": "number",
"default": 3
}
}
}
},
"author": "dyzplus@gmail.com",
"license": "MIT",
"devDependencies": {
"@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",
"json-schema-to-typescript": "^10.1.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0"
}
}