-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.18 KB
/
package.json
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
51
{
"name": "@fedify/express",
"version": "0.2.1",
"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/dahlia/fedify-express",
"repository": {
"type": "git",
"url": "git+https://github.com/dahlia/fedify-express.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dahlia/fedify-express/issues"
},
"funding": [
"https://github.com/sponsors/dahlia",
"https://toss.me/hongminhee"
],
"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"
}
}