{
  "name": "@fedify/amqp",
  "version": "2.3.1",
  "license": "MIT",
  "exports": {
    ".": "./src/mod.ts",
    "./mq": "./src/mq.ts"
  },
  "imports": {
    "@alinea/suite": "jsr:@alinea/suite@^0.6.3"
  },
  "exclude": [
    ".github",
    "dist",
    "node_modules",
    "npm",
    "pnpm-lock.yaml"
  ],
  "publish": {
    "exclude": [
      "**/*.test.ts",
      "tsdown.config.ts"
    ]
  },
  "tasks": {
    "build": "pnpm build",
    "check": "deno fmt --check && deno lint && deno check *.ts",
    "test": "deno test --allow-net --allow-env",
    "test:node": {
      "dependencies": [
        "build"
      ],
      "command": "node --experimental-transform-types --test"
    },
    "test:bun": {
      "dependencies": [
        "build"
      ],
      "command": "bun test --timeout 15000"
    },
    "test-all": {
      "dependencies": [
        "test",
        "test:node",
        "test:bun"
      ]
    }
  }
}
