-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.04 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": "@pretendonetwork/grpc",
"version": "2.0.1",
"license": "AGPL-3.0-only",
"scripts": {
"build": "npm-run-all clean generate copy:*",
"clean": "rimraf javascript go",
"generate": "buf generate && tsc",
"generate:debug": "buf generate --debug && tsc",
"copy:js": "copyfiles -f package.json README.md template/GENERATED_DO_NOT_EDIT.md javascript",
"copy:go": "copyfiles -f template/GENERATED_DO_NOT_EDIT.md template/go/* go",
"lint": "buf lint",
"lint:gh_actions": "buf lint --error-format=github-actions",
"breaking": "buf breaking --against=.git#ref=master",
"breaking:gh_actions": "buf breaking --against=.git#ref=master --error-format=github-actions=main",
"format": "buf format -w"
},
"devDependencies": {
"@bufbuild/buf": "^1.46.0",
"@types/node": "^22.9.3",
"copyfiles": "^2.4.1",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"ts-proto": "^2.3.0"
},
"dependencies": {
"@bufbuild/protobuf": "^2.2.2",
"nice-grpc-common": "^2.0.2",
"typescript": "^5.7.2"
}
}