Skip to main content
Module

x/valibot/package.json

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Latest
File
{ "name": "valibot", "description": "The modular and type safe schema library for validating structural data", "version": "0.31.0-rc.9", "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": { "play": "tsm ./playground.ts", "test": "vitest --typecheck", "coverage": "vitest run --coverage --isolate", "lint": "eslint \"src/**/*.ts*\" && tsc --noEmit", "eslint.fix": "eslint \"src/**/*.ts*\" --fix", "format": "prettier --write ./src", "format.check": "prettier --check ./src", "build": "tsup", "publish": "npm publish && npx jsr publish" }, "devDependencies": { "@types/eslint": "^8.56.7", "@typescript-eslint/eslint-plugin": "^7.5.0", "@typescript-eslint/parser": "^7.5.0", "@vitest/coverage-v8": "^1.4.0", "eslint": "^8.57.0", "eslint-plugin-import": "^2.29.1", "eslint-plugin-jsdoc": "^48.2.2", "eslint-plugin-redos-detector": "^2.4.0", "eslint-plugin-regexp": "^2.4.0", "eslint-plugin-security": "^2.1.1", "jsdom": "^24.0.0", "tsm": "^2.3.0", "tsup": "^8.0.2", "typescript": "^5.4.3", "vite": "^5.2.7", "vitest": "1.4.0" }}