-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
75 lines (75 loc) · 2.05 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
{
"name": "react-mui-fileuploader",
"version": "0.5.2",
"description": "🗃️ React mui fileuploader is a react component based on @mui v5 that allows you to upload files with an awesome ui component",
"main": "dist/index.esm.js",
"module": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rouftom/react-mui-fileuploader.git"
},
"keywords": [
"react",
"material",
"file",
"upload",
"uploader",
"@mui",
"material-ui"
],
"author": "Muller Roufaou <rouftomb@gmail.com> (https://github.com/rouftom)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rouftom/react-mui-fileuploader/issues"
},
"homepage": "https://github.com/rouftom/react-mui-fileuploader#readme",
"peerDependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.2",
"@types/react": "^18.0.26",
"prop-types": "^15.8.1"
},
"sideEffects": false,
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"autoprefixer": "^10.4.13",
"react": "^18.2.0",
"rollup": "^3.9.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.9.4"
}
}