├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── eslint.config.mjs ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src ├── core │ ├── helpers.ts │ ├── index.ts │ └── parsers.ts ├── index.ts └── nuxt.ts ├── test ├── body.test.ts ├── helpers.test.ts ├── input.test.ts ├── params.test.ts └── query.test.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | playground 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - playground 3 | -------------------------------------------------------------------------------- /src/core/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/src/core/helpers.ts -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/core/parsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/src/core/parsers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './core' 2 | -------------------------------------------------------------------------------- /src/nuxt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/src/nuxt.ts -------------------------------------------------------------------------------- /test/body.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/test/body.test.ts -------------------------------------------------------------------------------- /test/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/test/helpers.test.ts -------------------------------------------------------------------------------- /test/input.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/test/input.test.ts -------------------------------------------------------------------------------- /test/params.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/test/params.test.ts -------------------------------------------------------------------------------- /test/query.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/test/query.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intevel/h3-valibot/HEAD/tsconfig.json --------------------------------------------------------------------------------