{ "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", "test": "vitest", "version:jsr": "yarn version:set $(yarn version:get)" }, "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", "publint": "^0.3.9", "tsup": "^8.4.0", "typescript": "^5.8.2", "vitest": "^3.2.4", "zod": "^3.20.2" }, "engines": { "node": ">=16.0.0" } }