-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
128 lines (128 loc) · 3.1 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "coc-stylelint",
"version": "1.2.0",
"description": "stylelint extension for coc.nvim",
"main": "lib/index.js",
"publisher": "chemzqm",
"engines": {
"coc": "^0.0.79"
},
"keywords": [
"coc.nvim",
"stylelint"
],
"scripts": {
"clean": "rimraf lib",
"build": "webpack"
},
"activationEvents": [
"onLanguage:css",
"onLanguage:html",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:less",
"onLanguage:markdown",
"onLanguage:postcss",
"onLanguage:sass",
"onLanguage:scss",
"onLanguage:source.css.styled",
"onLanguage:source.markdown.math",
"onLanguage:styled-css",
"onLanguage:sugarss",
"onLanguage:svelte",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:vue",
"onLanguage:xml",
"onLanguage:xsl"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Stylelint",
"properties": {
"stylelint.enable": {
"type": "boolean",
"default": true
},
"stylelint.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between coc.nvim and Vue Language Server."
},
"stylelint.filetypes": {
"type": "array",
"description": "Enabled filetypes of stylelint.",
"default": [
"css",
"wxss",
"scss",
"less",
"postcss",
"sugarss",
"vue",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"items": {
"type": "string"
}
},
"stylelint.execArgv": {
"type": "array",
"default": [],
"items": {
"type": "string"
}
},
"stylelint.config": {
"type": [
"object",
"null"
],
"description": "A stylelint configuration object."
},
"stylelint.configOverrides": {
"type": "object",
"default": {},
"description": "Override exist stylelint config"
},
"stylelint.autoFixOnSave": {
"type": "boolean",
"default": true
}
}
}
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@chemzqm/tsconfig": "^0.0.3",
"@types/node": "^14.11.2",
"coc.nvim": "^0.0.79",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"vscode-languageserver-protocol": "^3.15.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"stylelint": "^13.6.0",
"fast-diff": "^1.2.0",
"kind-of": "^6.0.3",
"lodash": "^4.17.20",
"path-is-inside": "^1.0.2",
"vscode-languageserver": "^6.2.0-next.1",
"vscode-languageserver-textdocument": "^1.0.1",
"vscode-languageserver-types": "^3.16.0-next.1",
"vscode-uri": "^2.1.2"
}
}