honojs-middleware/packages/trpc-server/package.json

60 lines
1.3 KiB
JSON
Raw Permalink Normal View History

{
"name": "@hono/trpc-server",
"version": "0.4.0",
"description": "tRPC Server Middleware for Hono",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts",
"prepack": "yarn build",
"publint": "attw --pack && publint",
"typecheck": "tsc -b tsconfig.json",
2025-07-02 07:45:33 +08:00
"test": "vitest",
"version:jsr": "yarn version:set $npm_package_version"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/honojs/middleware.git",
"directory": "packages/trpc-server"
},
"homepage": "https://honojs.dev",
"peerDependencies": {
"@trpc/server": "^10.10.0 || >11.0.0-rc",
"hono": ">=4.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@trpc/server": "^11.0.0",
"hono": "^4.8.4",
"publint": "^0.3.9",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
2025-06-20 05:59:04 +08:00
"vitest": "^3.2.4",
"zod": "^3.20.2"
},
"engines": {
"node": ">=16.0.0"
}
2025-03-27 14:13:19 +08:00
}