UNPKG

@conform-to/yup

Version:

Conform helpers for integrating with yup

66 lines 1.65 kB
{ "name": "@conform-to/yup", "description": "Conform helpers for integrating with yup", "homepage": "https://conform.guide", "license": "MIT", "version": "1.10.1", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "module": "./dist/index.mjs", "import": "./dist/index.mjs", "require": "./dist/index.js", "default": "./dist/index.mjs" } }, "files": [ "./dist/**/*.{js,mjs}", "./dist/**/*.d.ts" ], "repository": { "type": "git", "url": "https://github.com/edmundhung/conform", "directory": "packages/conform-yup" }, "bugs": { "url": "https://github.com/edmundhung/conform/issues" }, "dependencies": { "@conform-to/dom": "1.10.1" }, "peerDependencies": { "yup": ">=0.32.0" }, "devDependencies": { "@babel/core": "^7.17.8", "@babel/preset-env": "^7.20.2", "@babel/preset-typescript": "^7.20.2", "@rollup/plugin-babel": "^5.3.1", "@rollup/plugin-node-resolve": "^13.3.0", "rollup-plugin-copy": "^3.4.0", "rollup": "^2.79.1", "yup": "^0.32.11" }, "keywords": [ "constraint-validation", "form", "form-validation", "html", "progressive-enhancement", "validation", "yup" ], "sideEffects": false, "scripts": { "build:js": "rollup -c", "build:ts": "tsc --project ./tsconfig.build.json", "build": "pnpm run \"/^build:.*/\"", "dev:js": "pnpm run build:js --watch", "dev:ts": "pnpm run build:ts --watch", "dev": "pnpm run \"/^dev:.*/\"", "typecheck": "tsc" } }