@fedify/express 0.2.1-dev.11 → 0.2.1
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 +10 -2
- package/package.json +6 -12
package/README.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
[![npm][npm badge]][npm]
|
|
5
5
|
[![Matrix][Matrix badge]][Matrix]
|
|
6
|
+
[![Discord][Discord badge]][Discord]
|
|
6
7
|
[![Follow @fedify@hollo.social][@fedify@hollo.social badge]][@fedify@hollo.social]
|
|
7
8
|
|
|
8
9
|
This package provides a simple way to integrate [Fedify] with [Express].
|
|
@@ -24,7 +25,9 @@ app.use(integrateFederation(federation, (req) => "context data goes here"));
|
|
|
24
25
|
[npm]: https://www.npmjs.com/package/@fedify/express
|
|
25
26
|
[npm badge]: https://img.shields.io/npm/v/@fedify/express?logo=npm
|
|
26
27
|
[Matrix]: https://matrix.to/#/#fedify:matrix.org
|
|
27
|
-
[Matrix badge]: https://img.shields.io/matrix/fedify%3Amatrix.org
|
|
28
|
+
[Matrix badge]: https://img.shields.io/matrix/fedify%3Amatrix.org?logo=matrix
|
|
29
|
+
[Discord]: https://discord.gg/bhtwpzURwd
|
|
30
|
+
[Discord badge]: https://img.shields.io/discord/1295652627505217647?logo=discord&cacheSeconds=60
|
|
28
31
|
[@fedify@hollo.social badge]: https://fedi-badge.deno.dev/@fedify@hollo.social/followers.svg
|
|
29
32
|
[@fedify@hollo.social]: https://hollo.social/@fedify
|
|
30
33
|
[Fedify]: https://fedify.dev/
|
|
@@ -36,7 +39,12 @@ Changelog
|
|
|
36
39
|
|
|
37
40
|
### Version 0.2.1
|
|
38
41
|
|
|
39
|
-
|
|
42
|
+
Released on May 11, 2025.
|
|
43
|
+
|
|
44
|
+
- Fixed an invalid version constraint in the `peerDependencies`.
|
|
45
|
+
[[#3] by Emelia Smith]
|
|
46
|
+
|
|
47
|
+
[#3]: https://github.com/fedify-dev/express/pull/3
|
|
40
48
|
|
|
41
49
|
### Version 0.2.0
|
|
42
50
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/express",
|
|
3
|
-
"version": "0.2.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Integrate Fedify with Express",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"Fedify",
|
|
7
|
-
"Express",
|
|
8
|
-
"Express.js"
|
|
9
|
-
],
|
|
5
|
+
"keywords": ["Fedify", "Express", "Express.js"],
|
|
10
6
|
"author": {
|
|
11
7
|
"name": "Hong Minhee",
|
|
12
8
|
"email": "hong@minhee.org",
|
|
@@ -35,19 +31,17 @@
|
|
|
35
31
|
}
|
|
36
32
|
}
|
|
37
33
|
},
|
|
38
|
-
"files": [
|
|
39
|
-
"dist/"
|
|
40
|
-
],
|
|
34
|
+
"files": ["dist/"],
|
|
41
35
|
"devDependencies": {
|
|
42
36
|
"@biomejs/biome": "1.8.3",
|
|
43
|
-
"@types/express": ">=4.0.0
|
|
37
|
+
"@types/express": ">=4.0.0 <5",
|
|
44
38
|
"@types/node": "^20.14.10",
|
|
45
|
-
"express": ">= 4.0.0
|
|
39
|
+
"express": ">= 4.0.0 < 5",
|
|
46
40
|
"tsup": "^8.1.0",
|
|
47
41
|
"typescript": "^5.0.0"
|
|
48
42
|
},
|
|
49
43
|
"peerDependencies": {
|
|
50
|
-
"@fedify/fedify": ">=0.12.0
|
|
44
|
+
"@fedify/fedify": ">=0.12.0 <2"
|
|
51
45
|
},
|
|
52
46
|
"scripts": {
|
|
53
47
|
"build": "tsup",
|