forked from hemengke1997/use-antd-resizable-header
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.57 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
92
93
94
95
96
97
{
"name": "@fc-components/use-antd-resizable-header",
"type": "module",
"version": "2.8.16",
"description": "antd resizable header column hook",
"author": "hemengke1997",
"license": "MIT",
"homepage": "https://github.com/hemengke1997/use-antd-resizable-header",
"repository": {
"type": "git",
"url": "git+https://github.com/hemengke1997/use-antd-resizable-header.git"
},
"bugs": {
"url": "https://github.com/hemengke1997/use-antd-resizable-header/issues"
},
"keywords": [
"react",
"antd",
"resiable header"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./dist/*": "./dist/*",
"./index.css": "./dist/index.css",
"./style.css": "./dist/index.css"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"style.css": [
"./dist/style.d.ts"
],
"index.css": [
"./dist/style.d.ts"
]
}
},
"files": [
"dist",
"CHANGELOG.md"
],
"scripts": {
"dev": "rimraf dist &&tsup --watch",
"build": "rimraf dist && tsup",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint . --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add .",
"bump": "npm run changelog && bumpp package.json CHANGELOG.md -all --commit --push --tag",
"upgrade:deps": "pnpm up -i --latest"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"react-resizable": "^3.0.4"
},
"devDependencies": {
"@minko-fe/eslint-config": "^1.2.22",
"@minko-fe/tsconfig": "^1.2.22",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/fs-extra": "^11.0.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.14.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-resizable": "^3.0.3",
"@vitest/ui": "^0.29.2",
"antd": "^5.3.0",
"bumpp": "^9.0.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.35.0",
"fs-extra": "^11.1.0",
"jsdom": "^21.1.0",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.4.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2"
}
}