forked from jaywcjlove/reference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "@huid/reference",
"version": "0.0.2",
"description": "个人的参考备忘单(主要是方便自己)。",
"author": "zhanghuid",
"license": "MIT",
"homepage": "https://zhanghuid.github.io/reference",
"funding": "https://zhanghuid.github.io/#/sponsor",
"private": false,
"scripts": {
"prepare": "husky",
"build": "rm -rf ./dist/ && huid-reference-cli",
"start": "huid-reference-cli --watch",
"prettier": "prettier --write '**/*.{mjs,css,json,prettierrc,lintstagedrc}'",
"markdownlint": "npx markdownlint-cli --fix ./docs/*.md",
"release": "bumpp --no-tag -c 'auto' --yes"
},
"repository": {
"type": "git",
"url": "https://github.com/zhanghuid/reference.git"
},
"bugs": {
"url": "https://github.com/zhanghuid/reference/issues"
},
"keywords": [],
"lint-staged": {
"**/*.{mjs,css,json,prettierrc,lintstagedrc}": "prettier --write",
"*.md": "markdownlint --fix",
"docs/*.md": "markdownlint --fix"
},
"devDependencies": {
"bumpp": "^9.5.1",
"huid-reference-cli": "^0.0.6",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"markdownlint": "^0.33.0",
"markdownlint-cli": "^0.39.0",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}