33 lines
731 B
JSON
33 lines
731 B
JSON
{
|
|
"name": "@hono/hello",
|
|
"version": "0.0.15",
|
|
"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,
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org",
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/honojs/middleware.git"
|
|
},
|
|
"homepage": "https://github.com/honojs/middleware",
|
|
"peerDependencies": {
|
|
"hono": "*"
|
|
},
|
|
"devDependencies": {
|
|
"hono": "^2.7.2"
|
|
}
|
|
} |