-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 KB
/
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
35
36
37
38
{
"name": "trpc-bun-adapter",
"version": "1.2.2",
"description": "TRPC adapter for bun js runtime",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"package.json",
"LICENSE.txt",
"README.md",
"tsconfig.json"
],
"scripts": {
"test": "bun test",
"lint": "bunx @biomejs/biome check",
"lint:fix": "bunx @biomejs/biome check --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.1.17",
"tsup": "^8.0.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@trpc/server": "^11.0.0-rc.566"
}
}