-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.22 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
{
"name": "coc-class-css",
"version": "1.0.11",
"description": "CSS class completions in html markup everywhere",
"main": "lib/index.js",
"repository": "https://github.com/Softmotions/coc-class-css.git",
"author": "Anton Adamansky <adamansky@gmail.com>",
"license": "MIT",
"private": false,
"keywords": [
"coc.nvim",
"vim",
"nvim",
"neovim",
"css",
"html"
],
"engines": {
"coc": "^0.0.82"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-class-css configuration",
"properties": {
"coc-class-css.enabled": {
"type": "boolean",
"scope": "application",
"default": true,
"description": "Enable coc-class-css extension"
},
"coc-class-css.languages": {
"type": "array",
"scope": "application",
"description": "List of languages where css class completion enabled",
"default": [
"html",
"svelte",
"vue",
"javascriptreact"
]
},
"coc-class-css.cssRoots": {
"type": "array",
"scope": "resource",
"description": "List of local css/scss files for class suggestions.",
"default": [
"index.css"
]
}
}
}
},
"scripts": {
"lint": "eslint src --ext ts",
"clean": "rimraf lib",
"watch": "node esbuild.js --watch",
"prepare": "NODE_ENV=production node esbuild.js",
"build": "NODE_ENV=production node esbuild.js"
},
"devDependencies": {
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"coc.nvim": "^0.0.83-next.9",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"find-up": "^7.0.0",
"node-fetch": "^3.3.2",
"postcss": "^8.4.47",
"postcss-at-rules-variables": "^0.3.0",
"postcss-import": "^16.1.0",
"postcss-nested": "^7.0.2",
"postcss-nesting": "^13.0.1",
"postcss-safe-parser": "^7.0.1",
"postcss-scss": "^4.0.9",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tslib": "^2.8.1",
"typescript": "^5.6.3"
}
}