honojs-middleware/packages/medley-router/package.json

38 lines
814 B
JSON
Raw Normal View History

{
"name": "@hono/medley-router",
2023-11-12 09:10:58 +08:00
"version": "0.0.3",
"description": "Router using @medley/router",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"build": "rimraf dist && tsc",
"prerelease": "yarn build && yarn test",
"release": "yarn publish"
},
"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",
"peerDependencies": {
"hono": ">=3.8.0"
},
"devDependencies": {
2023-12-14 17:33:01 +08:00
"hono": "^3.11.7",
"rimraf": "^5.0.5",
"vitest": "^3.0.8"
},
"dependencies": {
"@medley/router": "^0.2.1"
}
}