-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.84 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
{
"name": "use-antd-filter",
"type": "module",
"private": false,
"version": "0.1.2",
"packageManager": "pnpm@9.15.3",
"description": "一个基于 React 和 Ant Design 的灵活筛选表单 Hook",
"keywords": [
"react",
"antd",
"filter",
"form",
"hooks"
],
"author": "chenJJ-88",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chenJJ-88/useFilter.git"
},
"bugs": {
"url": "https://github.com/chenJJ-88/useFilter/issues"
},
"homepage": "https://github.com/chenJJ-88/useFilter#readme",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@ant-design/icons": "^5.6.1",
"antd": "^5.24.1",
"dayjs": "^1.11.13",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/react": "18",
"@types/react-dom": "18",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.20.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"typescript": "~5.7.2",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vitepress": "1.0.0-alpha.75"
},
"peerDependencies": {
"antd": ">=4.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
}
}