2023-02-04 22:37:15 +08:00
|
|
|
{
|
|
|
|
"name": "@hono/trpc-server",
|
2023-02-12 13:54:35 +08:00
|
|
|
"version": "0.0.2",
|
2023-02-04 22:37:15 +08:00
|
|
|
"description": "tRPC Server Middleware for Hono",
|
|
|
|
"main": "dist/cjs/index.js",
|
|
|
|
"module": "dist/esm/index.js",
|
|
|
|
"types": "dist/esm/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"test": "jest",
|
|
|
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
|
|
"build:esm": "tsc -p tsconfig.esm.json",
|
|
|
|
"build": "rimraf dist && yarn build:cjs && yarn build:esm",
|
|
|
|
"prerelease": "yarn build && yarn test",
|
|
|
|
"release": "yarn publish"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"private": false,
|
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://registry.npmjs.org",
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/honojs/middleware.git"
|
|
|
|
},
|
|
|
|
"homepage": "https://honojs.dev",
|
|
|
|
"peerDependencies": {
|
|
|
|
"@trpc/server": "^10.10.0",
|
|
|
|
"hono": "^2.7.5"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@trpc/server": "^10.10.0",
|
|
|
|
"hono": "^2.7.5",
|
|
|
|
"zod": "^3.20.2"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=16.0.0"
|
|
|
|
}
|
|
|
|
}
|