honojs-middleware/packages/hello/package.json

31 lines
685 B
JSON
Raw Normal View History

{
"name": "@honojs/hello",
"version": "0.0.7",
"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",
"dependencies": {
2022-12-24 19:10:39 +08:00
"hono": "^2.6.2"
}
2022-10-19 20:07:31 +08:00
}