-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
34 lines (34 loc) · 846 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "trpc-bun-adapter",
"version": "1.0.0",
"description": "TRPC adapter for bun js runtime",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "bun test",
"fmt": "bunx @biomejs/biome format --write .",
"build": "npx tsup src/index.ts --format cjs,esm --dts --clean --sourcemap"
},
"keywords": [
"bun",
"trpc",
"adapter",
"websocket"
],
"repository": {
"url": "git+https://github.com/cah4a/trpc-bun-adapter.git"
},
"bugs": "https://github.com/cah4a/trpc-bun-adapter/issues",
"author": "Sancha <[email protected]>",
"license": "MIT",
"devDependencies": {
"@trpc/server": "next",
"bun-types": "^1.0.20",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@trpc/server": "^10.43.0"
}
}