2024-07-07 15:03:10 +08:00
|
|
|
{
|
|
|
|
"name": "@hono/event-emitter",
|
2024-08-06 20:09:33 +08:00
|
|
|
"version": "2.0.0",
|
2024-07-07 15:03:10 +08:00
|
|
|
"description": "Event Emitter middleware for Hono",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"module": "dist/index.mjs",
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"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"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://registry.npmjs.org",
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/honojs/middleware.git"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/honojs/middleware",
|
|
|
|
"author": "David Havl <contact@davidhavl.com> (https://github.com/DavidHavl)",
|
|
|
|
"peerDependencies": {
|
|
|
|
"hono": "*"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-08-06 20:05:35 +08:00
|
|
|
"hono": "^4.3.6",
|
2024-07-07 15:03:10 +08:00
|
|
|
"tsup": "^8.0.1",
|
2024-08-06 20:05:35 +08:00
|
|
|
"vitest": "^1.6.0"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=16.0.0"
|
2024-07-07 15:03:10 +08:00
|
|
|
}
|
|
|
|
}
|