{
  "name": "fluentvalidation-ts",
  "version": "5.0.0",
  "description": "A TypeScript-first library for building strongly-typed validation rules",
  "keywords": [
    "fluent",
    "validation",
    "validator",
    "typescript",
    "form",
    "formik",
    "react-hook-form",
    "fluentvalidation"
  ],
  "homepage": "https://github.com/AlexJPotter/fluentvalidation-ts",
  "main": "dist/index.js",
  "author": "Alex Potter <potter.alexander.james@gmail.com>",
  "license": "Apache-2.0",
  "private": false,
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AlexJPotter/fluentvalidation-ts.git"
  },
  "bugs": {
    "url": "https://github.com/AlexJPotter/fluentvalidation-ts/issues"
  },
  "umd:main": "dist/index.global.js",
  "module": "dist/index.mjs",
  "typings": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "watch": "tsc --noEmit --watch",
    "build": "cross-env NODE_ENV=production tsup src/index.ts --dts --minify --treeshake --format cjs,esm,iife --global-name fluentvalidation --sourcemap",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint --fix",
    "lint:check": "eslint",
    "prettier": "prettier --write \"{src,test}/**/*.ts\"",
    "prettier:check": "prettier --check \"{src,test}/**/*.ts\"",
    "typecheck": "tsc --noEmit && tsc --noEmit --project tsconfig.test.json",
    "prepare": "husky"
  },
  "devDependencies": {
    "@eslint/js": "^9.26.0",
    "@swc/core": "^1.3.56",
    "@types/jest": "^29.5.14",
    "@typescript-eslint/parser": "^8.32.0",
    "cross-env": "^7.0.3",
    "eslint": "^9.26.0",
    "eslint-import-resolver-typescript": "^4.3.4",
    "eslint-plugin-import": "^2.31.0",
    "globals": "^16.1.0",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "prettier": "^3.5.3",
    "pretty-quick": "^4.1.1",
    "ts-jest": "^29.3.2",
    "ts-node": "^10.9.2",
    "tslib": "^2.3.0",
    "tsup": "^8.4.0",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.32.0"
  }
}
