honojs-middleware/packages/conform-validator/package.json

61 lines
1.4 KiB
JSON

{
"name": "@hono/conform-validator",
"version": "1.0.0",
"description": "Validator middleware using Conform",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts",
"prepack": "yarn build",
"publint": "attw --pack && publint",
"typecheck": "tsc -b tsconfig.json",
"test": "vitest"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/honojs/middleware.git",
"directory": "packages/conform-validator"
},
"homepage": "https://github.com/honojs/middleware",
"peerDependencies": {
"@conform-to/dom": ">=1.1.5",
"hono": ">=4.5.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@conform-to/dom": "^1.1.5",
"@conform-to/yup": "^1.1.5",
"@conform-to/zod": "^1.1.5",
"conform-to-valibot": "^1.10.0",
"publint": "^0.3.9",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"valibot": "^0.36.0",
"vitest": "^3.0.8",
"yup": "^1.4.0",
"zod": "^3.23.8"
}
}