-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "@mango-kit/components",
"version": "0.0.10",
"description": "一些前端组件",
"keywords": [
"mango-kit",
"components"
],
"homepage": "https://github.com/AlbertLin0923/mango-kit/tree/main/packages/components#readme",
"bugs": {
"url": "https://github.com/AlbertLin0923/mango-kit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlbertLin0923/mango-kit.git",
"directory": "packages/components"
},
"license": "MIT",
"author": "AlbertLin0923",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./styles": {
"import": "./dist/styles/index.scss"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "father build",
"clean": "rimraf node_modules/.cache",
"dev": "father dev",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@mango-kit/utils": "^0.0.2",
"classnames": "^2.3.2",
"dayjs": "^1.11.10",
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"antd": ">=5.8.4",
"react": ">=18",
"react-dom": ">=18",
"react-router-dom": ">=6.4.1"
},
"engines": {
"node": ">=18"
}
}