-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.46 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
{
"name": "react-material-file-upload",
"version": "0.0.4",
"description": "File upload component for React with Material UI components",
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"default": "./lib/index.js"
}
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iamchathu/react-material-file-upload.git"
},
"author": "Chathu Vishwajith <iam@chathu.me>",
"license": "MIT",
"scripts": {
"clean": "rimraf lib/",
"types:check": "tsc -p tsconfig.json --noEmit",
"build": "tsup",
"lint": "eslint 'src/**/*.{ts,tsx}' --quiet --fix ",
"prepublishOnly": "pnpm clean && pnpm build",
"semantic-release": "semantic-release",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^7.0.0",
"@mui/material": "^7.0.0",
"@mui/system": "^7.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/compat": "^2.0.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-docs": "^10.3.5",
"@storybook/addon-links": "^10.3.5",
"@storybook/react-vite": "^10.3.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "^10.3.5",
"husky": "^7.0.2",
"lint-staged": "^16.3.2",
"prettier": "^3.8.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.3",
"storybook": "^10.3.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
"dependencies": {
"react-dropzone": "^15.0.0"
},
"keywords": [
"react",
"react component",
"file upload",
"material ui",
"upload"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"volta": {
"node": "24.14.0"
}
}