-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.59 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "react-capture-events",
"version": "0.4.1",
"description": "A React library to capture and display events",
"author": "Gus",
"repository": {
"type": "git",
"url": "https://github.com/gusintheeshell/react-capture-events"
},
"private": false,
"license": "MIT",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/lib/main.d.ts",
"default": "./dist/main.js"
}
},
"keywords": [
"react",
"events",
"capture-events",
"event-logging",
"react-library",
"debugging",
"user-interaction",
"event-monitoring",
"frontend",
"event-tracking",
"react-hooks",
"service-worker",
"real-time-events",
"event-listener",
"event-management",
"UI-components",
"performance-analysis",
"event-auditing",
"testing"
],
"scripts": {
"dev": "vite",
"test": "vitest",
"test:no-watch": "vitest --watch=false --bail=0",
"coverage": "vitest --coverage",
"build": "tsc -b ./tsconfig.lib.json && vite build",
"lint": "eslint .",
"preview": "vite preview",
"format": "prettier --write ."
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"lucide-react": "^0.451.0",
"react-json-view": "^1.21.3"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.12.0",
"@rollup/plugin-inject": "^5.0.5",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.7.5",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/testing-library__react": "^10.2.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/browser": "^2.1.2",
"eslint": "^9.12.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"glob": "^11.0.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.8.1",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.4",
"vite-plugin-lib-inject-css": "^2.1.1",
"vitest": "^2.1.2"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.3.1",
"react-dom": "^17.0.0 || ^18.3.1"
},
"sideEffects": [
"**/*.css"
]
}