-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
114 lines (114 loc) · 2.77 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
{
"publisher": "iamcco",
"name": "coc-rainbow-fart",
"description": "This extension will keep giving you compliment while you are coding.",
"version": "1.3.1",
"engines": {
"coc": "^0.0.78"
},
"keywords": [
"coc.nvim",
"rainbow",
"fart",
"rainbow-fart"
],
"repository": {
"url": "https://github.com/iamcco/coc-rainbow-fart"
},
"activationEvents": [
"*",
"onCommand:rainbow-fart.enable"
],
"main": "./out/index.js",
"contributes": {
"commands": [
{
"command": "rainbow-fart.enable",
"title": "🌈 Enable Rainbow Fart"
}
],
"configuration": {
"type": "object",
"title": "rainbow-fart configuration",
"properties": {
"rainbow-fart.enabled": {
"type": "boolean",
"default": true,
"description": "If enable rainbow-fart"
},
"rainbow-fart.trace.server": {
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
],
"description": "Trace level of log"
},
"rainbow-fart.locale": {
"type": "array",
"default": [
"zh"
],
"item": "string",
"description": "Enable locale of voice package"
},
"rainbow-fart.ffplay": {
"type": "string",
"default": "",
"description": "ffplay command"
},
"rainbow-fart.voice-packages": {
"type": "array",
"default": [],
"item": "string",
"description": "Voice package paths"
},
"rainbow-fart.disable-voice-packages": {
"type": "array",
"default": [],
"item": "string",
"description": "Disabled voice package names"
}
}
}
},
"scripts": {
"lint": "eslint --fix ./src/**/*.ts",
"build": "webpack"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"devDependencies": {
"@types/glob": "^7.1.2",
"@types/got": "^9.6.11",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"coc.nvim": "^0.0.77",
"colors": "^1.4.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"esm": "^3.2.25",
"glob": "^7.1.6",
"got": "9.6.0",
"husky": "^3.0.9",
"json-format": "^1.0.1",
"jszip": "^3.4.0",
"less": "^3.11.1",
"parcel-bundler": "^1.12.4",
"prettier": "^1.18.2",
"ts-loader": "^6.0.4",
"tunnel": "0.0.6",
"typescript": "^3.5.3",
"vscode-languageserver-protocol": "^3.15.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6"
}
}