-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.61 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
40
41
42
43
44
45
46
47
{
"name": "@waves/node-api-grpc",
"version": "0.0.4",
"description": "A client for Waves Node gRPC and Blockchain Updates",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clear && npm run genPlgt",
"clear": "rm -rf dist && rm -rf types",
"genPlgt": "npm run protoLoaderGenTypes && npm run mkIndex && tsc",
"protoLoaderGenTypes": "shopt -s globstar && npx proto-loader-gen-types -v --keepCase=false --longs=Long --enums=String --defaults --oneofs --grpcLib=@grpc/grpc-js -I=. -I=node_modules/@waves/protobuf-serialization -I=node_modules/@waves/protobuf-serialization/proto --outDir=types node_modules/@waves/protobuf-serialization/proto/waves/**/*.proto",
"mkIndex": "ts-node ./src/gen.ts",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'"
},
"files": [
"dist"
],
"dependencies": {
"@grpc/grpc-js": "^1.12.2",
"@grpc/proto-loader": "^0.7.13",
"long": "^5.2.3",
"@waves/protobuf-serialization": "^1.5.2"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"bs58": "^6.0.0",
"mocha": "^10.8.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"keywords": [
"waves",
"grpc",
"client"
],
"author": "Vyacheslav Suharnikov",
"license": "MIT",
"homepage": "https://github.com/wavesplatform/node-api-grpc-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wavesplatform/node-api-grpc-js.git"
},
"bugs": {
"url": "https://github.com/wavesplatform/node-api-grpc-js/issues"
}
}