-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.28 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "rc-use-hooks",
"version": "2.0.8",
"description": "一个对 ahooks 补充的 React Hook 库",
"keywords": [
"rc-use-hooks",
"rc-use-hook",
"use-hoos",
"react-hooks",
"react"
],
"homepage": "https://github.com/llq0802/rc-use-hook",
"repository": {
"type": "git",
"url": "https://github.com/llq0802/rc-use-hook"
},
"license": "MIT",
"author": "llq0802 <958614130@qq.com>",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "father build",
"build:watch": "father dev",
"deploy": "npm run docs:build && npm run docs:deploy",
"dev": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"doctor": "father doctor",
"lint": "npm run lint:es && npm run lint:css",
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install && dumi setup",
"prepublishOnly": "father doctor && npm run build",
"start": "npm run dev"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [],
"*.{css,less}": [],
"*.{js,jsx}": [],
"*.{ts,tsx}": []
},
"dependencies": {
"@koale/useworker": "^4.0.2",
"ahooks": "^3.8.2",
"copy-to-clipboard": "^3.3.3",
"lodash-es": "^4.17.21",
"use-animate-number": "^1.0.5"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/lodash-es": "^4.17.8",
"@types/react": "^18.2.16",
"@types/react-dom": "^18.2.7",
"@umijs/lint": "^4.0.72",
"antd": "^5.22.5",
"better-mock": "^0.3.6",
"dumi": "^2.2.1",
"eslint": "^8.45.0",
"father": "^4.3.0",
"gh-pages": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-packagejson": "^2.4.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint": "^15.10.2"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"optionalDependencies": {
"antd": "^5.22.5"
},
"publishConfig": {
"access": "public"
}
}