-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.4 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.4 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
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
106
107
{
"name": "usetargethandler",
"version": "1.4.5",
"private": false,
"description": "use-target-hook te permite manejar formularios de manera sencilla y eficiente, sin necesidad de escribir código repetitivo.",
"keywords": [
"react",
"hook",
"form",
"form state",
"form validation",
"web development",
"frontend",
"javascript",
"state management",
"form handling",
"react hook form",
"form builder",
"frontend library",
"form validation rules",
"conditional validation",
"async validation",
"form submission handling"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/GianfrancoD/useTargetHandler.git"
},
"author": {
"name": "GianfrancoDB"
},
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"usehttprequest": "^1.0.0"
},
"peerDependenciesMeta": {
"usehttprequest": {
"optional": true
}
},
"dependencies": {
"dompurify": "^3.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"axios": "^1.7.3",
"dotenv": "^16.4.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"typescript": "^5.0.0",
"web-vitals": "^2.1.4",
"zod": "^4.1.12"
},
"scripts": {
"start": "react-scripts start",
"build": "tsc --project tsconfig.build.json",
"build:demo": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}