Skip to main content
Module

x/valibot/package.json

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Go to Latest
File
{ "name": "valibot", "description": "The modular and TypeScript-first schema library", "version": "0.11.0", "license": "MIT", "author": "Fabian Hiller", "homepage": "https://valibot.dev", "repository": { "type": "git", "url": "https://github.com/fabian-hiller/valibot" }, "keywords": [ "modular", "typescript", "schema", "validation", "parsing", "bundle-size", "type-safe", "runtime" ], "type": "module", "main": "./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" } } }, "sideEffects": false, "files": [ "dist" ], "publishConfig": { "access": "public" }, "scripts": { "playground": "node ./playground.js", "test": "vitest", "coverage": "vitest run --coverage", "lint": "eslint \"src/**/*.ts*\" && tsc --noEmit", "format": "prettier --write ./src", "format.check": "prettier --check ./src", "build": "tsup", "publish": "npm publish" }, "devDependencies": { "@types/eslint": "^8.40.2", "@typescript-eslint/eslint-plugin": "^5.60.0", "@typescript-eslint/parser": "^5.60.0", "@vitest/coverage-v8": "^0.33.0", "eslint": "^8.43.0", "jsdom": "^22.1.0", "tsup": "^7.1.0", "typescript": "^5.1.3", "vite": "^4.4.6", "vitest": "^0.33.0" }}