-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.86 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.86 KB
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
{
"name": "coc-wxml",
"version": "1.0.9",
"description": "wxml language server extension for coc.nvim",
"main": "lib/index.js",
"publisher": "chemzqm",
"engines": {
"coc": "^0.0.15"
},
"keywords": [
"coc.nvim",
"wxml"
],
"scripts": {
"clean": "rimraf lib",
"build": "webpack",
"prepare": "npx npm-run-all clean build"
},
"activationEvents": [
"onLanguage:wxml"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Wxml",
"properties": {
"wxml.enable": {
"type": "boolean",
"default": true
},
"wxml.trace.server": {
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
]
},
"wxml.execArgv": {
"type": "array",
"default": [],
"items": {
"type": "string"
}
},
"wxml.complete.completeEvent": {
"type": "boolean",
"default": false,
"description": "Set to true to complete event attributes"
},
"wxml.complete.useSnippet": {
"type": "boolean",
"default": true,
"description": "Use snippet for attributes completion."
}
}
}
},
"author": "chemzqm@gmail.com",
"license": "MIT",
"devDependencies": {
"@chemzqm/tsconfig": "^0.0.3",
"@types/node": "10.12.0",
"coc.nvim": "^0.0.79-next.18",
"merge": "^1.2.1",
"rimraf": "^2.6.2",
"ts-loader": "^6.0.3",
"tslint": "^5.11.0",
"typescript": "^4.1.3",
"uuid": "^3.3.2",
"vscode-jsonrpc": "^4.0.0",
"vscode-languageserver": "^5.2.1",
"vscode-languageserver-protocol": "^3.14.1",
"vscode-languageserver-types": "^3.14.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"dependencies": {}
}