-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.35 KB
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
{
"name": "@rc-component/tree-select",
"version": "1.13.0",
"description": "tree-select ui component for react",
"keywords": [
"react",
"react-component",
"react-tree-select",
"tree-select"
],
"homepage": "https://react-component.github.io/tree-select",
"bugs": {
"url": "https://github.com/react-component/tree-select/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/react-component/tree-select.git"
},
"license": "MIT",
"author": "smith3816@gmail.com",
"main": "./lib/index",
"module": "./es/index",
"files": [
"es",
"lib",
"assets/*.less",
"assets/*.css",
"assets/*.png",
"assets/*.gif"
],
"scripts": {
"build": "dumi build",
"compile": "father build",
"lint": "eslint src/ examples/ --ext .tsx,.ts,.jsx,.js",
"prepare": "husky && dumi setup",
"prepublishOnly": "npm run compile && rc-np",
"prettier": "prettier --write --ignore-unknown .",
"start": "dumi dev",
"test": "rc-test",
"tsc": "tsc --noEmit"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@rc-component/select": "~1.9.0",
"@rc-component/tree": "~1.3.2",
"@rc-component/util": "^1.11.1",
"clsx": "^2.1.1"
},
"devDependencies": {
"@rc-component/dialog": "^1.2.0",
"@rc-component/father-plugin": "^2.2.0",
"@rc-component/form": "^1.4.0",
"@rc-component/np": "^1.0.4",
"@rc-component/trigger": "^3.0.0",
"@rc-component/virtual-list": "^1.0.1",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^26.0.1",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@types/warning": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@umijs/fabric": "^4.0.1",
"cross-env": "^10.1.0",
"dumi": "^2.4.35",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-unicorn": "^56.0.1",
"father": "^4.6.23",
"glob": "^13.0.6",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.9.0",
"rc-test": "^7.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"publishConfig": {
"access": "public"
},
"types": "./es/index.d.ts"
}