-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.57 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
{
"name": "mitt-react",
"private": false,
"version": "1.1.0",
"description": "Lightweight utility for integrating mitt with React",
"license": "MIT",
"type": "module",
"main": "./dist/mitt-react.umd.js",
"module": "./dist/mitt-react.es.js",
"exports": {
".": {
"import": "./dist/mitt-react.es.js",
"require": "./dist/mitt-react.umd.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/svnrnns/mitt-react"
},
"keywords": [
"react",
"react-hooks",
"event-emitter",
"mitt",
"event-management",
"react-events",
"event-subscription",
"event-handling",
"react-functional-components",
"mitt-integration",
"event-listener-hook",
"react-utility",
"react-event-emitter",
"event-emitters-in-react",
"react-hook-for-events",
"event-management-library"
],
"bugs": {
"url": "https://github.com/svnrnns/mitt-react/issues"
},
"homepage": "https://github.com/svnrnns/mitt-react",
"author": "seven rings (https://twitter.com/svnrnns)",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@vitejs/plugin-react": "^4.3.1",
"mitt": "^3.0.1",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"vite": "^5.2.11"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
}
}