-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 KB
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
{
"name": "react-event-context",
"version": "1.0.0",
"description": "A lightweight library for managing events in React applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"react",
"events",
"hooks",
"typescript"
],
"author": "jonmumm",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"zod": "^3.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"zod": "^3.0.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jonmumm/react-event-context.git"
},
"bugs": {
"url": "https://github.com/jonmumm/react-event-hooks/issues"
},
"homepage": "https://github.com/jonmumm/react-event-hooks#readme"
}