-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.6 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
39
{
"name": "hapi",
"private": true,
"scripts": {
"clean": "node script/clean.mjs",
"build:prepare": "node script/build-prepare.mjs",
"build:openapi": "npx openapi-typescript reference/hedera-mirror/openapi.json --output packages/hapi-mirror/src/openapi.ts",
"build:proto": "grpc_tools_node_protoc --proto_path=packages/hapi-proto/src/proto-src --ts_proto_opt=esModuleInterop=true --ts_proto_opt=useExactTypes=false --plugin=node_modules/ts-proto/protoc-gen-ts_proto.cmd --ts_proto_opt=oneof=unions --ts_proto_out=./packages/hapi-proto/src/proto/ ./packages/hapi-proto/src/proto-src/*.proto",
"build:index": "node script/build-index.mjs",
"build:tsc": "tsc --build ./tsconfig.project.json",
"build:package": "node script/build-package.mjs",
"build": "npm run build:prepare && npm run build:openapi && npm run build:proto && npm run build:index && npm run build:tsc && npm run build:package",
"build:tgz": "node script/build-tgz.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugbytesinc/hapi-proto.git"
},
"devDependencies": {
"@noble/ed25519": "^2.0.0",
"@noble/hashes": "^1.3.2",
"@noble/secp256k1": "^2.0.0",
"grpc_tools_node_protoc_ts": "5.3.3",
"grpc-tools": "1.12.4",
"long": "^5.2.3",
"openapi-typescript": "^6.6.1",
"protobufjs": "^7.2.5",
"rxjs": "^7.8.1",
"simple-crypto-js": "^3.0.1",
"ts-node": "^10.9.1",
"ts-proto": "^1.157.1",
"ts-typed-events": "^3.0.0",
"typescript": "^5.2.2"
},
"workspaces": [
"packages/*"
]
}