-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.8 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
{
"name": "koot-extra",
"description": "Extra modules and packages for Koot.js",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"commit": "npx cz-customizable",
"up": "npx npm-check-updates -i"
},
"repository": {
"type": "git",
"url": "https://github.com/cmux/koot-serverless"
},
"author": {
"name": "dongwenxiao",
"email": "cs_victor@126.com"
},
"contributors": [
{
"name": "diablohu",
"email": "diablohudream@gmail.com",
"url": "https://diablohu.dev"
}
],
"bugs": {
"url": "https://github.com/cmux/koot-serverless/issues"
},
"homepage": "https://github.com/cmux/koot-serverless",
"engines": {
"node": ">=18.8.0"
},
"license": "UNLICENSED",
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"eslint": "^8.52.0",
"eslint-config-koot": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"react": "^18.2.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,cjs,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{xxxxxx}": [
"tsc --noEmit"
],
"*.{json,md,css,less,sass,scss}": [
"prettier --write"
]
},
"config": {
"cz-customizable": {
"config": ".cz-config.cjs"
}
}
}