-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.16 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "hono-feed",
"version": "0.4.2",
"description": "RSS 2.0 / Atom 1.0 / JSON Feed 1.1 response helper for Hono",
"keywords": [
"hono",
"rss",
"atom",
"json-feed",
"feed",
"middleware"
],
"homepage": "https://github.com/otnc/hono-feed#readme",
"bugs": {
"url": "https://github.com/otnc/hono-feed/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otnc/hono-feed.git"
},
"license": "Apache-2.0",
"author": "otoneko. (https://github.com/otnc)",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./middleware": {
"import": {
"types": "./dist/middleware/index.d.ts",
"default": "./dist/middleware/index.js"
},
"require": {
"types": "./dist/middleware/index.d.cts",
"default": "./dist/middleware/index.cjs"
}
},
"./renderer": {
"import": {
"types": "./dist/renderer/index.d.ts",
"default": "./dist/renderer/index.js"
},
"require": {
"types": "./dist/renderer/index.d.cts",
"default": "./dist/renderer/index.cjs"
}
},
"./rss": {
"import": {
"types": "./dist/formats/rss.d.ts",
"default": "./dist/formats/rss.js"
},
"require": {
"types": "./dist/formats/rss.d.cts",
"default": "./dist/formats/rss.cjs"
}
},
"./atom": {
"import": {
"types": "./dist/formats/atom.d.ts",
"default": "./dist/formats/atom.js"
},
"require": {
"types": "./dist/formats/atom.d.cts",
"default": "./dist/formats/atom.cjs"
}
},
"./json": {
"import": {
"types": "./dist/formats/json.d.ts",
"default": "./dist/formats/json.js"
},
"require": {
"types": "./dist/formats/json.d.cts",
"default": "./dist/formats/json.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage && node scripts/print-coverage-path.mjs",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write . && tsc --noEmit",
"ci": "biome ci .",
"check:package": "pnpm build && publint && attw --pack . --ignore-rules no-resolution && node scripts/smoke.mjs",
"prepublishOnly": "pnpm check:package"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"peerDependencies": {
"hono": ">=4.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.4",
"@biomejs/biome": "2.5.1",
"@vitest/coverage-v8": "^4.1.9",
"hono": "^4.12.27",
"publint": "^0.3.21",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}