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

56 lines
1.3 KiB
JSON

{
"name": "@hono/standard-validator",
"version": "0.1.2",
"description": "Validator middleware using Standard Schema",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts",
"prepack": "yarn build",
"publint": "attw --pack && publint",
"test": "vitest"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/honojs/middleware.git",
"directory": "packages/standard-validator"
},
"homepage": "https://github.com/honojs/middleware",
"peerDependencies": {
"@standard-schema/spec": "1.0.0",
"hono": ">=3.9.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@standard-schema/spec": "1.0.0",
"arktype": "^2.0.0-rc.26",
"publint": "^0.3.9",
"tsup": "^8.4.0",
"valibot": "^1.0.0-beta.9",
"vitest": "^3.0.8",
"zod": "^3.24.0"
}
}