UNPKG

houseform

Version:

Simple to use React forms, where your validation and UI code live together in harmony.

125 lines (124 loc) 3.44 kB
{ "name": "houseform", "description": "Simple to use React forms, where your validation and UI code live together in harmony.", "version": "1.13.0", "type": "module", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/houseform/houseform" }, "homepage": "https://houseform.dev", "bugs": "https://github.com/houseform/houseform/issues", "scripts": { "dev": "vite", "build": "tsc && vite build", "preview": "vite preview", "test": "vitest", "bench": "vitest bench", "typecheck": "vitest typecheck", "coverage": "vitest run --coverage", "prepublishOnly": "npm run build", "lint": "eslint lib/**/*.{js,jsx,ts,tsx}", "format": "eslint lib/**/*.{js,jsx,ts,tsx} --fix", "docs:lint": "eslint docs/**/*.{js,jsx,ts,tsx,md,mdx}", "docs:format": "eslint docs/**/*.{js,jsx,ts,tsx,md,mdx} --fix", "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs", "docs:preview": "vitepress preview docs", "semantic-release": "semantic-release", "doctoc": "doctoc" }, "peerDependencies": { "react": ">=16.8.0", "zod": ">=3.9.0" }, "resolutions": { "tinybench": "2.4.0" }, "devDependencies": { "@hookform/error-message": "^2.0.1", "@hookform/resolvers": "^2.9.11", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^14.4.3", "@types/react": "^18.0.26", "@types/react-dom": "^18.0.9", "@types/react-native": "^0.71.1", "@types/testing-library__jest-dom": "^5.14.5", "@typescript-eslint/eslint-plugin": "^5.40.0", "@typescript-eslint/parser": "^5.40.0", "@vitejs/plugin-react": "^3.0.0", "@vitest/coverage-c8": "0.29.3", "all-contributors-cli": "^6.24.0", "doctoc": "^2.2.1", "eslint": "^8.33.0", "eslint-config-prettier": "^8.5.0", "eslint-config-react-app": "^7.0.1", "eslint-plugin-mdx": "^2.0.5", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react-hooks": "^4.6.0", "formik": "^2.2.9", "jsdom": "^21.1.0", "prettier": "^2.8.3", "react": "^18.2.0", "react-dom": "^18.2.0", "react-hook-form": "^7.43.1", "react-native-web": "^0.18.12", "semantic-release": "^20.1.0", "ts-toolbelt": "^9.6.0", "typescript": "^4.9.5", "vite": "^4.2.0", "vite-plugin-dts": "^1.7.3", "vitepress": "1.0.0-alpha.60", "vitest": "0.29.3", "vue": "^3.2.45", "zod": "^3.20.2", "zod-formik-adapter": "^1.2.0" }, "files": [ "dist", "lib", "package.json", "README.md", "LICENSE", "docs/**/*.md", "docs/public/logo.svg" ], "main": "./dist/houseform.umd.cjs", "module": "./dist/houseform.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/houseform.js", "require": "./dist/houseform.umd.cjs", "types": "./dist/index.d.ts" } }, "pnpm": { "peerDependencyRules": { "ignoreMissing": [ "@algolia/client-search", "@babel/plugin-syntax-flow", "@babel/plugin-transform-react-jsx", "@testing-library/dom" ] } }, "release": { "branches": [ "+([0-9])?(.{+([0-9]),x}).x", "main", "next", "next-major", { "name": "beta", "prerelease": true }, { "name": "alpha", "prerelease": true } ] } }