Skip to main content
Module

x/valibot/package.json

The modular and type safe schema library for validating structural data 🤖
Latest
File
{ "name": "valibot", "description": "The modular and TypeScript-first schema library", "version": "0.30.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": { "play": "tsm ./playground.ts", "test": "vitest", "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.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", "eslint-plugin-import": "^2.28.1", "eslint-plugin-jsdoc": "^46.8.2", "eslint-plugin-redos-detector": "^2.1.1", "eslint-plugin-regexp": "^1.15.0", "eslint-plugin-security": "^1.7.1", "jsdom": "^22.1.0", "tsm": "^2.3.0", "tsup": "^8.0.1", "typescript": "^5.3.3", "vite": "^4.4.6", "vitest": "^0.33.0" }}