-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 854 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 854 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
{
"name": "react-ebus",
"version": "1.0.1",
"main": "src/index.js",
"scripts": {
"build": "babel src -d dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/saurabhcoded/react-ebus.git"
},
"keywords": [
"react",
"component",
"npm",
"mitt",
"events",
"emit",
"listen",
"eventbus"
],
"author": "saurabhcoded",
"license": "MIT",
"description": "A lightweight and flexible event bus for React, designed to simplify inter-component communication using event-driven architecture.",
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"mitt": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3"
}
}