-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.39 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
{
"name": "coc-camel",
"version": "0.1.0",
"description": "Camel Language extension for coc.nvim",
"repository": {
"type": "git",
"url": "https://github.com/camel-tooling/coc-camel"
},
"author": "npr <[email protected]>",
"license": "Apache-2.0",
"main": "lib/index.js",
"keywords": [
"vim",
"coc.nvim",
"Apache Camel"
],
"engines": {
"coc": ">=0.0.79",
"node": ">=10.0.0 <=18.0.0"
},
"scripts": {
"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/glob": "7.2.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"coc.nvim": "^0.0.80",
"esbuild": "^0.14.24",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^7.2.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-camel configuration",
"properties": {
"coc-camel.enabled": {
"type": "boolean",
"default": true,
"description": "Enable coc-camel extension"
}
}
}
}
}