-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.36 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
{
"name": "@iimm/s3-uploader",
"version": "1.6.0",
"description": "s3-uploader react component",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"dev": "father dev",
"build": "father build",
"build:deps": "father prebundle",
"prepublishOnly": "father doctor && npm run build"
},
"keywords": [
"react component",
"mui",
"s3-uploader",
"multipartUpload",
"chunkUpload"
],
"repository": {
"url": "https://github.com/liudichen/s3-uploader.git",
"type": "https"
},
"author": {
"name": "liudichen",
"url": "http://www.iimm.ink",
"email": "[email protected]"
},
"license": "MIT",
"files": [
"dist",
"compiled"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/spark-md5": "^3.0.4",
"father": "^4.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.15.11",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@iimm/icons": "^1.1.0",
"@tabler/icons-react": "^2.47.0",
"ahooks": "^3.8.1",
"axios": "^1.7.4",
"react-dropzone": "^14.2.3",
"spark-md5": "^3.0.2"
}
}