2022-10-16 17:14:21 +08:00
|
|
|
{
|
2022-12-24 19:18:26 +08:00
|
|
|
"name": "@hono/hello",
|
2023-11-03 04:59:16 +08:00
|
|
|
"version": "0.1.0",
|
2022-10-16 17:14:21 +08:00
|
|
|
"description": "An example of third-party middleware for Hono",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"test": "jest",
|
|
|
|
"build": "rimraf dist && tsc",
|
|
|
|
"prerelease": "yarn build && yarn test",
|
|
|
|
"release": "yarn publish"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"private": false,
|
2022-10-16 17:36:10 +08:00
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://registry.npmjs.org",
|
|
|
|
"access": "public"
|
|
|
|
},
|
2022-10-16 17:14:21 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/honojs/middleware.git"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/honojs/middleware",
|
2022-12-24 20:12:21 +08:00
|
|
|
"peerDependencies": {
|
2023-02-12 15:47:14 +08:00
|
|
|
"hono": "*"
|
2022-12-24 20:12:21 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-03 04:53:53 +08:00
|
|
|
"hono": "^3.9.1"
|
2022-10-16 17:14:21 +08:00
|
|
|
}
|
2023-11-03 04:53:53 +08:00
|
|
|
}
|