forked from connectrpc/examples-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 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
{
"name": "buf-plain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run generate && npm run serve",
"serve": "tsc --noEmit && esbuild src/index.ts --serve=localhost:3000 --servedir=www --outdir=www --bundle --global-name=eliza",
"build": "esbuild src/index.ts --bundle --outfile=dist/out.js",
"typecheck": "tsc --noEmit",
"generate": "buf generate buf.build/connectrpc/eliza",
"test": "node --loader ts-node/esm node_modules/.bin/jasmine --config=spec/support/jasmine.json",
"ci": "npm run generate && npm run typecheck && npm run build && npm run test"
},
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@bufbuild/buf": "^1.35.1",
"@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/jasmine": "^5.1.4",
"esbuild": "^0.23.0",
"jasmine": "^5.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}