-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "@syumai/hono-middleware-go",
"version": "0.1.2",
"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.20240512.0",
"hono": "^4.3.7",
"publint": "^0.2.7",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"wrangler": "^3.57.0"
}
}