UNPKG

el-form-react-hooks

Version:

React Hook Form alternative - TypeScript-first useForm hook with enterprise-grade state management. Schema-agnostic validation (Zod, Yup, Valibot), minimal re-renders, advanced form controls.

68 lines 1.59 kB
{ "name": "el-form-react-hooks", "version": "3.10.0", "description": "React Hook Form alternative - TypeScript-first useForm hook with enterprise-grade state management. Schema-agnostic validation (Zod, Yup, Valibot), minimal re-renders, advanced form controls.", "author": "Nichalas Barnes", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/colorpulse6/el-form" }, "homepage": "https://elform.dev/", "keywords": [ "react", "hooks", "form", "forms", "validation", "zod", "yup", "valibot", "typescript", "type-safe", "schema-validation", "form-builder", "form-management", "react-hook-form", "useform", "autoform", "form-state", "field-validation", "react-forms", "schema-first", "typescript-forms" ], "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist" ], "dependencies": { "el-form-core": "^2.2.0" }, "peerDependencies": { "react": ">=16.8.0" }, "devDependencies": { "@testing-library/react": "^14.1.2", "@types/react": "^18.0.0", "jsdom": "^24.0.0", "tsd": "^0.31.0", "tsup": "^8.0.0", "typescript": "^5.8.3", "vitest": "^2.0.0" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "pnpm -w -r build && vitest --environment jsdom --run && tsd --files tsd.test-d.ts" } }