-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.07 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
{
"name": "coc-dlang",
"version": "1.2.12",
"description": "dlang support for coc",
"author": "Dan Vu <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vushu/coc-dlang"
},
"main": "lib/index.js",
"keywords": [
"coc.nvim"
],
"engines": {
"coc": "^0.0.81"
},
"scripts": {
"lint": "eslint src --ext ts",
"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/node": "^18.11.13",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"coc.nvim": "^0.0.83-next.9",
"esbuild": "^0.16.4",
"eslint": "^8.29.0",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
},
"activationEvents": [
"onLanguage:d",
"onLanguage:dml",
"workspaceContains:dub.json",
"workspaceContains:dub.sdl",
"onCommand:code-d.addImport"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-dlang configuration",
"properties": {
"d.enabled": {
"type": "boolean",
"default": true,
"description": "Enable coc-dlang extension"
},
"d.hasDubProject": {
"type": "boolean",
"default": true,
"description": "Is dub project"
},
"d.servedPath": {
"type": "string",
"default": "",
"description": "Path to serve-d binary"
}
}
},
"commands": [
{
"command": "code-d.Command",
"title": "D command title"
}
]
}
}