@valibot/to-json-schema
Version:
The official JSON schema converter for Valibot
75 lines • 1.83 kB
JSON
{
"name": "@valibot/to-json-schema",
"description": "The official JSON schema converter for Valibot",
"version": "1.5.0",
"license": "MIT",
"author": "Fabian Hiller",
"homepage": "https://valibot.dev",
"contributors": [
{
"name": "Guillaume Cornut"
}
],
"repository": {
"type": "git",
"url": "https://github.com/open-circle/valibot"
},
"keywords": [
"valibot",
"schema",
"converter",
"json-schema"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.13",
"eslint": "^9.39.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.4.0",
"eslint-plugin-security": "^3.0.1",
"globals": "^16.5.0",
"tsdown": "^0.16.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"valibot": "^1.2.0",
"vite": "^7.2.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "4.0.13"
},
"peerDependencies": {
"valibot": "^1.2.0"
},
"scripts": {
"test": "vitest --typecheck",
"coverage": "vitest run --coverage --isolate",
"lint": "eslint \"src/**/*.ts*\" && tsc --noEmit && deno check ./src/index.ts",
"lint.fix": "eslint \"src/**/*.ts*\" --fix",
"format": "prettier --write ./src",
"format.check": "prettier --check ./src",
"build": "tsdown"
}
}