2022-10-16 17:14:21 +08:00
|
|
|
{
|
2022-12-24 19:18:26 +08:00
|
|
|
"name": "@hono/hello",
|
2023-11-05 15:48:09 +08:00
|
|
|
"version": "0.1.1",
|
2022-10-16 17:14:21 +08:00
|
|
|
"description": "An example of third-party middleware for Hono",
|
|
|
|
"main": "dist/index.js",
|
2023-11-05 15:45:07 +08:00
|
|
|
"module": "dist/index.mjs",
|
2022-10-16 17:14:21 +08:00
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2023-11-05 15:45:07 +08:00
|
|
|
"test": "vitest --run",
|
|
|
|
"build": "tsup ./src/index.ts --format esm,cjs --dts",
|
|
|
|
"publint": "publint",
|
|
|
|
"release": "yarn build && yarn test && yarn publint && yarn publish"
|
|
|
|
},
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"types": "./dist/index.d.mts",
|
|
|
|
"import": "./dist/index.mjs",
|
|
|
|
"require": "./dist/index.js"
|
|
|
|
}
|
2022-10-16 17:14:21 +08:00
|
|
|
},
|
|
|
|
"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-05 15:45:07 +08:00
|
|
|
"hono": "^3.9.2"
|
2022-10-16 17:14:21 +08:00
|
|
|
}
|
2023-11-05 15:45:07 +08:00
|
|
|
}
|