-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
101 lines (101 loc) · 2.49 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
{
"name": "coc-html-css-support",
"version": "0.5.3",
"description": "HTML id and class attribute completion for coc.nvim",
"author": "yaegassy <yosstools@gmail.com>",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"coc.nvim",
"vim",
"neovim",
"css",
"html",
"twig",
"blade",
"django",
"nunjucks",
"mustache",
"angular",
"react",
"vue",
"lit",
"multi-root ready"
],
"engines": {
"coc": "^0.0.80"
},
"repository": {
"type": "git",
"url": "https://github.com/yaegassy/coc-html-css-support"
},
"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/css-tree": "^1.0.5",
"@types/node": "^20.10.5",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"coc.nvim": "0.0.83-next.17",
"css-tree": "1.1.2",
"esbuild": "^0.16.17",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"node-fetch": "^2.6.1",
"prettier": "^3.1.1",
"rimraf": "^5.0.1",
"typescript": "5.3.3"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-html-css-support configuration",
"properties": {
"html-css-support.enable": {
"type": "boolean",
"default": true,
"description": "Enable coc-html-css-support extension"
},
"html-css-support.enabledLanguages": {
"type": "array",
"description": "List of languages which suggestions are desired.",
"default": [
"html"
]
},
"html-css-support.styleSheets": {
"type": "array",
"description": "List of local or remote style sheets for suggestions.",
"default": []
}
}
},
"commands": [
{
"command": "html-css-support.dispose",
"title": "Clear cache and reload the stylesheet"
},
{
"command": "html-css-support.customDataSetup",
"title": "Setup `html.customData` to be used in the workspace"
}
]
},
"dependencies": {},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}