-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "@fedify/h3",
"version": "0.1.2",
"description": "Integrate Fedify with h3",
"keywords": ["Fedify", "h3"],
"author": {
"name": "Hong Minhee",
"email": "[email protected]",
"url": "https://hongminhee.org/"
},
"homepage": "https://github.com/fedify-dev/h3",
"repository": {
"type": "git",
"url": "git+https://github.com/fedify-dev/h3.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fedify-dev/h3/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": ["src/", "dist/"],
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/node": "^20.14.10",
"tsup": "^8.1.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@fedify/fedify": ">=0.10.0, <1",
"h3": "^1.8.0"
},
"scripts": {
"build": "tsup",
"prepack": "tsup"
}
}