honojs-middleware/packages/hello/package.json

33 lines
731 B
JSON
Raw Normal View History

{
"name": "@hono/hello",
2023-02-12 21:30:53 +08:00
"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": {
2023-01-13 06:57:14 +08:00
"hono": "^2.7.2"
}
2022-12-24 19:29:15 +08:00
}