el-form-react
Version:
Complete React form library - useForm hooks + AutoForm components with flexible validation (Zod, Yup, Valibot, custom). TypeScript-first with modern form management.
91 lines • 2.09 kB
JSON
{
"name": "el-form-react",
"version": "3.3.4",
"description": "Complete React form library - useForm hooks + AutoForm components with flexible validation (Zod, Yup, Valibot, custom). TypeScript-first with modern form management.",
"author": "Nichalas Barnes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/colorpulse6/el-form"
},
"homepage": "https://colorpulse6.github.io/el-form/",
"bugs": {
"url": "https://github.com/colorpulse6/el-form/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/colorpulse6"
},
"keywords": [
"react",
"form",
"forms",
"validation",
"zod",
"yup",
"valibot",
"typescript",
"hooks",
"components",
"autoform",
"useform",
"type-safe",
"schema-validation",
"form-library",
"form-management",
"react-hook-form",
"form-builder",
"schema-first",
"modern-forms",
"typescript-forms",
"declarative-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"
},
"./hooks": {
"types": "./dist/hooks.d.ts",
"import": "./dist/hooks.mjs",
"require": "./dist/hooks.js"
},
"./components": {
"types": "./dist/components.d.ts",
"import": "./dist/components.mjs",
"require": "./dist/components.js"
},
"./styles.css": "./src/styles.css"
},
"files": [
"dist",
"src/styles.css"
],
"dependencies": {
"zod": "^3.22.0",
"el-form-core": "^1.3.0",
"el-form-react-hooks": "^3.4.0",
"el-form-react-components": "^3.4.0"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"tailwindcss": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^18.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
}
}