-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 987 Bytes
/
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
{
"name": "lobehub",
"version": "1.0.0",
"private": true,
"homepage": "https://github.com/lobehub",
"bugs": {
"url": "https://github.com/lobehub/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/lobehub/.github.git"
},
"author": "LobeHub <[email protected]>",
"scripts": {
"lint": "npm run lint:md && npm run prettier",
"lint:md": "remark . --quiet --output",
"prepare": "husky install",
"prettier": "prettier -c --write --no-error-on-unmatched-pattern \"**/**\"",
"test": "npm run lint"
},
"lint-staged": {
"*.md": [
"remark --quiet --output --",
"prettier --write --no-error-on-unmatched-pattern"
],
"*.json": [
"prettier --write --no-error-on-unmatched-pattern"
]
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@lobehub/lint": "latest",
"husky": "^8",
"lint-staged": "^15",
"prettier": "^3",
"remark": "^15",
"remark-cli": "^12"
}
}