-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
33 lines (33 loc) · 953 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
{
"name": "buf-fastify",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "tsx server.ts",
"client": "tsx client.ts",
"generate": "buf generate buf.build/connectrpc/eliza",
"build": "tsc --noEmit",
"test": "tap --typecheck --allow-empty-coverage --disable-coverage",
"ci": "npm run generate && npm run build && npm run test"
},
"dependencies": {
"@bufbuild/protobuf": "^2.2.2",
"@connectrpc/connect": "^2.0.0-rc.3",
"@connectrpc/connect-fastify": "^2.0.0-rc.3",
"@connectrpc/connect-node": "^2.0.0-rc.3",
"@connectrpc/connect-web": "^2.0.0-rc.3",
"@fastify/cors": "^10.0.1",
"fastify": "^5.1.0",
"tsx": "^4.19.0"
},
"devDependencies": {
"@bufbuild/buf": "^1.46.0",
"@bufbuild/protoc-gen-es": "^2.2.2",
"@types/node": "^22.5.2",
"@types/tap": "^15.0.12",
"tap": "^21.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}