mui-drawer 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +126 -0
- package/dist/index.d.ts +94 -0
- package/dist/mui-drawer.es.js +2079 -0
- package/package.json +111 -0
package/package.json
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mui-drawer",
|
|
3
|
+
"description": "A reusable drawer component for React applications built with Material-UI (MUI).",
|
|
4
|
+
"author": "Bikash Das <bikashdas0108@gmail.com> (https://github.com/bikashdas0108)",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/viplatform/mui-drawer/issues"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/viplatform/mui-drawer#readme",
|
|
10
|
+
"version": "1.0.0",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"main": "./dist/mui-drawer.es.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/mui-drawer.es.js",
|
|
20
|
+
"default": "./dist/mui-drawer.es.js"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/viplatform/mui-drawer.git"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"react",
|
|
29
|
+
"typescript",
|
|
30
|
+
"mui",
|
|
31
|
+
"javascript",
|
|
32
|
+
"material"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "yarn lint && vite build",
|
|
36
|
+
"lint": "tsc --noEmit && eslint",
|
|
37
|
+
"lint:fix": "yarn lint --fix",
|
|
38
|
+
"storybook": "storybook dev -p 6006",
|
|
39
|
+
"build-storybook": "storybook build",
|
|
40
|
+
"test": "vitest",
|
|
41
|
+
"release": "standard-version",
|
|
42
|
+
"coverage": "vitest run --coverage",
|
|
43
|
+
"prepare": "husky",
|
|
44
|
+
"prepublishOnly": "yarn build"
|
|
45
|
+
},
|
|
46
|
+
"standard-version": {
|
|
47
|
+
"scripts": {
|
|
48
|
+
"prerelease": "yarn build"
|
|
49
|
+
},
|
|
50
|
+
"skip": {
|
|
51
|
+
"changelog": true
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"@emotion/react": "^11.13.0",
|
|
56
|
+
"@emotion/styled": "^11.13.0",
|
|
57
|
+
"@mui/material": "^7.0.0",
|
|
58
|
+
"@types/react": "^18.0.0 || ^19.0.0",
|
|
59
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
60
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
61
|
+
},
|
|
62
|
+
"peerDependenciesMeta": {
|
|
63
|
+
"@types/react": {
|
|
64
|
+
"optional": true
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"@emotion/react": "^11.13.0",
|
|
69
|
+
"@emotion/styled": "^11.13.0",
|
|
70
|
+
"@mui/icons-material": "^7.1.0",
|
|
71
|
+
"@mui/lab": "^7.0.0-beta.12",
|
|
72
|
+
"@mui/material": "^7.0.0",
|
|
73
|
+
"@types/react": "^18.0.0 || ^19.0.0",
|
|
74
|
+
"classnames": "^2.5.1",
|
|
75
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
76
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
77
|
+
},
|
|
78
|
+
"devDependencies": {
|
|
79
|
+
"@emotion/react": "^11.14.0",
|
|
80
|
+
"@emotion/styled": "^11.14.0",
|
|
81
|
+
"@mui/material": "^7.0.2",
|
|
82
|
+
"@storybook/addon-actions": "^8.6.12",
|
|
83
|
+
"@storybook/addon-essentials": "^8.6.12",
|
|
84
|
+
"@storybook/addon-interactions": "^8.6.12",
|
|
85
|
+
"@storybook/addon-links": "^8.6.12",
|
|
86
|
+
"@storybook/react": "^8.6.12",
|
|
87
|
+
"@storybook/react-vite": "^8.6.12",
|
|
88
|
+
"@storybook/test": "^8.6.12",
|
|
89
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
90
|
+
"@testing-library/react": "^16.3.0",
|
|
91
|
+
"@testing-library/user-event": "^14.6.1",
|
|
92
|
+
"@types/lodash": "^4.17.17",
|
|
93
|
+
"@types/node": "^22.14.1",
|
|
94
|
+
"@types/react-dom": "^19.1.5",
|
|
95
|
+
"@viclafouch/eslint-config-viclafouch": "4.22.0",
|
|
96
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
97
|
+
"eslint": "^9.24.0",
|
|
98
|
+
"husky": "^9.1.7",
|
|
99
|
+
"jsdom": "^26.1.0",
|
|
100
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
101
|
+
"sass-embedded": "^1.89.0",
|
|
102
|
+
"standard-version": "^9.5.0",
|
|
103
|
+
"storybook": "^8.6.12",
|
|
104
|
+
"terser": "^5.39.2",
|
|
105
|
+
"typescript": "^5.8.3",
|
|
106
|
+
"vite": "^6.2.6",
|
|
107
|
+
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
108
|
+
"vite-plugin-dts": "^4.5.3",
|
|
109
|
+
"vitest": "^3.1.1"
|
|
110
|
+
}
|
|
111
|
+
}
|