-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
65 lines (65 loc) · 1.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
{
"name": "virtualizedtableforantd4",
"version": "1.3.1",
"description": "The virtualized table component for ant design4/5, using typescript.",
"keywords": [
"antd",
"virtualized table",
"react",
"react virtualized",
"antd virtualized table",
"infinity",
"scroll",
"virtual",
"无限滚动表格",
"虚拟表格",
"无限滚动",
"table"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"compile": "father build",
"lint": "eslint src/ --ext .ts,.tsx",
"build": "npm run lint && npm run compile",
"doctor": "father doctor",
"prepublishOnly": "father doctor && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/wubostc/virtualized-table-for-antd"
},
"homepage": "https://github.com/wubostc/virtualized-table-for-antd",
"author": {
"name": "wubooo",
"email": "[email protected]"
},
"private": false,
"license": "MIT",
"devDependencies": {
"@types/react": "^18.0.18",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"eslint-loader": "^4.0.2",
"father": "^4.0.3",
"rimraf": "^3.0.2",
"typescript": "^4.8.2"
},
"peerDependencies": {
"antd": "^4.0.0 || ^5.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead"
]
}