@fedify/elysia 1.8.1-pr.339.1323 → 1.8.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -1,13 +1,13 @@
1
1
  <!-- deno-fmt-ignore-file -->
2
2
 
3
3
  @fedify/elysia: Integrate Fedify with Elysia
4
- ===========================================
4
+ ============================================
5
5
 
6
6
  [![npm][npm badge]][npm]
7
7
  [![Matrix][Matrix badge]][Matrix]
8
8
  [![Follow @fedify@hollo.social][@fedify@hollo.social badge]][@fedify@hollo.social]
9
9
 
10
- This package provides a simple way to integrate [Fedify] with [ElysiaJS].
10
+ This package provides a simple way to integrate [Fedify] with [Elysia].
11
11
 
12
12
  The integration code looks like this:
13
13
 
@@ -32,4 +32,4 @@ console.log("Elysia App Start!");
32
32
  [@fedify@hollo.social badge]: https://fedi-badge.deno.dev/@fedify@hollo.social/followers.svg
33
33
  [@fedify@hollo.social]: https://hollo.social/@fedify
34
34
  [Fedify]: https://fedify.dev/
35
- [ElysiaJS]: https://elysiajs.com/
35
+ [Elysia]: https://elysiajs.com/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/elysia",
3
- "version": "1.8.1-pr.339.1323+51e62bcd",
3
+ "version": "1.8.2",
4
4
  "description": "Integrate Fedify with Elysia",
5
5
  "keywords": [
6
6
  "Fedify",
@@ -10,7 +10,7 @@
10
10
  "name": "Hyeonseo Kim",
11
11
  "email": "dodok8@gmail.com"
12
12
  },
13
- "homepage": "https://fedify.dev",
13
+ "homepage": "https://fedify.dev/",
14
14
  "repository": {
15
15
  "type": "git",
16
16
  "url": "git+https://github.com/fedify-dev/fedify.git",
@@ -43,7 +43,7 @@
43
43
  ],
44
44
  "peerDependencies": {
45
45
  "elysia": "^1.3.6",
46
- "@fedify/fedify": "1.8.1-pr.339.1323+51e62bcd"
46
+ "@fedify/fedify": "1.8.2"
47
47
  },
48
48
  "devDependencies": {
49
49
  "bun-types": "^1.2.19",
@@ -51,6 +51,7 @@
51
51
  "typescript": "^5.8.3"
52
52
  },
53
53
  "scripts": {
54
- "build": "tsdown"
54
+ "build": "tsdown",
55
+ "prepublish": "tsdown"
55
56
  }
56
57
  }