-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "@syumai/hono-middleware-go",
"version": "0.1.3",
"description": "A middleware for Hono runnning Go",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts --format esm,cjs --dts --external 'cloudflare:sockets'",
"publint": "publint",
"release": "npm run build && npm run publint && npm publish"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/syumai/hono-middleware-go.git"
},
"peerDependencies": {
"hono": "*"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20251128.0",
"@types/node": "^24.10.1",
"hono": "^4.10.7",
"publint": "^0.2.12",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"wrangler": "^4.51.0"
}
}