{
  "name": "@welshman/relay",
  "version": "0.5.4",
  "author": "hodlbod",
  "license": "MIT",
  "description": "An in-memory nostr relay implementation.",
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "dist/relay/src/index.js",
  "types": "dist/relay/src/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@welshman/lib": "0.5.4",
    "@welshman/util": "0.5.4"
  },
  "devDependencies": {
    "rimraf": "~6.0.0",
    "typescript": "~5.8.0"
  },
  "scripts": {
    "build": "pnpm run clean && pnpm run compile --force",
    "clean": "rimraf ./dist",
    "compile": "tsc -b tsconfig.build.json"
  }
}