-
-
Notifications
You must be signed in to change notification settings - Fork 139
/
package.json
88 lines (88 loc) · 2.3 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
{
"name": "rc-cascader",
"version": "3.30.0",
"description": "cascade select ui component for react",
"keywords": [
"react",
"react-component",
"react-cascader",
"react-select",
"select",
"cascade",
"cascader"
],
"homepage": "https://github.com/react-component/cascader",
"bugs": {
"url": "https://github.com/react-component/cascader/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/react-component/cascader.git"
},
"license": "MIT",
"author": "afc163@gmail.com",
"main": "./lib/index",
"module": "./es/index",
"files": [
"lib",
"es",
"assets/*.css",
"assets/*.less"
],
"scripts": {
"build": "dumi build",
"compile": "father build",
"coverage": "father test --coverage",
"deploy": "UMI_ENV=gh npm run build && gh-pages -d dist",
"lint": "eslint src/ examples/ --ext .tsx,.ts,.jsx,.jsx",
"now-build": "npm run build",
"prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"start": "dumi dev",
"test": "rc-test"
},
"dependencies": {
"@babel/runtime": "^7.25.7",
"classnames": "^2.3.1",
"rc-select": "~14.16.2",
"rc-tree": "~5.10.1",
"rc-util": "^5.43.0"
},
"devDependencies": {
"@rc-component/father-plugin": "^1.0.0",
"@rc-component/trigger": "^1.5.0",
"@testing-library/react": "^12.1.5",
"@types/classnames": "^2.2.6",
"@types/enzyme": "^3.1.15",
"@types/jest": "^29.4.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^18.0.11",
"@types/warning": "^3.0.0",
"@umijs/fabric": "^4.0.0",
"array-tree-filter": "^3.0.2",
"cheerio": "1.0.0-rc.12",
"cross-env": "^7.0.0",
"dumi": "^2.1.10",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.2.1",
"eslint": "^8.54.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-unicorn": "^52.0.0",
"father": "^4.0.0",
"gh-pages": "^6.1.1",
"glob": "^7.1.6",
"less": "^4.2.0",
"np": "^10.0.2",
"prettier": "^3.1.0",
"rc-field-form": "^1.44.0",
"rc-test": "^7.0.14",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"typescript": "^5.3.2"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}