forked from viclafouch/mui-file-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.91 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "mui-file-input",
"description": "A file input designed for the React library MUI",
"author": "Victor de la Fouchardiere <[email protected]> (https://github.com/viclafouch)",
"license": "MIT",
"bugs": {
"url": "https://github.com/viclafouch/mui-file-input/issues"
},
"homepage": "https://viclafouch.github.io/mui-file-input",
"version": "3.0.2",
"files": [
"dist"
],
"main": "./dist/mui-file-input.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/mui-file-input.es.js",
"types": "./dist/index.d.ts",
"default": "./dist/mui-file-input.es.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/viclafouch/mui-file-input.git"
},
"keywords": [
"react",
"typescript",
"input",
"mui",
"javascript",
"material",
"ui",
"form",
"file"
],
"scripts": {
"build": "npm run lint && npm run test -- run && vite build",
"lint": "tsc && eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"release": "standard-version",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"standard-version": {
"scripts": {
"prerelease": "npm run build"
},
"skip": {
"changelog": true
}
},
"peerDependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/material": "^5.0.0",
"@types/react": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"dependencies": {
"pretty-bytes": "^6.1.1"
},
"devDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.16",
"@mui/material": "^5.14.17",
"@storybook/addon-actions": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-vite": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.1",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@viclafouch/eslint-config-viclafouch": "4.4.0",
"@vitejs/plugin-react": "^4.1.1",
"@vitest/coverage-c8": "^0.24.3",
"eslint": "^8.53.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"standard-version": "^9.5.0",
"storybook": "^7.5.3",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
}
}