forked from connectrpc/examples-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 997 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-yarn-unplugged",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"start": "yarn run build && open index.html",
"build": "esbuild src/index.tsx --bundle --outfile=dist/out.js",
"typecheck": "tsc --noEmit",
"test": "jest",
"generate": "buf generate buf.build/connectrpc/eliza",
"ci": "yarn run generate && yarn run typecheck && yarn run build && yarn run test"
},
"packageManager": "[email protected]",
"dependencies": {
"@bufbuild/buf": "^1.34.0",
"@bufbuild/protobuf": "^1.10.0",
"@bufbuild/protoc-gen-es": "^1.10.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-web": "^1.4.0",
"@connectrpc/protoc-gen-connect-es": "^1.4.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"esbuild": "^0.22.0",
"jest": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.1.5",
"tsc": "^2.0.4",
"typescript": "^5.5.2"
}
}