@fedify/relay 2.4.0-dev.1504 → 2.4.0-dev.1528

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  [![JSR][JSR badge]][JSR]
7
7
  [![npm][npm badge]][npm]
8
- [![@fedify@hollo.social][@fedify@hollo.social badge]][@fedify@hollo.social]
8
+ [![@fedify@hackers.pub][@fedify@hackers.pub badge]][@fedify@hackers.pub]
9
9
 
10
10
  *This package is available since Fedify 2.0.0.*
11
11
 
@@ -20,8 +20,8 @@ see the [*Relay server* section in the Fedify manual][manual].
20
20
  [JSR]: https://jsr.io/@fedify/relay
21
21
  [npm badge]: https://img.shields.io/npm/v/@fedify/relay?logo=npm
22
22
  [npm]: https://www.npmjs.com/package/@fedify/relay
23
- [@fedify@hollo.social badge]: https://fedi-badge.minhee.org/@fedify@hollo.social/followers.svg
24
- [@fedify@hollo.social]: https://hollo.social/@fedify
23
+ [@fedify@hackers.pub badge]: https://fedi-badge.minhee.org/@fedify@hackers.pub/followers.svg
24
+ [@fedify@hackers.pub]: https://hackers.pub/@fedify
25
25
  [Fedify]: https://fedify.dev/
26
26
  [manual]: https://fedify.dev/manual/relay
27
27
 
@@ -1,7 +1,7 @@
1
1
  import "@js-temporal/polyfill";
2
2
  import "urlpattern-polyfill";
3
3
  globalThis.addEventListener = () => {};
4
- import { n as exportSpki, r as getDocumentLoader, t as isRelayFollowerData } from "./types-RosjHtuK.js";
4
+ import { n as exportSpki, r as getDocumentLoader, t as isRelayFollowerData } from "./types-Dx-fpm5w.js";
5
5
  import { MemoryKvStore, signRequest } from "@fedify/fedify";
6
6
  import { createRelay } from "@fedify/relay";
7
7
  import { Accept, Announce, Create, Delete, Follow, Move, Note, Person, Undo, Update } from "@fedify/vocab";
@@ -1,7 +1,7 @@
1
1
  import "@js-temporal/polyfill";
2
2
  import "urlpattern-polyfill";
3
3
  globalThis.addEventListener = () => {};
4
- import { n as exportSpki, r as getDocumentLoader, t as isRelayFollowerData } from "./types-RosjHtuK.js";
4
+ import { n as exportSpki, r as getDocumentLoader, t as isRelayFollowerData } from "./types-Dx-fpm5w.js";
5
5
  import { MemoryKvStore, signRequest } from "@fedify/fedify";
6
6
  import { createRelay } from "@fedify/relay";
7
7
  import { Create, Delete, Follow, Move, Note, Person, Undo, Update } from "@fedify/vocab";
package/dist/mod.d.cts CHANGED
@@ -1,7 +1,7 @@
1
1
  /// <reference lib="esnext.temporal" />
2
2
  import { Context, KvStore, MessageQueue } from "@fedify/fedify";
3
3
  import { Actor } from "@fedify/vocab";
4
- //#region ../vocab-runtime/dist/mod.d.ts
4
+ //#region ../vocab-runtime/dist/docloader-xRGn1azD.d.ts
5
5
  /**
6
6
  * Options for making `User-Agent` string.
7
7
  * @see {@link getUserAgent}
package/dist/mod.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /// <reference lib="esnext.temporal" />
2
2
  import { Context, KvStore, MessageQueue } from "@fedify/fedify";
3
3
  import { Actor } from "@fedify/vocab";
4
- //#region ../vocab-runtime/dist/mod.d.ts
4
+ //#region ../vocab-runtime/dist/docloader-xRGn1azD.d.ts
5
5
  /**
6
6
  * Options for making `User-Agent` string.
7
7
  * @see {@link getUserAgent}
@@ -2,10 +2,10 @@ import "@js-temporal/polyfill";
2
2
  import "urlpattern-polyfill";
3
3
  globalThis.addEventListener = () => {};
4
4
  import { createRequire } from "node:module";
5
- import { getLogger } from "@logtape/logtape";
6
- import process$1 from "node:process";
7
5
  import { lookup } from "node:dns/promises";
8
6
  import { isIP } from "node:net";
7
+ import { getLogger } from "@logtape/logtape";
8
+ import process$1 from "node:process";
9
9
  //#region \0rolldown/runtime.js
10
10
  var __create = Object.create;
11
11
  var __defProp = Object.defineProperty;
@@ -30,6 +30,179 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
30
30
  }) : target, mod));
31
31
  var __require = /* @__PURE__ */ createRequire(import.meta.url);
32
32
  //#endregion
33
+ //#region ../vocab-runtime/dist/url-BuxPHxK2.js
34
+ var UrlError = class extends Error {
35
+ constructor(message) {
36
+ super(message);
37
+ this.name = "UrlError";
38
+ }
39
+ };
40
+ /**
41
+ * Validates a URL to prevent SSRF attacks.
42
+ */
43
+ async function validatePublicUrl(url) {
44
+ const parsed = new URL(url);
45
+ if (parsed.protocol !== "http:" && parsed.protocol !== "https:") throw new UrlError(`Unsupported protocol: ${parsed.protocol}`);
46
+ let hostname = parsed.hostname;
47
+ if (hostname.startsWith("[") && hostname.endsWith("]")) hostname = hostname.slice(1, -1);
48
+ if (hostname === "localhost") throw new UrlError("Localhost is not allowed");
49
+ const hostnameFamily = isIP(hostname);
50
+ if (hostnameFamily !== 0) {
51
+ validatePublicIpAddress(hostname, hostnameFamily);
52
+ return;
53
+ }
54
+ if ("Deno" in globalThis && !isIP(hostname)) {
55
+ if ((await Deno.permissions.query({ name: "net" })).state !== "granted") return;
56
+ }
57
+ if ("Bun" in globalThis) {
58
+ if (hostname === "example.com" || hostname.endsWith(".example.com")) return;
59
+ else if (hostname === "fedify-test.internal") throw new UrlError("Invalid or private address: fedify-test.internal");
60
+ }
61
+ let addresses;
62
+ try {
63
+ addresses = await lookup(hostname, { all: true });
64
+ } catch {
65
+ addresses = [];
66
+ }
67
+ for (const { address, family } of addresses) validatePublicIpAddress(address, family);
68
+ }
69
+ function validatePublicIpAddress(address, family) {
70
+ if (family === 4 && isValidPublicIPv4Address(address) || family === 6 && isValidPublicIPv6Address(address)) return;
71
+ throw new UrlError(`Invalid or private address: ${address}`);
72
+ }
73
+ function isValidPublicIPv4Address(address) {
74
+ const parts = parseIPv4Address(address);
75
+ if (parts == null) return false;
76
+ const value = ipv4PartsToNumber(parts);
77
+ return !nonPublicIPv4Prefixes.some(({ base, prefix }) => matchesIPv4Prefix(value, base, prefix));
78
+ }
79
+ function isValidPublicIPv6Address(address) {
80
+ const words = parseIPv6Address(address);
81
+ if (words == null) return false;
82
+ if (nonPublicIPv6Prefixes.some(({ words: prefixWords, prefix }) => matchesIPv6Prefix(words, prefixWords, prefix))) return false;
83
+ for (const { extractIPv4, prefix, words: prefixWords } of ipv6WithIPv4Prefixes) {
84
+ if (!matchesIPv6Prefix(words, prefixWords, prefix)) continue;
85
+ const ipv4Address = extractIPv4(words);
86
+ if (ipv4Address != null && !isValidPublicIPv4Address(ipv4Address)) return false;
87
+ }
88
+ return true;
89
+ }
90
+ function expandIPv6Address(address) {
91
+ address = address.toLowerCase();
92
+ const ipv4Delimiter = address.lastIndexOf(":");
93
+ if (address.includes(".") && ipv4Delimiter >= 0) {
94
+ const ipv4Parts = parseIPv4Address(address.substring(ipv4Delimiter + 1));
95
+ if (ipv4Parts == null) return address;
96
+ const high = (ipv4Parts[0] << 8) + ipv4Parts[1];
97
+ const low = (ipv4Parts[2] << 8) + ipv4Parts[3];
98
+ address = address.substring(0, ipv4Delimiter + 1) + high.toString(16) + ":" + low.toString(16);
99
+ }
100
+ if (address === "::") return "0000:0000:0000:0000:0000:0000:0000:0000";
101
+ if (address.startsWith("::")) address = "0000" + address;
102
+ if (address.endsWith("::")) address = address + "0000";
103
+ address = address.replace("::", ":0000".repeat(8 - (address.match(/:/g) || []).length) + ":");
104
+ return address.split(":").map((part) => part.padStart(4, "0")).join(":");
105
+ }
106
+ const nonPublicIPv4Prefixes = [
107
+ ipv4Prefix("0.0.0.0/8", "RFC 6890"),
108
+ ipv4Prefix("10.0.0.0/8", "RFC 1918"),
109
+ ipv4Prefix("100.64.0.0/10", "RFC 6598"),
110
+ ipv4Prefix("127.0.0.0/8", "RFC 1122"),
111
+ ipv4Prefix("169.254.0.0/16", "RFC 3927"),
112
+ ipv4Prefix("172.16.0.0/12", "RFC 1918"),
113
+ ipv4Prefix("192.0.0.0/24", "RFC 6890"),
114
+ ipv4Prefix("192.0.2.0/24", "RFC 5737"),
115
+ ipv4Prefix("192.88.99.0/24", "RFC 7526"),
116
+ ipv4Prefix("192.168.0.0/16", "RFC 1918"),
117
+ ipv4Prefix("198.18.0.0/15", "RFC 2544"),
118
+ ipv4Prefix("198.51.100.0/24", "RFC 5737"),
119
+ ipv4Prefix("203.0.113.0/24", "RFC 5737"),
120
+ ipv4Prefix("224.0.0.0/4", "RFC 5771"),
121
+ ipv4Prefix("240.0.0.0/4", "RFC 1112")
122
+ ];
123
+ const nonPublicIPv6Prefixes = [
124
+ ipv6Prefix("::/16", "RFC 4291"),
125
+ ipv6Prefix("2001::/32", "RFC 4380"),
126
+ ipv6Prefix("2002::/16", "RFC 3056"),
127
+ ipv6Prefix("64:ff9b:1::/48", "RFC 8215"),
128
+ ipv6Prefix("fc00::/7", "RFC 4193"),
129
+ ipv6Prefix("fe80::/10", "RFC 4291"),
130
+ ipv6Prefix("ff00::/8", "RFC 4291")
131
+ ];
132
+ const ipv6WithIPv4Prefixes = [{
133
+ ...ipv6Prefix("64:ff9b::/96", "RFC 6052"),
134
+ extractIPv4: (words) => ipv4FromWords(words[6], words[7])
135
+ }];
136
+ function ipv4Prefix(cidr, rfc) {
137
+ const [address, prefixText] = cidr.split("/");
138
+ const prefix = parseInt(prefixText, 10);
139
+ const parts = parseIPv4Address(address);
140
+ if (parts == null || !Number.isInteger(prefix) || prefix < 0 || prefix > 32) throw new Error(`Invalid IPv4 prefix: ${cidr}`);
141
+ return {
142
+ cidr,
143
+ base: ipv4PartsToNumber(parts),
144
+ prefix,
145
+ rfc
146
+ };
147
+ }
148
+ function ipv6Prefix(cidr, rfc) {
149
+ const [address, prefixText] = cidr.split("/");
150
+ const prefix = parseInt(prefixText, 10);
151
+ const words = parseIPv6Address(address);
152
+ if (words == null || !Number.isInteger(prefix) || prefix < 0 || prefix > 128) throw new Error(`Invalid IPv6 prefix: ${cidr}`);
153
+ return {
154
+ cidr,
155
+ words,
156
+ prefix,
157
+ rfc
158
+ };
159
+ }
160
+ function parseIPv4Address(address) {
161
+ const parts = address.split(".").map((part) => {
162
+ if (!/^\d+$/.test(part)) return NaN;
163
+ return parseInt(part, 10);
164
+ });
165
+ if (parts.length !== 4 || parts.some((part) => !Number.isInteger(part) || part < 0 || part > 255)) return null;
166
+ return parts;
167
+ }
168
+ function parseIPv6Address(address) {
169
+ const parts = expandIPv6Address(address).split(":");
170
+ if (parts.length !== 8) return null;
171
+ const words = parts.map((part) => {
172
+ if (!/^[0-9a-f]{1,4}$/i.test(part)) return NaN;
173
+ return parseInt(part, 16);
174
+ });
175
+ if (words.some((word) => !Number.isInteger(word) || word < 0 || word > 65535)) return null;
176
+ return words;
177
+ }
178
+ function ipv4PartsToNumber(parts) {
179
+ return parts[0] * 2 ** 24 + parts[1] * 2 ** 16 + parts[2] * 2 ** 8 + parts[3];
180
+ }
181
+ function ipv4FromWords(highWord, lowWord) {
182
+ return [
183
+ highWord >> 8,
184
+ highWord & 255,
185
+ lowWord >> 8,
186
+ lowWord & 255
187
+ ].join(".");
188
+ }
189
+ function matchesIPv4Prefix(address, prefixBase, prefixLength) {
190
+ const blockSize = 2 ** (32 - prefixLength);
191
+ return Math.floor(address / blockSize) === Math.floor(prefixBase / blockSize);
192
+ }
193
+ function matchesIPv6Prefix(address, prefixWords, prefixLength) {
194
+ let remaining = prefixLength;
195
+ for (let i = 0; i < 8 && remaining > 0; i++) if (remaining >= 16) {
196
+ if (address[i] !== prefixWords[i]) return false;
197
+ remaining -= 16;
198
+ } else {
199
+ const mask = 65535 << 16 - remaining & 65535;
200
+ if ((address[i] & mask) !== (prefixWords[i] & mask)) return false;
201
+ remaining = 0;
202
+ }
203
+ return true;
204
+ }
205
+ //#endregion
33
206
  //#region ../../node_modules/.pnpm/@opentelemetry+api@1.9.1/node_modules/@opentelemetry/api/build/esm/version.js
34
207
  const VERSION = "1.9.1";
35
208
  //#endregion
@@ -25931,7 +26104,7 @@ const preloadedContexts = {
25931
26104
  } }
25932
26105
  };
25933
26106
  var name = "@fedify/vocab-runtime";
25934
- var version = "2.4.0-dev.1504+756217cc";
26107
+ var version = "2.4.0-dev.1528+fea670ad";
25935
26108
  const parametersNeedLowerCase = ["rel", "type"];
25936
26109
  const regexpLinkWhitespace = /[\n\r\s\t]/;
25937
26110
  function validateURI(uri) {
@@ -26179,177 +26352,6 @@ function logRequest(logger, request) {
26179
26352
  headers: Object.fromEntries(request.headers.entries())
26180
26353
  });
26181
26354
  }
26182
- var UrlError = class extends Error {
26183
- constructor(message) {
26184
- super(message);
26185
- this.name = "UrlError";
26186
- }
26187
- };
26188
- /**
26189
- * Validates a URL to prevent SSRF attacks.
26190
- */
26191
- async function validatePublicUrl(url) {
26192
- const parsed = new URL(url);
26193
- if (parsed.protocol !== "http:" && parsed.protocol !== "https:") throw new UrlError(`Unsupported protocol: ${parsed.protocol}`);
26194
- let hostname = parsed.hostname;
26195
- if (hostname.startsWith("[") && hostname.endsWith("]")) hostname = hostname.slice(1, -1);
26196
- if (hostname === "localhost") throw new UrlError("Localhost is not allowed");
26197
- const hostnameFamily = isIP(hostname);
26198
- if (hostnameFamily !== 0) {
26199
- validatePublicIpAddress(hostname, hostnameFamily);
26200
- return;
26201
- }
26202
- if ("Deno" in globalThis && !isIP(hostname)) {
26203
- if ((await Deno.permissions.query({ name: "net" })).state !== "granted") return;
26204
- }
26205
- if ("Bun" in globalThis) {
26206
- if (hostname === "example.com" || hostname.endsWith(".example.com")) return;
26207
- else if (hostname === "fedify-test.internal") throw new UrlError("Invalid or private address: fedify-test.internal");
26208
- }
26209
- let addresses;
26210
- try {
26211
- addresses = await lookup(hostname, { all: true });
26212
- } catch {
26213
- addresses = [];
26214
- }
26215
- for (const { address, family } of addresses) validatePublicIpAddress(address, family);
26216
- }
26217
- function validatePublicIpAddress(address, family) {
26218
- if (family === 4 && isValidPublicIPv4Address(address) || family === 6 && isValidPublicIPv6Address(address)) return;
26219
- throw new UrlError(`Invalid or private address: ${address}`);
26220
- }
26221
- function isValidPublicIPv4Address(address) {
26222
- const parts = parseIPv4Address(address);
26223
- if (parts == null) return false;
26224
- const value = ipv4PartsToNumber(parts);
26225
- return !nonPublicIPv4Prefixes.some(({ base, prefix }) => matchesIPv4Prefix(value, base, prefix));
26226
- }
26227
- function isValidPublicIPv6Address(address) {
26228
- const words = parseIPv6Address(address);
26229
- if (words == null) return false;
26230
- if (nonPublicIPv6Prefixes.some(({ words: prefixWords, prefix }) => matchesIPv6Prefix(words, prefixWords, prefix))) return false;
26231
- for (const { extractIPv4, prefix, words: prefixWords } of ipv6WithIPv4Prefixes) {
26232
- if (!matchesIPv6Prefix(words, prefixWords, prefix)) continue;
26233
- const ipv4Address = extractIPv4(words);
26234
- if (ipv4Address != null && !isValidPublicIPv4Address(ipv4Address)) return false;
26235
- }
26236
- return true;
26237
- }
26238
- function expandIPv6Address(address) {
26239
- address = address.toLowerCase();
26240
- const ipv4Delimiter = address.lastIndexOf(":");
26241
- if (address.includes(".") && ipv4Delimiter >= 0) {
26242
- const ipv4Parts = parseIPv4Address(address.substring(ipv4Delimiter + 1));
26243
- if (ipv4Parts == null) return address;
26244
- const high = (ipv4Parts[0] << 8) + ipv4Parts[1];
26245
- const low = (ipv4Parts[2] << 8) + ipv4Parts[3];
26246
- address = address.substring(0, ipv4Delimiter + 1) + high.toString(16) + ":" + low.toString(16);
26247
- }
26248
- if (address === "::") return "0000:0000:0000:0000:0000:0000:0000:0000";
26249
- if (address.startsWith("::")) address = "0000" + address;
26250
- if (address.endsWith("::")) address = address + "0000";
26251
- address = address.replace("::", ":0000".repeat(8 - (address.match(/:/g) || []).length) + ":");
26252
- return address.split(":").map((part) => part.padStart(4, "0")).join(":");
26253
- }
26254
- const nonPublicIPv4Prefixes = [
26255
- ipv4Prefix("0.0.0.0/8", "RFC 6890"),
26256
- ipv4Prefix("10.0.0.0/8", "RFC 1918"),
26257
- ipv4Prefix("100.64.0.0/10", "RFC 6598"),
26258
- ipv4Prefix("127.0.0.0/8", "RFC 1122"),
26259
- ipv4Prefix("169.254.0.0/16", "RFC 3927"),
26260
- ipv4Prefix("172.16.0.0/12", "RFC 1918"),
26261
- ipv4Prefix("192.0.0.0/24", "RFC 6890"),
26262
- ipv4Prefix("192.0.2.0/24", "RFC 5737"),
26263
- ipv4Prefix("192.88.99.0/24", "RFC 7526"),
26264
- ipv4Prefix("192.168.0.0/16", "RFC 1918"),
26265
- ipv4Prefix("198.18.0.0/15", "RFC 2544"),
26266
- ipv4Prefix("198.51.100.0/24", "RFC 5737"),
26267
- ipv4Prefix("203.0.113.0/24", "RFC 5737"),
26268
- ipv4Prefix("224.0.0.0/4", "RFC 5771"),
26269
- ipv4Prefix("240.0.0.0/4", "RFC 1112")
26270
- ];
26271
- const nonPublicIPv6Prefixes = [
26272
- ipv6Prefix("::/16", "RFC 4291"),
26273
- ipv6Prefix("2001::/32", "RFC 4380"),
26274
- ipv6Prefix("2002::/16", "RFC 3056"),
26275
- ipv6Prefix("64:ff9b:1::/48", "RFC 8215"),
26276
- ipv6Prefix("fc00::/7", "RFC 4193"),
26277
- ipv6Prefix("fe80::/10", "RFC 4291"),
26278
- ipv6Prefix("ff00::/8", "RFC 4291")
26279
- ];
26280
- const ipv6WithIPv4Prefixes = [{
26281
- ...ipv6Prefix("64:ff9b::/96", "RFC 6052"),
26282
- extractIPv4: (words) => ipv4FromWords(words[6], words[7])
26283
- }];
26284
- function ipv4Prefix(cidr, rfc) {
26285
- const [address, prefixText] = cidr.split("/");
26286
- const prefix = parseInt(prefixText, 10);
26287
- const parts = parseIPv4Address(address);
26288
- if (parts == null || !Number.isInteger(prefix) || prefix < 0 || prefix > 32) throw new Error(`Invalid IPv4 prefix: ${cidr}`);
26289
- return {
26290
- cidr,
26291
- base: ipv4PartsToNumber(parts),
26292
- prefix,
26293
- rfc
26294
- };
26295
- }
26296
- function ipv6Prefix(cidr, rfc) {
26297
- const [address, prefixText] = cidr.split("/");
26298
- const prefix = parseInt(prefixText, 10);
26299
- const words = parseIPv6Address(address);
26300
- if (words == null || !Number.isInteger(prefix) || prefix < 0 || prefix > 128) throw new Error(`Invalid IPv6 prefix: ${cidr}`);
26301
- return {
26302
- cidr,
26303
- words,
26304
- prefix,
26305
- rfc
26306
- };
26307
- }
26308
- function parseIPv4Address(address) {
26309
- const parts = address.split(".").map((part) => {
26310
- if (!/^\d+$/.test(part)) return NaN;
26311
- return parseInt(part, 10);
26312
- });
26313
- if (parts.length !== 4 || parts.some((part) => !Number.isInteger(part) || part < 0 || part > 255)) return null;
26314
- return parts;
26315
- }
26316
- function parseIPv6Address(address) {
26317
- const parts = expandIPv6Address(address).split(":");
26318
- if (parts.length !== 8) return null;
26319
- const words = parts.map((part) => {
26320
- if (!/^[0-9a-f]{1,4}$/i.test(part)) return NaN;
26321
- return parseInt(part, 16);
26322
- });
26323
- if (words.some((word) => !Number.isInteger(word) || word < 0 || word > 65535)) return null;
26324
- return words;
26325
- }
26326
- function ipv4PartsToNumber(parts) {
26327
- return parts[0] * 2 ** 24 + parts[1] * 2 ** 16 + parts[2] * 2 ** 8 + parts[3];
26328
- }
26329
- function ipv4FromWords(highWord, lowWord) {
26330
- return [
26331
- highWord >> 8,
26332
- highWord & 255,
26333
- lowWord >> 8,
26334
- lowWord & 255
26335
- ].join(".");
26336
- }
26337
- function matchesIPv4Prefix(address, prefixBase, prefixLength) {
26338
- const blockSize = 2 ** (32 - prefixLength);
26339
- return Math.floor(address / blockSize) === Math.floor(prefixBase / blockSize);
26340
- }
26341
- function matchesIPv6Prefix(address, prefixWords, prefixLength) {
26342
- let remaining = prefixLength;
26343
- for (let i = 0; i < 8 && remaining > 0; i++) if (remaining >= 16) {
26344
- if (address[i] !== prefixWords[i]) return false;
26345
- remaining -= 16;
26346
- } else {
26347
- const mask = 65535 << 16 - remaining & 65535;
26348
- if ((address[i] & mask) !== (prefixWords[i] & mask)) return false;
26349
- remaining = 0;
26350
- }
26351
- return true;
26352
- }
26353
26355
  const logger = getLogger([
26354
26356
  "fedify",
26355
26357
  "runtime",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/relay",
3
- "version": "2.4.0-dev.1504+756217cc",
3
+ "version": "2.4.0-dev.1528+fea670ad",
4
4
  "description": "ActivityPub relay support for Fedify",
5
5
  "keywords": [
6
6
  "Fedify",
@@ -22,10 +22,7 @@
22
22
  "bugs": {
23
23
  "url": "https://github.com/fedify-dev/fedify/issues"
24
24
  },
25
- "funding": [
26
- "https://opencollective.com/fedify",
27
- "https://github.com/sponsors/dahlia"
28
- ],
25
+ "funding": "https://opencollective.com/fedify",
29
26
  "type": "module",
30
27
  "main": "./dist/mod.cjs",
31
28
  "module": "./dist/mod.js",
@@ -50,14 +47,14 @@
50
47
  "dependencies": {
51
48
  "@js-temporal/polyfill": "^0.5.1",
52
49
  "@logtape/logtape": "^2.2.0",
53
- "@fedify/fedify": "^2.4.0-dev.1504+756217cc",
54
- "@fedify/vocab": "2.4.0-dev.1504+756217cc"
50
+ "@fedify/vocab": "2.4.0-dev.1528+fea670ad",
51
+ "@fedify/fedify": "^2.4.0-dev.1528+fea670ad"
55
52
  },
56
53
  "devDependencies": {
57
54
  "tsdown": "^0.22.0",
58
55
  "typescript": "^6.0.0",
59
56
  "urlpattern-polyfill": "^10.1.0",
60
- "@fedify/vocab-runtime": "^2.4.0-dev.1504+756217cc"
57
+ "@fedify/vocab-runtime": "^2.4.0-dev.1528+fea670ad"
61
58
  },
62
59
  "scripts": {
63
60
  "build:self": "tsdown",