{
  "name": "@fedify/testing",
  "version": "2.2.3",
  "description": "Testing utilities for Fedify applications",
  "keywords": [
    "fedify",
    "testing",
    "mock",
    "federation",
    "activitypub"
  ],
  "license": "MIT",
  "author": {
    "name": "Hong Minhee",
    "email": "hong@minhee.org",
    "url": "https://hongminhee.org/"
  },
  "homepage": "https://fedify.dev/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fedify-dev/fedify.git",
    "directory": "packages/testing"
  },
  "bugs": {
    "url": "https://github.com/fedify-dev/fedify/issues"
  },
  "funding": [
    "https://opencollective.com/fedify",
    "https://github.com/sponsors/dahlia"
  ],
  "type": "module",
  "main": "./dist/mod.cjs",
  "module": "./dist/mod.js",
  "types": "./dist/mod.d.ts",
  "exports": {
    ".": {
      "types": {
        "import": "./dist/mod.d.ts",
        "require": "./dist/mod.d.cts",
        "default": "./dist/mod.d.ts"
      },
      "import": "./dist/mod.js",
      "require": "./dist/mod.cjs",
      "default": "./dist/mod.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "package.json"
  ],
  "peerDependencies": {
    "@fedify/fedify": "^2.2.3"
  },
  "dependencies": {
    "es-toolkit": "1.43.0"
  },
  "devDependencies": {
    "@js-temporal/polyfill": "^0.5.1",
    "@std/assert": "npm:@jsr/std__assert@^1.0.13",
    "@std/async": "npm:@jsr/std__async@^1.0.13",
    "tsdown": "^0.21.6",
    "typescript": "^6.0.0",
    "@fedify/fixture": "^2.0.0"
  },
  "scripts": {
    "build:self": "tsdown",
    "build": "pnpm --filter @fedify/testing... run build:self",
    "prepublish": "pnpm build",
    "pretest": "pnpm build",
    "test": "node --experimental-transform-types --test",
    "pretest:bun": "pnpm build",
    "test:bun": "bun test --timeout 15000",
    "test:deno": "deno task test",
    "test-all": "pnpm build && node --experimental-transform-types --test && bun test --timeout 15000 && deno task test"
  }
}