UNPKG

@fivexlabs/conform-react

Version:

🚀 A powerful React library for building dynamic, conditional forms using JSON schemas with React Hook Form integration. Create complex forms declaratively with built-in validation, accessibility, and customizable components. Made with ❤️ by Fivex Labs.

100 lines 2.77 kB
{ "name": "@fivexlabs/conform-react", "version": "1.1.0", "type": "module", "description": "🚀 A powerful React library for building dynamic, conditional forms using JSON schemas with React Hook Form integration. Create complex forms declaratively with built-in validation, accessibility, and customizable components. Made with ❤️ by Fivex Labs.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/types/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "dev": "rollup -c -w", "build": "rollup -c", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src/**/*.{ts,tsx}", "lint:fix": "eslint src/**/*.{ts,tsx} --fix", "type-check": "tsc --noEmit", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build", "example": "cd examples && npm start" }, "keywords": [ "react", "forms", "json-schema", "react-hook-form", "validation", "typescript", "conditional-forms", "dynamic-forms", "form-builder", "form-renderer", "accessibility", "a11y", "fivex-labs" ], "author": { "name": "Fivex Labs", "email": "hello@fivexlabs.com", "url": "https://fivexlabs.com" }, "homepage": "https://github.com/fivexlabs/conform-react#readme", "repository": { "type": "git", "url": "git+https://github.com/fivexlabs/conform-react.git" }, "bugs": { "url": "https://github.com/fivexlabs/conform-react/issues" }, "license": "MIT", "peerDependencies": { "react": ">=18.0.0", "react-dom": ">=18.0.0" }, "dependencies": { "react-hook-form": "^7.48.2", "yup": "^1.4.0", "date-fns": "^3.0.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.6", "@types/jest": "^29.5.12", "@types/node": "^20.11.17", "@types/react": "^18.2.55", "@types/react-dom": "^18.2.19", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.56.0", "eslint-plugin-react": "^7.33.2", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^29.7.0", "react": "^18.2.0", "react-dom": "^18.2.0", "rollup": "^4.10.0", "rollup-plugin-peer-deps-external": "^2.2.4", "typescript": "^5.3.3" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/fivex-labs" }, "engines": { "node": ">=18.0.0", "npm": ">=8.0.0" } }