-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1009 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1009 Bytes
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
{
"name": "ezmodule",
"version": "1.5.2",
"description": "A collection of easy-to-use React components",
"main": "dist/ezmodules.umd.js",
"module": "dist/ezmodules.es.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/ezmodules.es.js",
"require": "./dist/ezmodules.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "vite",
"preview": "vite preview"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.0.0",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.0.0",
"vite": "^4.0.0"
},
"author": "Sourav Chhimpa",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Souravhere/EZModuleLib.git"
},
"homepage": "https://ez-modules.vercel.app/",
"bugs": {
"url": "https://github.com/Souravhere/EZModuleLib/issues"
}
}