-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
30 lines (30 loc) · 1.12 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
{
"name": "@waves/protobuf-serialization",
"version": "1.4.3",
"description": "Generated types and methods for encoding and decoding protobuf messages as well as working with gRPC services.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && mkdir dist && npm run compileProtoc && npm run createTypeDeclarations && npm run compileProtoc -- --no-comments",
"createTypeDeclarations": "pbts -o dist/index.d.ts --no-comments dist/index.js",
"compileProtoc": "pbjs -t static-module --force-long --no-create --no-verify --no-convert --no-delimited --no-beautify -w commonjs -o dist/index.js \"proto/waves/**/*.proto\""
},
"files": [
"dist",
"proto"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wavesplatform/protobuf-schemas.git"
},
"author": "Dmitry Shuranov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wavesplatform/protobuf-schemas/issues"
},
"homepage": "https://github.com/wavesplatform/protobuf-schemas#readme",
"dependencies": {
"@types/long": "^4.0.0",
"protobufjs": "^6.8.8"
}
}