-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 978 Bytes
/
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
{
"name": "coc-marketplace",
"version": "1.9.0",
"description": "coc.nvim extensions marketplace",
"main": "lib/index.js",
"author": "Heyward Fann <[email protected]>",
"license": "MIT",
"scripts": {
"build": "node esbuild.js",
"prepare": "node esbuild.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fannheyward/coc-marketplace.git"
},
"keywords": [
"coc.nvim"
],
"engines": {
"coc": "^0.0.73"
},
"devDependencies": {
"coc.nvim": "^0.0.80",
"esbuild": "^0.14.23",
"typescript": "^4.6.2"
},
"dependencies": {},
"prettier": {
"printWidth": 160,
"singleQuote": true
},
"contributes": {
"configuration": {
"type": "object",
"title": "coc-marketplace configuration",
"properties": {
"marketplace.npmsio": {
"type": "boolean",
"default": false,
"description": "Use npms.io for searching"
}
}
}
}
}