{
  "name": "vitest-fail-on-console",
  "version": "0.10.1",
  "description": "Utility to make vitest tests fail when console.error() or console.warn() are used",
  "scripts": {
    "prebuild": "rm -rf dist",
    "build": "vite build",
    "lint": "yarn eslint .",
    "test": "yarn playwright install && yarn test:only",
    "test:only": "vitest related ./tests/index.spec.ts --run",
    "release": "standard-version",
    "release:patch": "standard-version --release-as patch",
    "release:minor": "standard-version --release-as minor",
    "release:major": "standard-version --release-as major"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/thomasbrodusch/vitest-fail-on-console.git"
  },
  "keywords": [
    "vitest",
    "testing",
    "utility",
    "console-warning"
  ],
  "author": "Thomas Brodusch <brodusch.thomas@gmail.com>",
  "license": "MIT",
  "type": "module",
  "files": [
    "dist",
    "!dist/tests"
  ],
  "main": "./dist/vitest-fail-on-console.es.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/vitest-fail-on-console.es.js"
    }
  },
  "types": "./dist/index.d.ts",
  "bugs": {
    "url": "https://github.com/thomasbrodusch/vitest-fail-on-console/issues"
  },
  "homepage": "https://github.com/thomasbrodusch/vitest-fail-on-console#readme",
  "devDependencies": {
    "@commitlint/cli": "19.8.1",
    "@commitlint/config-conventional": "19.8.1",
    "@eslint/js": "^9.32.0",
    "@vitest/browser": "3.2.4",
    "eslint": "^9.32.0",
    "globals": "^16.3.0",
    "husky": "9.1.7",
    "playwright": "^1.55.0",
    "prettier": "3.6.2",
    "standard-version": "9.5.0",
    "typescript": "5.8.3",
    "typescript-eslint": "^8.38.0",
    "vite": "7.0.6",
    "vite-plugin-dts": "4.5.4",
    "vitest": "3.2.4"
  },
  "dependencies": {
    "chalk": "^5.4.1"
  },
  "peerDependencies": {
    "@vitest/utils": ">=0.26.2",
    "vite": ">=4.5.2",
    "vitest": ">=0.26.2"
  }
}
