{
  "name": "playwright-testmo-reporter",
  "version": "1.19.2",
  "description": "A Playwright Reporter for the Testmo SaaS.",
  "main": "dist/reporter.js",
  "module": "dist/reporter.mjs",
  "types": "dist/reporter.d.ts",
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jonasclaes/playwright-testmo-reporter.git"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "keywords": [
    "playwright",
    "testmo",
    "reporter"
  ],
  "author": "Jonas Claes <jonas@jonasclaes.be>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/jonasclaes/playwright-testmo-reporter/issues"
  },
  "homepage": "https://github.com/jonasclaes/playwright-testmo-reporter#readme",
  "peerDependencies": {
    "@playwright/test": "^1.56.0",
    "playwright-core": "^1.56.0"
  },
  "dependencies": {
    "colors": "^1.4.0",
    "fast-xml-parser": "^5.3.4",
    "stack-utils": "^2.0.6"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.5.2",
    "@changesets/cli": "^2.29.8",
    "@changesets/config": "^3.1.2",
    "@eslint/js": "^9.39.2",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.10.9",
    "@types/stack-utils": "^2.0.3",
    "eslint": "^9.39.2",
    "eslint-config-prettier": "^10.1.8",
    "globals": "^17.2.0",
    "husky": "^9.1.7",
    "jest": "^30.2.0",
    "lint-staged": "^16.2.7",
    "prettier": "^3.8.1",
    "ts-jest": "^29.4.6",
    "ts-node": "^10.9.2",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.54.0"
  },
  "lint-staged": {
    "**/*": "prettier --write --ignore-unknown",
    "*.{js,ts}": "eslint --fix"
  },
  "scripts": {
    "build": "tsup src/reporter.ts --format cjs,esm --dts",
    "build:watch": "tsup src/reporter.ts --format cjs,esm --dts --watch",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "format": "prettier --write .",
    "lint": "eslint --fix .",
    "release": "pnpm build && changeset publish"
  }
}