{
  "name": "@schemasjs/valibot-numbers",
  "version": "1.1.1",
  "description": "Javascript (and Typescript) valibot number schemas",
  "author": "Cristobal Contreras Rubio",
  "license": "MIT",
  "homepage": "https://codeberg.org/crisconru/schemasjs/src/branch/main/schemas/valibot/numbers/README.md",
  "repository": {
    "type": "git",
    "url": "git+https://codeberg.org/crisconru/schemasjs.git",
    "directory": "schemas/valibot/numbers"
  },
  "bugs": {
    "url": "https://codeberg.org/crisconru/schemasjs/issues"
  },
  "keywords": [
    "uint",
    "int",
    "float",
    "c-types",
    "valibot",
    "types",
    "schemas",
    "modular",
    "typescript",
    "schema",
    "validation",
    "parsing",
    "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"
  },
  "peerDependencies": {
    "valibot": "^1.4.0"
  },
  "scripts": {
    "build": "tsup",
    "lint": "biome check .",
    "format": "biome check --write .",
    "test": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}