@fedify/fastify 2.0.0-dev.1961 → 2.0.0-dev.206

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright 2024–2025 Hong Minhee
3
+ Copyright 2024–2026 Hong Minhee
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the "Software"), to deal in
package/README.md CHANGED
@@ -26,10 +26,10 @@ await fastify.register(fedifyPlugin, {
26
26
  fastify.listen({ port: 3000 });
27
27
  ~~~~
28
28
 
29
- [npm]: https://www.npmjs.com/package/@fedify/fastify
30
29
  [npm badge]: https://img.shields.io/npm/v/@fedify/fastify?logo=npm
31
- [Matrix]: https://matrix.to/#/#fedify:matrix.org
30
+ [npm]: https://www.npmjs.com/package/@fedify/fastify
32
31
  [Matrix badge]: https://img.shields.io/matrix/fedify%3Amatrix.org
32
+ [Matrix]: https://matrix.to/#/#fedify:matrix.org
33
33
  [@fedify@hollo.social badge]: https://fedi-badge.deno.dev/@fedify@hollo.social/followers.svg
34
34
  [@fedify@hollo.social]: https://hollo.social/@fedify
35
35
  [Fedify]: https://fedify.dev/
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.1961+c3dff60a",
3
+ "version": "2.0.0-dev.206+fa815928",
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.1961+c3dff60a"
51
+ "@fedify/fedify": "2.0.0-dev.206+fa815928"
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
  }