-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.01 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
{
"name": "@pansy/custom-scrollbar-react",
"version": "1.0.1",
"description": "自定义滚动条组件",
"main": "lib/index.js",
"types": "es/index.d.ts",
"module": "es/index.js",
"scripts": {
"dev": "father dev",
"start": "dumi dev",
"build": "father build",
"site": "dumi build",
"test": "jest",
"prepare": "is-ci || husky install",
"format": "prettier --write --cache ."
},
"files": [
"es",
"lib",
"scrollbar.less"
],
"keywords": [
"scrollbar",
"component",
"react-component",
"scrollbar-react"
],
"sideEffects": [
"*.css",
"*.less"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {
"@pansy/scrollbar-width": "^1.0.0",
"@pansy/shared": "^1.16.1",
"@types/lodash-es": "^4.17.9",
"lodash-es": "^4.17.21",
"throttle-debounce": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.6",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@types/throttle-debounce": "^5.0.0",
"@umijs/test": "^4.0.86",
"antd": "^5.10.1",
"dumi": "^2.2.1",
"father": "^4.3.5",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"semantic-release": "^23.0.0",
"lint-staged": "^15.0.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
]
},
"publishConfig": {
"access": "public"
}
}