{
  "name": "tape-six-playwright",
  "version": "1.2.2",
  "description": "Playwright-based browser test runner for tape-six. Runs each test file in its own browser context (Chromium, Firefox, or WebKit). Works with Node, Deno, and Bun.",
  "type": "module",
  "bin": {
    "tape6-playwright": "bin/tape6-playwright.js",
    "tape6-playwright-node": "bin/tape6-playwright-node.js"
  },
  "scripts": {
    "lint": "prettier --check .",
    "lint:fix": "prettier --write .",
    "ts-check": "tsc --noEmit",
    "js-check": "tsc --project tsconfig.check.json",
    "browser": "playwright install chromium",
    "browser:all": "playwright install chromium firefox webkit",
    "postinstall": "playwright install chromium",
    "test": "node ./bin/tape6-playwright.js --start-server --flags FO",
    "test:firefox": "node ./bin/tape6-playwright.js --start-server --browser firefox --flags FO",
    "test:webkit": "node ./bin/tape6-playwright.js --start-server --browser webkit --flags FO",
    "test:all": "node ./bin/tape6-playwright.js --start-server --browsers all --flags FO",
    "test:bun": "bun run ./bin/tape6-playwright.js --start-server --flags FO",
    "test:deno": "deno run -A ./bin/tape6-playwright.js --start-server --flags FO"
  },
  "keywords": [
    "tap",
    "tape6",
    "tape-six",
    "test",
    "test-runner",
    "unit-test",
    "testing",
    "harness",
    "browser",
    "playwright",
    "headless",
    "chromium",
    "firefox",
    "webkit",
    "iframe",
    "parallel",
    "cross-runtime",
    "nodejs",
    "deno",
    "bun",
    "esm",
    "es-modules"
  ],
  "author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (https://www.lazutkin.com)",
  "funding": "https://github.com/sponsors/uhop",
  "license": "BSD-3-Clause",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/uhop/tape-six-playwright.git"
  },
  "bugs": {
    "url": "https://github.com/uhop/tape-six-playwright/issues"
  },
  "homepage": "https://github.com/uhop/tape-six-playwright#readme",
  "github": "http://github.com/uhop/tape-six-playwright",
  "files": [
    "bin",
    "src",
    "llms.txt",
    "llms-full.txt"
  ],
  "dependencies": {
    "playwright": "^1.61.1",
    "tape-six": "^1.15.0"
  },
  "tape6": {
    "browser": [
      "/tests/test-*.html"
    ],
    "tests": [
      "/tests/test-*.*js"
    ],
    "importmap": {
      "imports": {
        "tape-six": "/node_modules/tape-six/index.js",
        "tape-six/": "/node_modules/tape-six/src/"
      }
    }
  },
  "devDependencies": {
    "@types/node": "^26.1.1",
    "prettier": "^3.9.5",
    "typescript": "^7.0.2"
  }
}
