@fedify/fastify 2.0.0-dev.149 → 2.0.0-dev.158

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/dist/index.cjs CHANGED
@@ -31,7 +31,8 @@ const node_stream = __toESM(require("node:stream"));
31
31
  *
32
32
  * @example
33
33
  * ```typescript
34
- * import { createFederation, MemoryKvStore, Person } from "@fedify/fedify";
34
+ * import { createFederation, MemoryKvStore } from "@fedify/fedify";
35
+ * import { Person } from "@fedify/vocab";
35
36
  * import fedifyPlugin from "@fedify/fastify";
36
37
  * import Fastify from "fastify";
37
38
  *
package/dist/index.js CHANGED
@@ -7,7 +7,8 @@ import { Readable } from "node:stream";
7
7
  *
8
8
  * @example
9
9
  * ```typescript
10
- * import { createFederation, MemoryKvStore, Person } from "@fedify/fedify";
10
+ * import { createFederation, MemoryKvStore } from "@fedify/fedify";
11
+ * import { Person } from "@fedify/vocab";
11
12
  * import fedifyPlugin from "@fedify/fastify";
12
13
  * import Fastify from "fastify";
13
14
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/fastify",
3
- "version": "2.0.0-dev.149+56d8c96c",
3
+ "version": "2.0.0-dev.158+628cd89e",
4
4
  "description": "Integrate Fedify with Fastify",
5
5
  "keywords": [
6
6
  "Fedify",
@@ -48,7 +48,7 @@
48
48
  },
49
49
  "peerDependencies": {
50
50
  "fastify": "^5.2.0",
51
- "@fedify/fedify": "2.0.0-dev.149+56d8c96c"
51
+ "@fedify/fedify": "2.0.0-dev.158+628cd89e"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/node": "^22.17.0",
@@ -58,6 +58,6 @@
58
58
  "scripts": {
59
59
  "build": "tsdown",
60
60
  "prepublish": "tsdown",
61
- "test": "tsdown && node --experimental-transform-types --test"
61
+ "test": "node --experimental-transform-types --test"
62
62
  }
63
63
  }