-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.04 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
{
"name": "coc-unocss",
"version": "0.2.0",
"description": "UnoCSS extension for coc.nvim",
"author": "auvred <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"coc.nvim",
"vim",
"neovim",
"unocss",
"css"
],
"homepage": "https://github.com/auvred/coc-unocss#readme",
"repository": {
"type": "git",
"url": "https://github.com/auvred/coc-unocss"
},
"engines": {
"coc": "^0.0.80"
},
"scripts": {
"clean": "rimraf lib",
"watch": "node esbuild.mjs --watch",
"build": "node esbuild.mjs",
"prepare": "node esbuild.mjs",
"lint": "eslint .",
"lint:fix": "prettier -w . && eslint --fix ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"coc.nvim": "^0.0.80",
"esbuild": "^0.17.18",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.4"
},
"files": [
"lib"
],
"lint-staged": {
"*.{json,yaml,yml}": [
"prettier --write"
],
"*.{js,mjs,ts}": [
"eslint --format compact --fix"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"activationEvents": [
"onLanguage:vue",
"onLanguage:html",
"onLanguage:svelte",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-unocss configuration",
"properties": {
"unocss.enable": {
"type": "boolean",
"default": true,
"description": "Enable coc-unocss extension"
}
}
}
},
"dependencies": {
"unocss-language-server": "^0.1.5"
}
}