@fedify/h3 0.1.0 → 0.1.2-dev.8

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 +19 -1
  2. package/package.json +23 -6
package/README.md CHANGED
@@ -5,7 +5,10 @@
5
5
  [![Matrix][Matrix badge]][Matrix]
6
6
  [![Follow @fedify@hollo.social][@fedify@hollo.social badge]][@fedify@hollo.social]
7
7
 
8
- This package provides a simple way to integrate [Fedify] with [h3].
8
+ This package provides a simple way to integrate [Fedify] with [h3],
9
+ an HTTP server framework behind [Nitro], [Analog], [Vinxi],
10
+ [SolidStart], [TanStack Start], and other many web frameworks.
11
+
9
12
  The integration code looks like this:
10
13
 
11
14
  ~~~~ typescript
@@ -38,11 +41,26 @@ app.use(router);
38
41
  [@fedify@hollo.social]: https://hollo.social/@fedify
39
42
  [Fedify]: https://fedify.dev/
40
43
  [h3]: https://h3.unjs.io/
44
+ [Nitro]: https://nitro.unjs.io/
45
+ [Analog]: https://analogjs.org/
46
+ [Vinxi]: https://vinxi.vercel.app/
47
+ [SolidStart]: https://start.solidjs.com/
48
+ [TanStack Start]: https://tanstack.com/start
41
49
 
42
50
 
43
51
  Changelog
44
52
  ---------
45
53
 
54
+ ### Version 0.1.2
55
+
56
+ To be released.
57
+
58
+ ### Version 0.1.1
59
+
60
+ Released on August 6, 2024.
61
+
62
+ - Added missing entry points to the *package.json*.
63
+
46
64
  ### Version 0.1.0
47
65
 
48
66
  Initial release. Released on July 6, 2024.
package/package.json CHANGED
@@ -1,26 +1,43 @@
1
1
  {
2
2
  "name": "@fedify/h3",
3
- "version": "0.1.0",
3
+ "version": "0.1.2-dev.8+5bc3ccfd",
4
4
  "description": "Integrate Fedify with h3",
5
- "keywords": ["Fedify", "h3"],
5
+ "keywords": [
6
+ "Fedify",
7
+ "h3"
8
+ ],
6
9
  "author": {
7
10
  "name": "Hong Minhee",
8
11
  "email": "hong@minhee.org",
9
12
  "url": "https://hongminhee.org/"
10
13
  },
11
- "homepage": "https://github.com/dahlia/fedify-h3",
14
+ "homepage": "https://github.com/fedify-dev/h3",
12
15
  "repository": {
13
16
  "type": "git",
14
- "url": "git+https://github.com/dahlia/fedify-h3.git"
17
+ "url": "git+https://github.com/fedify-dev/h3.git"
15
18
  },
16
19
  "license": "MIT",
17
20
  "bugs": {
18
- "url": "https://github.com/dahlia/fedify-h3/issues"
21
+ "url": "https://github.com/fedify-dev/h3/issues"
19
22
  },
23
+ "funding": [
24
+ "https://github.com/sponsors/dahlia"
25
+ ],
20
26
  "type": "module",
21
27
  "module": "dist/index.js",
22
28
  "types": "dist/index.d.ts",
23
- "files": ["src/", "dist/"],
29
+ "exports": {
30
+ ".": {
31
+ "import": {
32
+ "types": "./dist/index.d.ts",
33
+ "default": "./dist/index.js"
34
+ }
35
+ }
36
+ },
37
+ "files": [
38
+ "src/",
39
+ "dist/"
40
+ ],
24
41
  "devDependencies": {
25
42
  "@biomejs/biome": "1.8.3",
26
43
  "@types/node": "^20.14.10",