@fedify/express 0.2.0 → 0.2.1-dev.13

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 +4 -0
  2. package/package.json +16 -11
package/README.md CHANGED
@@ -34,6 +34,10 @@ app.use(integrateFederation(federation, (req) => "context data goes here"));
34
34
  Changelog
35
35
  ---------
36
36
 
37
+ ### Version 0.2.1
38
+
39
+ To be released.
40
+
37
41
  ### Version 0.2.0
38
42
 
39
43
  Released on September 30, 2024.
package/package.json CHANGED
@@ -1,25 +1,28 @@
1
1
  {
2
2
  "name": "@fedify/express",
3
- "version": "0.2.0",
3
+ "version": "0.2.1-dev.13+1112562e",
4
4
  "description": "Integrate Fedify with Express",
5
- "keywords": ["Fedify", "Express", "Express.js"],
5
+ "keywords": [
6
+ "Fedify",
7
+ "Express",
8
+ "Express.js"
9
+ ],
6
10
  "author": {
7
11
  "name": "Hong Minhee",
8
12
  "email": "hong@minhee.org",
9
13
  "url": "https://hongminhee.org/"
10
14
  },
11
- "homepage": "https://github.com/dahlia/fedify-express",
15
+ "homepage": "https://github.com/fedify-dev/express",
12
16
  "repository": {
13
17
  "type": "git",
14
- "url": "git+https://github.com/dahlia/fedify-express.git"
18
+ "url": "git+https://github.com/fedify-dev/express.git"
15
19
  },
16
20
  "license": "MIT",
17
21
  "bugs": {
18
- "url": "https://github.com/dahlia/fedify-express/issues"
22
+ "url": "https://github.com/fedify-dev/express/issues"
19
23
  },
20
24
  "funding": [
21
- "https://github.com/sponsors/dahlia",
22
- "https://toss.me/hongminhee"
25
+ "https://github.com/sponsors/dahlia"
23
26
  ],
24
27
  "type": "module",
25
28
  "module": "./dist/index.js",
@@ -32,17 +35,19 @@
32
35
  }
33
36
  }
34
37
  },
35
- "files": ["dist/"],
38
+ "files": [
39
+ "dist/"
40
+ ],
36
41
  "devDependencies": {
37
42
  "@biomejs/biome": "1.8.3",
38
- "@types/express": ">=4.0.0, <5",
43
+ "@types/express": ">=4.0.0 <5",
39
44
  "@types/node": "^20.14.10",
40
- "express": ">= 4.0.0, < 5",
45
+ "express": ">= 4.0.0 < 5",
41
46
  "tsup": "^8.1.0",
42
47
  "typescript": "^5.0.0"
43
48
  },
44
49
  "peerDependencies": {
45
- "@fedify/fedify": ">=0.12.0, <2"
50
+ "@fedify/fedify": ">=0.12.0 <2"
46
51
  },
47
52
  "scripts": {
48
53
  "build": "tsup",