@fedify/express 0.1.0 → 0.1.2
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 +12 -0
- package/package.json +15 -3
package/README.md
CHANGED
|
@@ -34,6 +34,18 @@ app.use(integrateFederation(federation, (req) => "context data goes here"));
|
|
|
34
34
|
Changelog
|
|
35
35
|
---------
|
|
36
36
|
|
|
37
|
+
### Version 0.1.2
|
|
38
|
+
|
|
39
|
+
Released on August 5, 2024.
|
|
40
|
+
|
|
41
|
+
- Fixed incorrectly configured export targets in *package.json*.
|
|
42
|
+
|
|
43
|
+
### Version 0.1.1
|
|
44
|
+
|
|
45
|
+
Released on August 5, 2024.
|
|
46
|
+
|
|
47
|
+
- Added missing entry points to the *package.json*.
|
|
48
|
+
|
|
37
49
|
### Version 0.1.0
|
|
38
50
|
|
|
39
51
|
Initial release. Released on August 5, 2024.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/express",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Integrate Fedify with Express",
|
|
5
5
|
"keywords": ["Fedify", "Express", "Express.js"],
|
|
6
6
|
"author": {
|
|
@@ -17,9 +17,21 @@
|
|
|
17
17
|
"bugs": {
|
|
18
18
|
"url": "https://github.com/dahlia/fedify-express/issues"
|
|
19
19
|
},
|
|
20
|
+
"funding": [
|
|
21
|
+
"https://github.com/sponsors/dahlia",
|
|
22
|
+
"https://toss.me/hongminhee"
|
|
23
|
+
],
|
|
20
24
|
"type": "module",
|
|
21
|
-
"module": "dist/index.js",
|
|
22
|
-
"types": "dist/index.d.ts",
|
|
25
|
+
"module": "./dist/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"import": {
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"default": "./dist/index.js"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
23
35
|
"files": ["src/", "dist/"],
|
|
24
36
|
"devDependencies": {
|
|
25
37
|
"@biomejs/biome": "1.8.3",
|