-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 1.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
{
"name": "customize-ibus",
"version": "90.0.0",
"description": "Full customization of appearance, behavior, system tray and input source indicator for IBus.",
"dependencies": {
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2"
},
"scripts": {
"lint": "eslint .",
"postinstall": "husky init",
"pre-commit": "lint-staged && eslint . --fix",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md,html}": [
"prettier --write"
]
},
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
],
"repository": {
"type": "git",
"url": "ssh://[email protected]:openSUSE/Customize-IBus.git"
},
"keywords": [
"ibus",
"theme"
],
"author": "Hollow Man",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/openSUSE/Customize-IBus/issues"
},
"homepage": "https://github.com/openSUSE/Customize-IBus#readme"
}