-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.57 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
91
92
93
94
95
96
97
98
99
{
"name": "@rc-component/drawer",
"version": "1.4.2",
"description": "drawer component for react",
"keywords": [
"react",
"react-component",
"react-drawer",
"drawer",
"drawer-menu",
"rc-drawer-menu",
"react-drawer-menu",
"animation",
"drawer-motion",
"drawer-animation"
],
"homepage": "https://react-component.github.io/drawer",
"bugs": {
"url": "https://github.com/react-component/drawer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/react-component/drawer.git"
},
"license": "MIT",
"author": "155259966@qq.com",
"main": "./lib/index",
"module": "./es/index",
"files": [
"lib",
"assets/*.css",
"es"
],
"scripts": {
"build": "dumi build",
"compile": "father build && lessc assets/index.less assets/index.css",
"lint": "eslint src/ docs/ tests/ --ext .tsx,.ts,.jsx,.js",
"prepublishOnly": "npm run compile && rc-np",
"start": "dumi dev",
"test": "rc-test",
"tsc": "tsc --noEmit",
"prettier": "prettier --write --ignore-unknown .",
"prepare": "husky"
},
"dependencies": {
"@rc-component/motion": "^1.1.4",
"@rc-component/portal": "^2.1.3",
"@rc-component/util": "^1.11.1",
"clsx": "^2.1.1"
},
"devDependencies": {
"@ant-design/icons": "^6.2.5",
"@eslint/js": "^10.0.1",
"@eslint/compat": "^2.1.0",
"@rc-component/father-plugin": "^2.2.0",
"@rc-component/np": "^1.0.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^26.0.1",
"@types/raf": "^3.4.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/warning": "^3.0.4",
"antd": "^6.3.4",
"dumi": "^2.4.38",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"father": "^4.6.24",
"glob": "^13.0.6",
"globals": "^17.7.0",
"husky": "^9.1.7",
"less": "^4.6.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4",
"rc-test": "^7.1.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"stylelint": "^17.1.0",
"stylelint-config-standard-less": "^4.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"publishConfig": {
"access": "public"
},
"types": "./es/index.d.ts"
}