This repository was archived by the owner on Jul 7, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@fedify/express",
"version": "0.2.2",
"description": "Integrate Fedify with Express",
"keywords": ["Fedify", "Express", "Express.js"],
"author": {
"name": "Hong Minhee",
"email": "hong@minhee.org",
"url": "https://hongminhee.org/"
},
"homepage": "https://github.com/fedify-dev/express",
"repository": {
"type": "git",
"url": "git+https://github.com/fedify-dev/express.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fedify-dev/express/issues"
},
"funding": [
"https://github.com/sponsors/dahlia"
],
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": ["dist/"],
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/express": ">=4.0.0 <5",
"@types/node": "^20.14.10",
"express": ">= 4.0.0 < 5",
"tsup": "^8.1.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@fedify/fedify": ">=0.12.0 <2"
},
"scripts": {
"build": "tsup",
"prepack": "tsup"
}
}