{
  "name": "validation-enhancer",
  "description": "The easiest, most lightweight validation system.",
  "version": "1.0.3",
  "type": "module",
  "author": "Alistair Davidson",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "git+https://gitlab.com/alistairldavidson/validation-enhancer.git"
  },
  "peerDependencies": {
    "zod": ">=3.0.0"
  },
  "peerDependenciesMeta": {
    "zod": {
      "optional": true
    }
  },
  "files": [
    "dist/"
  ],
  "main": "./dist/validation-enhancer.js",
  "types": "./dist/validation-enhancer.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/validation-enhancer.d.ts",
        "default": "./dist/validation-enhancer.js"
      }
    }
  },
  "scripts": {
    "demo": "npx open-cli http://localhost:3000/demo/demo.html & npx serve -l 3000 --no-clipboard",
    "build": "npx rollup -c rollup.config.ts && tsc --emitDeclarationOnly",
    "lint": "npx eslint src/",
    "format": "npx prettier --write 'src/**/*.ts'",
    "format:check": "npx prettier --check 'src/**/*.ts'",
    "test": "npm run test:unit",
    "test:unit": "npx vitest run",
    "test:e2e": "npx playwright test",
    "test:a11y": "npx playwright test e2e/accessibility.spec.ts & npx playwright test e2e/aria-states.spec.ts & npx playwright test e2e/screen-reader.spec.ts",
    "test:all": "npm run demo & npm run test:unit & npm run test:e2e"
  },
  "devDependencies": {
    "@axe-core/playwright": "^4.11.2",
    "@eslint/js": "^10.0.1",
    "@guidepup/guidepup": "^0.24.1",
    "@guidepup/virtual-screen-reader": "^0.32.1",
    "@playwright/test": "^1.59.1",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-replace": "^6.0.3",
    "@rollup/plugin-terser": "^1.0.0",
    "@rollup/plugin-typescript": "^12.3.0",
    "eslint": "^10.2.1",
    "jsdom": "^29.0.2",
    "prettier": "^3.8.3",
    "rollup": "^4.60.2",
    "tslib": "^2.8.1",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.59.0",
    "vitest": "^4.1.5",
    "zod": "^4.3.6"
  }
}
