{
  "name": "wpt-compliance",
  "version": "1.0.3",
  "description": "Run web-platform-tests (WPT) against Bun/Node.js — downloads only the tests you need",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "bun": "./src/index.ts",
      "deno": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./fetcher": {
      "bun": "./src/fetcher.ts",
      "deno": "./src/fetcher.ts",
      "types": "./dist/fetcher.d.ts",
      "default": "./dist/fetcher.js"
    },
    "./runner": {
      "bun": "./src/runner.ts",
      "deno": "./src/runner.ts",
      "types": "./dist/runner.d.ts",
      "default": "./dist/runner.js"
    }
  },
  "bin": {
    "wpt": "dist/cli.js"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "tsc && chmod +x dist/cli.js",
    "prepublishOnly": "npm run build",
    "test": "echo 'See README for usage'"
  },
  "keywords": [
    "wpt",
    "web-platform-tests",
    "testharness",
    "bun",
    "node",
    "testing",
    "compliance",
    "typescript"
  ],
  "author": "MPDieckmann",
  "license": "MIT",
  "homepage": "https://github.com/MPDieckmann/wpt-compliance#readme",
  "bugs": {
    "url": "https://github.com/MPDieckmann/wpt-compliance/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MPDieckmann/wpt-compliance.git"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "typescript": "^5.7.0"
  },
  "files": [
    "dist/",
    "src/",
    "LICENSE",
    "THIRD-PARTY-NOTICES.md",
    "README.md"
  ]
}
