forked from jaywcjlove/reference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.27 KB
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": "@wcj/reference",
"version": "1.47.0",
"description": "为开发人员分享快速参考备忘单(主要是方便自己)。",
"author": "jaywcjlove",
"license": "MIT",
"homepage": "https://jaywcjlove.github.io/reference",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"private": false,
"scripts": {
"prepare": "husky",
"postinstall": "npm run cpy",
"build": "refs-cli && npm run cpy",
"start": "npm run cpy && refs-cli --watch",
"cpy": "cpy 'appicon/*.png' dist/appicon",
"prettier": "prettier --write '**/*.{mjs,css,json,prettierrc,lintstagedrc}'",
"markdownlint": "npx markdownlint-cli --fix ./docs/*.md"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/reference.git"
},
"bugs": {
"url": "https://github.com/jaywcjlove/reference/issues"
},
"keywords": [],
"lint-staged": {
"**/*.{mjs,css,json,prettierrc,lintstagedrc}": "prettier --write",
"*.md": "markdownlint --fix",
"docs/*.md": "markdownlint --fix"
},
"devDependencies": {
"cpy-cli": "^5.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"markdownlint": "^0.33.0",
"markdownlint-cli": "^0.39.0",
"prettier": "^3.0.0",
"refs-cli": "^1.11.1"
},
"engines": {
"node": ">=16.0.0"
}
}