-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.01 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
{
"name": "react-use-form-lite",
"description": "Hook de formularios para React moderno: rápido, ligero, sin dependencias y compatible con TypeScript. Soporta inputs, selects, checkboxes, radios y archivos con validación simple.",
"version": "1.27.0",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --out-dir dist"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"@types/react": "^19.1.2"
},
"keywords": [
"react",
"react hook",
"useForm",
"form hook",
"react form",
"form state management",
"custom hook react",
"react use form",
"form management",
"lightweight react form",
"typescript form hook",
"react typescript form",
"react form validation",
"form handling react",
"react input handler",
"input binding react",
"react checkbox input",
"react radio input",
"react select input",
"react file input",
"react form file upload",
"react form with TypeScript",
"react hook form alternative",
"simple react form library",
"minimal form hook react",
"react-use-form-lite",
"react form hook tutorial",
"react controlled inputs",
"validate react form",
"react form component"
],
"author": {
"name": "Urian Viera",
"email": "urianwebdeveloper@gmail.com",
"url": "https://www.urianviera.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/urian121/react-use-form-lite/issues",
"email": "urianwebdeveloper@gmail.com"
},
"homepage": "https://react-use-form-lite.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/urian121/react-use-form-lite.git"
}
}