{
  "name": "@test-effective/fakes",
  "version": "0.4.0",
  "description": "Test Effective Fakes",
  "author": "Shai Reznik (HiRez.io)",
  "repository": {
    "type": "git",
    "url": "https://github.com/test-effective/fakes.git"
  },
  "bugs": {
    "url": "https://github.com/test-effective/fakes/issues"
  },
  "homepage": "https://github.com/test-effective/fakes",
  "license": "MIT",
  "keywords": [
    "fakes",
    "faketory",
    "fakepoints",
    "msw",
    "standard-schema",
    "testing",
    "test-effective"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    }
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "files": [
    "*.d.ts",
    "*.mjs",
    "README.md",
    "LICENSE",
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
  },
  "peerDependencies": {
    "@msw/data": "^1.0.0",
    "vite": ">=5.0.0"
  },
  "dependencies": {
    "@standard-schema/spec": "^1.0.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.29.6",
    "@changesets/get-github-info": "^0.6.0",
    "@changesets/types": "^6.1.0",
    "@eslint/js": "^9.35.0",
    "@faker-js/faker": "^10.1.0",
    "@msw/data": "^1.0.0",
    "@types/node": "^24.10.1",
    "@vitest/browser": "^3.2.0",
    "@vitest/browser-playwright": "^4.0.0",
    "dotenv": "^17.2.3",
    "eslint": "^9.8.0",
    "eslint-config-prettier": "^10.1.8",
    "prettier": "^3.6.2",
    "pretty-quick": "^4.2.2",
    "simple-git-hooks": "^2.13.1",
    "tsdown": "^0.16.2",
    "typescript": "^5.5.4",
    "typescript-eslint": "^8.42.0",
    "valibot": "^1.1.0",
    "vite": "^7.2.4",
    "vitest": "^4.0.0"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm fmt.staged && pnpm lint"
  },
  "scripts": {
    "build": "tsdown",
    "change": "changeset",
    "dev": "tsdown --watch --sourcemap",
    "fmt": "prettier --write .",
    "fmt.check": "prettier --check .",
    "fmt.staged": "pretty-quick --staged",
    "lint": "eslint --cache .",
    "lint:fix": "pnpm lint --fix",
    "release": "changeset publish",
    "release.pkg-pr-new": "pnpm dlx pkg-pr-new publish",
    "test": "vitest"
  }
}