-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
111 lines (111 loc) · 2.96 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "use-antd-resizable-header",
"version": "3.2.0",
"description": "antd resizable header column hook",
"type": "module",
"keywords": [
"react",
"antd",
"resizable header"
],
"license": "MIT",
"homepage": "https://github.com/hemengke1997/use-antd-resizable-header",
"bugs": {
"url": "https://github.com/hemengke1997/use-antd-resizable-header/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hemengke1997/use-antd-resizable-header.git"
},
"author": "hemengke1997",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./style.css": "./dist/style.css",
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./*"
]
}
},
"sideEffects": false,
"scripts": {
"dev": "rimraf dist && tsup --watch",
"build": "rimraf dist && tsup",
"build:pages": "pnpm run build && cd playground && pnpm run build",
"test": "vitest",
"test:ui": "vitest --ui",
"prepare": "simple-git-hooks",
"commitlint": "commitlint -e",
"lint": "tsc --noEmit && eslint . --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"bump": "bumpp package.json -c --no-push -t --all -x \"npm run changelog\""
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"react-resizable": "^3.0.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@minko-fe/commitlint-config": "^2.1.2",
"@minko-fe/eslint-config": "^4.1.1",
"@minko-fe/prettier-config": "^2.2.3",
"@minko-fe/tsconfig": "^2.1.1",
"@testing-library/dom": "^8.20.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.2",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22.9.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-resizable": "^3.0.8",
"@vitest/ui": "^2.1.5",
"antd": "^5.22.2",
"autoprefixer": "^10.4.20",
"bumpp": "^9.8.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.15.0",
"jsdom": "^21.1.2",
"lodash.debounce": "^4.0.8",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"postcss-nested": "^6.2.0",
"postcss-simple-vars": "^7.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"terser": "^5.36.0",
"tsup": "8.3.0",
"tsup-plugin-bundleless": "^1.2.0",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vitest": "^2.1.5"
},
"simple-git-hooks": {
"commit-msg": "npm run commitlint",
"pre-commit": "npm run lint"
},
"prettier": "@minko-fe/prettier-config",
"commitlint": {
"extends": [
"@minko-fe/commitlint-config"
]
}
}